ConfigParser is a module for reading and writing configuration files that have a structure similar to those of INI files in Microsoft Windows.
0
votes
1answer
30 views
String to syntax Python
I use configparser to get values for my python script, but I need to call function stored in config.ini... Since all values in configparser are stored as strings, is it possible to transform string ...
1
vote
1answer
25 views
Python: ConfigParser.NoSectionError: No section: 'TestInformation'
I am getting ConfigParser.NoSectionError: No section: 'TestInformation' error using the above code.
def LoadTestInformation(self):
config = ConfigParser.ConfigParser()
...
0
votes
0answers
23 views
How to change ConfigParser.RawConfigParser module behaviour
I want to change default output of ConfigParser.RawConfigParser.items(section) and also set ConfigParser.RawConfigParser.optionxform = str in ConfigParser module, so I created my own module ...
0
votes
1answer
46 views
Python - ConfigParser - AttributeError: ConfigParser instance has no attribute '__getitem__'
I am creating a quote of the day server. I am reading options from an INI file, whose text is below:
[Server]
host =
port = 17
[Quotes]
file=quotes.txt
However, when I use ConfigParser, it gives ...
0
votes
1answer
24 views
ConfigParser getting value from hierarchical sections
I have a following type of INI file
[section1][subsection1]
port=989
[section1][subsection2]
somethign=somethign
I am using ConfigParser of Python to parse the INI file but I am not able to figure ...
2
votes
1answer
38 views
Python Write Dictionary Contents to ConfigParser
I am trying to write (and later read into) the contents of a dictionary to ConfigParser, and I believe I am doing it correctly according to the docs , but cannot seem to get it to work. Can someone ...
0
votes
1answer
47 views
How to ConfigParse a file keeping multiple values for identical keys?
I need to be able to use the ConfigParser to read multiple values for the same key. Example config file:
[test]
foo = value1
foo = value2
xxx = yyy
With the 'standard' use of ConfigParser there ...
0
votes
0answers
11 views
Writing a Bigger-than with ConfigParser
This code is a fun gambling game I made for a class. It has you pick 5 numbers between 1 and 10 and if you get one correct, tells you that, and add $1 to your grand total. It stores the values in a ...
-1
votes
3answers
62 views
Iterable Floats?
I am trying to make a game where the player is deducted .5 from a value in a ini file every time he plays. However I keep getting an error and I am not sure what to do. This is my code. Dont worry ...
1
vote
1answer
21 views
Unsupported Operand Type with ConfigParser
I am trying to make a game where the player is deducted .5 from a value in a ini file every time he plays. However I keep getting an error and I am not sure what to do. This is my code. Dont worry ...
0
votes
1answer
78 views
KeyError while reading configuration from utf-8 .ini file using configparser
I'm trying to write a python program using PyCharm and Python 3.3.
What I want to do is that my program will copy files from one directory, to one folder or more (depending on the configuration file).
...
0
votes
1answer
33 views
Changing only one value in configparser Python 3
I have config.ini file that is edited by multiple Python scripts simultaneously and I am facing large issue here because when updating, some values get restored and it messes up everything...
I can't ...
2
votes
1answer
86 views
Asigning a know number of varables with config parser in a .ini file using a loop in Python 2.7
I have a .ini file which contains a unknown amount of variables, created by a python script through a IRC interface.
The format of the .ini file is as follows:
[varables]
0 = example
1 = example2
2 ...
-1
votes
2answers
63 views
1
vote
1answer
49 views
Assigning more than one value to the same key in configuration file
I am trying to create a configuration file and need to parse it with python using ConfigParser module
For example i had the below settings in a file config.sr
[basic]
...
0
votes
3answers
77 views
How to access the variables declared inside functions in python
I have the following code that reads the configuration file and stores the results in some variables as a list
import ConfigParser
def read_config_file():
config = ConfigParser.ConfigParser()
...
0
votes
3answers
124 views
What is the best way to get values from a config file? [closed]
I have 15 values that I want to get from a config file and store them in separate variables.
I am using
from ConfigParser import SafeConfigParser
parser = SafeConfigParser()
...
1
vote
0answers
55 views
specifying the same option multiple times with ConfigParser
I would like to read a configuration file with the python ConfigParser module:
[asection]
option_a = first_value
option_a = second_value
And I want to be able to get the list of values specified ...
1
vote
1answer
59 views
pygame.RESIZABLE giving KeyError
A little bit about the code; what I'm trying to do is turning a section into a Dict so I can easily manage it.
Of course, because ConfigParser returns everything as a string (most of the time anyway), ...
1
vote
2answers
201 views
How to remove spaces while writing in INI file- Python
I am using a file and i have one section named DIR in which it contain the paths.
EX:
[DIR]
DirTo=D:\Ashish\Jab Tak hai Jaan
DirBackup = D:\Parser\ERICSSON_CSCORE_STANDARD_VMS\Backup
ErrorDir = ...
0
votes
1answer
205 views
Handling duplicate keys with ConfigParser [duplicate]
Possible Duplicate:
Python Config Parser (Duplicate Key Support)
I'm trying to read an INI format project file in Python. The file contains duplicate keys (having unique values) within a ...
0
votes
1answer
401 views
Python 2.7 - Read and/or write options to ini file
i need some help with some (basic) python code:
from ConfigParser import SafeConfigParser
import os
inifile=os.path.basename(__file__)+".ini"
def GetOption(Section, Option, Default):
while True:
...
1
vote
1answer
94 views
Sourcing different config files
I need to read a certain path from three different possible places in two config files:
A global one, /etc/program.conf
A local one, ~/.config/program/config
The local one has a [DEFAULT] section ...
1
vote
1answer
77 views
Modify path of execution of a python script running as a windows service
I have a Python application that uses ConfigParser.ConfigParser() to access a configuration file. I have created a windows service of the Python application using py2exe. The problem that I have is ...
0
votes
1answer
159 views
Python ConfigParser, Interpolation in the DEFAULT section, possible?
I am using SafeConfigParser, my configuration file includes a [DEFAULT] section and I am using the below code to extract that part.
parser = SafeConfigParser(allow_no_value=True)
parser.optionxform = ...
0
votes
1answer
52 views
How can I get the values of every item in a section?
I have a configuration file with one section, and multiple items with different values. I want to put all the values (not the variables) into a list. For example:
example.ini
[main]
apple: green
...
1
vote
2answers
65 views
Can I use variables defined earlier in the configuration file? [closed]
I have a simple config file. Can I use path.tmp in config file ?
[path]
tmp = /tmp/
[file]
file = %{path.tmp}s/myfile
0
votes
1answer
111 views
Write comment in config files with python
I need to write some comment in a configuration file generated at runtime via ConfigParser library in Python.
I want to write a full descriptive comment like:
########################
# FOOBAR ...
1
vote
2answers
176 views
How to read config file from module and from main file?
I've a problem with loading and reading my config file. When I running the imptest.py file then Python read configfile.cfg and I get following output:
D:\tmp\test\dir1>python imptest.py
Section1
...
0
votes
2answers
105 views
Why does ConfigParser not write to disk immediately?
Given the following script:
import ConfigParser
from datetime import datetime
import time
def write_stuff():
section = "test"
item = "oh hey there"
conf_filename = "test.conf"
conf ...
2
votes
2answers
147 views
How can I remove the white characters from configuration file?
I would like to modify the samba configuration file using python.
This is my code
from ConfigParser import SafeConfigParser
parser = SafeConfigParser()
parser.read( '/etc/samba/smb.conf' )
for ...
0
votes
2answers
130 views
Booleans in ConfigParser always return True
This is my example script:
import ConfigParser
config = ConfigParser.ConfigParser()
config.read('conf.ini')
print bool(config.get('main', 'some_boolean'))
print bool(config.get('main', ...
0
votes
0answers
99 views
python reading ini without key value pairs
i am trying to read a config file which is like one showed below
[somesection]
value1
value2
value3
value4
[somesection2]
valuea
valueb
valuec
[somesection3]
somevalues
please let me know how can i ...
0
votes
3answers
117 views
Creating a class with all the elements specified in a file using ConfigParser
I have created a .ini-like file with all the values which I need later in my program, see below:
[debugging]
checkForAbort = 10
...
[official]
checkForAbort = 30
...
I would like to read all these ...
0
votes
1answer
94 views
Extending the configparser class and using a config parser in new class
So I am trying to create a class that will have already read in the file and have all functions of configparser plus a few more.
Code looks like this:
import configparser
class ...
0
votes
0answers
34 views
Change the way configparser value structure in python 3
I'm trying to read a config file. However, the value are stored slightly different from the norm:
[USERS]
Bob height=5, age=50, job=engineer
Dan height=6, age=38, job=coach
I want to be able to ...
0
votes
1answer
240 views
Delete Sections and Keys from INI file Using Python Module iniparse?
I'm using the Python module iniparse to save keys to an INI file, but I was wondering if there is a way to delete keys and sections from the INI file using iniparse. I know it's possible using ...
0
votes
0answers
167 views
Python 2.7: “unresolved import: ConfigParser”
I recently wrote a Python 2.7 script (using PyDev on Eclipse) that took advantage of the built-in ConfigParser module, and the script works perfectly. But when I exported it and sent it to a ...
3
votes
1answer
409 views
Modify INI file with Python
I have an INI file I need to modify using Python. I was looking into the ConfigParser module but am still having trouble. My code goes like this:
config= ConfigParser.RawConfigParser()
...
1
vote
0answers
123 views
Python ConfigParser elements into CSV arguments
I have a script that parses a csv file and produces an XML file. One of the arguments I have to give the parser is the delimiter, which in my case is not a comma but a tab.
This information is ...
3
votes
1answer
440 views
Python ConfigParser: Checking for option existence
I'm using Python's ConfigParser to create a configuration file. I want to check if a section has a particular option defined and, if it does, get the value. If the option isn't defined, I just want to ...
0
votes
0answers
303 views
Why does Groovy think I'm passing an instance of the class from a static method?
I'm new to Groovy, so it's likely I am doing something wrong. I had written a configuration to be taken in by ConfigSlurper. But something goes wrong when I actually try to parse it. My code is as ...
0
votes
1answer
85 views
python configparser hangs silently
I have a feeling I'm being stupid. Given this ini file:
[main]
source1 = ./testing/sdir1
sync1 = ./testing/sydir1
archive1 = ./testing/adir1
source2 = ./testing/sdir2
sync2 = ./testing/sydir2
...
2
votes
3answers
842 views
Python extending with - using super() python 3 vs python 2
Originally I wanted to ask this question, but then I found it was already thought of before ...
Googling around I found this example of extending configparser. The following works with python 3:
$ ...
0
votes
1answer
123 views
Regex with “r” read from file doesn't work correctly
I might have pretty basic question about regex. I have the following regex, which when hardcoded int the application work fine, but then I read it with ConfigParser doesn't seem to work:
...
3
votes
2answers
510 views
Parsing configure file with same section name in python
I try to parse file like:
[account]
User = first
[account]
User = second
I use ConfigParser in Python, but when i read file:
Config = configparser.ConfigParser()
Config.read(file)
print ...
1
vote
1answer
206 views
How to load a configuration file in Python and be able to access values using dot notation (attributes)?
I am looking for a solution that would allow me be use attributes for a config file data.
I would like to be able to do something like this:
config = Config('config.ini')
print config.section1.user
...
0
votes
1answer
299 views
Is there a version of ConfigParser that deals with files with no section headers?
I have a config file which is mainly used in shell scripts, and therefore has the following format:
# Database parameters (MySQL only for now)
DBHOST=localhost
DATABASE=stuff
DBUSER=mypkguser
...
0
votes
2answers
386 views
Inline comments for ConfigParser
I have stuff like this in an .ini file
[General]
verbosity = 3 ; inline comment
[Valid Area Codes]
; Input records will be checked to make sure they begin with one of the area
; codes listed ...
5
votes
1answer
398 views
Python configparser will not accept keys without values
So I'm writing a script that reads from a config file, and I want to use it exactly how configparser is designed to be used as outlined here: ...
