Tagged Questions
The configparser tag has no wiki summary.
7
votes
2answers
528 views
What's better, ConfigObj or ConfigParser?
Which is better for creating a settings file for Python programs, the built-in module (ConfigParser), or the independent project (ConfigObj)?
5
votes
3answers
123 views
Where to put a configuration file in Python?
In development mode, I have the following directory tree :
| my_project/
| setup.py
| my_project/
| __init__.py
| main.py
| conf/
| myproject.conf
I use ConfigParser to parse ...
5
votes
2answers
838 views
ConfigObj/ConfigParser vs. using YAML for Python settings file
Which is better for creating a settings file for Python programs, the built-in module (ConfigParser) or the independent project (ConfigObj), or using the YAML data serialization format? I have heard ...
5
votes
2answers
1k views
ConfigParser with Unicode items
my troubles with ConfigParser continue. It seems it doesn't support Unicode very well. The config file is indeed saved as UTF-8, but when ConfigParser reads it it seems to be encoded into something ...
4
votes
2answers
330 views
Python ConfigParser question about writing comments to files
This is my first time writing for help... so, here it goes: I am in need of some help with ConfigParser. The question is: how can one write comments to a given file within sections?
If I have:
...
4
votes
1answer
84 views
Where is a good place/way to store Windows config files for Python scripts?
I have a script/program I am working on that requires a configuration file (I am using ConfigParser). On linux, I will default to store these variables in ~/.myscript using the os.getenv('HOME') ...
4
votes
1answer
576 views
Preserve case in ConfigParser?
I've tried to use python's ConfigParser module to save settings. For my app it's important that I preserve the case of each name in my sections. The docs mention that passing str() to ...
4
votes
4answers
569 views
Keep ConfigParser output files sorted
I've noticed with my source control that the content of the output files generated with ConfigParser is never in the same order. Sometimes sections will change place or options inside sections even ...
3
votes
3answers
99 views
How to convert a string to tuple
I like to convert in a Python script the following string:
mystring='(5,650),(235,650),(465,650),(695,650)'
to a list of tuples
mytuple=[(5,650),(235,650),(465,650),(695,650)]
such that
print ...
3
votes
3answers
185 views
How to evaluate simple math expressions in config files
I would like to use a configuration file with some simple math expressions like adding or substracting.
For example:
[section]
a = 10
b = 15
c = a-5
d = b+c
Is there any way to do this using a ...
3
votes
3answers
261 views
Pythonic reading from config files
I have a python class which reads a config file using ConfigParser:
Config file:
[geography]
Xmin=6.6
Xmax=18.6
Ymin=36.6
YMax=47.1
Python code:
class Slicer:
def __init__(self, ...
3
votes
3answers
1k views
Export with alphabetical sort in Python ConfigParser
Is there any solution to force the RawConfigParser.write() method to export the config file with an alphabetical sort?
Even if the original/loaded config file is sorted, the module mixes the section ...
3
votes
3answers
600 views
Closing file opened by ConfigParser
I have the following:
config = ConfigParser()
config.read('connections.cfg')
sections = config.sections()
How can I close the file opened with config.read?
In my case, as new sections/data are ...
2
votes
4answers
72 views
ConfigParser vs. import config
ConfigParser is the much debated vanilla configuration parser for Python.
However you can simply import config where config.py has python code which sets configuration parameters.
What are the ...
2
votes
1answer
100 views
Placement of config file reading
I'm developing a CLI python program and I'm using ConfigParser. I know this is probably more to preference than anything else, but currently my configuration reading script is in config.py in a ...
2
votes
1answer
115 views
python config parser cache to reduce I/O on an embedded system
In my project we use a config file that's parsed with the configparser module. Is there any way to cache the entire config file, and then use configparser methods to read it from memory? I'm hoping to ...
2
votes
1answer
230 views
Can logging and CherryPy share the same config file?
Both the Python logging module and CherryPy's Config API use ConfigParser files. Therefore, I assumed that I could use one single config file for my own applications configuration, it's logging ...
2
votes
4answers
1k views
python configparser
How can I parse tags with no value on ini file with python configparser module?
For example, I have the below ini and I need to parse rb. On some ini the rb have integer value and on some hasn't at ...
2
votes
1answer
303 views
Python, ConfigParser: What is 'magical interpolation'
The documentation for ConfigParser in Python talks a lot about the so-called "magical interpolation" feature, but never explains what it actually does. I've tried searching for it, but haven't found ...
2
votes
6answers
870 views
Is something like ConfigParser appropriate for saving state (key, value) between runs?
I want to save a set of key, value pairs (string, int) between runs of a Python program, reload them on subsequent runs and write the changes to be available on the next run.
I don't think of this ...
1
vote
1answer
44 views
Python ConfigParser - usage across modules
I'm trying to understand the best way to implement Python's ConfigParser so that elements are accessible to multiple program modules. I'm using:-
import ConfigParser
import os.path
config = ...
1
vote
1answer
41 views
Python - Script execution, locationing errors
Using the ConfigParser module I am attempting to read in a configuration file so I can safely allow users to edit settings for an application and share these configurations between scripts.
This has ...
1
vote
2answers
82 views
Adding comment with configparser
I can use the ConfigParser module in python to create ini-files using the methods add_section and set (see sample in http://docs.python.org/library/configparser.html). But I don't see anything about ...
1
vote
1answer
41 views
python configparser writing to defaults section
i'm using the configparser module in python to read and write some .ini style files. i want to be able to create and write to the DEFAULTS section, however, it appears to be hardcoded to not allow the ...
1
vote
1answer
76 views
Python ConfigParser wrapper
I have a config file and i want to load the options dynamicaly by entering the section and the options name.
For instance this is the config file contents.
[templates]
path = /full/path/to/template
...
1
vote
1answer
168 views
configparser reading and writing
I'm using Python 3.2 and the configparser module, and running into some problems. I need to read, then write to a config file. I tried the following:
import configparser
data = open('data.txt', 'r+')
...
1
vote
1answer
122 views
Converting ConfigParser values to python data types
ConfigParser requires all sections, keys and values to be strings; no surprise. It has methods to convert the values to datatypes with getfloat, getint, getboolean. If you don't know the datatype, ...
1
vote
1answer
98 views
Unknown quantity of items in configuration files using ConfigParser
To be honest I'm writing this question to try to clear up my mind in the process. If I can't figure it out, I'll post it (which happened). I would appreciate if someone could shed some light on how to ...
1
vote
1answer
225 views
Update field with ConfigParser -Python-
I thought that the set method of ConfigParser module updates the field given, but, it seems that the change remains only in memory and doesn't get into the config file. Is it a normal behaviour?
I ...
1
vote
0answers
286 views
Function statement of CfgParserbreaking python script netbeans sikuli
For a reason I don't understand the following line causes my sikuli/python script to break. I suspect this is because my code to read a config file is buggy. I fail to see why, what am I misssing.
...
1
vote
1answer
117 views
Should user data be stored in a config file?
I'm developing a CLI for a web todolist service. I'm done with the backend and have just started to write the CLI functions. Before I start, I tought what the best way was to store user data. I'm ...
1
vote
2answers
190 views
How do I put a semicolon in a value in python configparser?
I need to specify a password on the right side of the equals sign in a python configparser file, but semicolon is the comment character.
Escaping with \ does not work.
How can I pass the string ...
1
vote
1answer
99 views
Issue Replacing Already Existing Strings with ConfigParser
I am using ConfigParser to save simple settings to a .ini file, and one of these settings is a directory. Whenever I replace a directory string such as D:/Documents/Data, with a shorter directory ...
1
vote
1answer
1k views
Edit ini file option values with ConfigParser (Python)
Anyone know how'd I'd go about editing ini file values preferably using ConfigParser? (Or even a place to start from would be great!) I've got lots of comments throughout my config file so I'd like to ...
1
vote
1answer
108 views
Reading colors from a config file with ConfigParser and have it work with Pygame
In the config file I have the varible defined as
BackgroundColor = 0,0,0
Which should work for the screen.fill settings for Pygame or any color argument for that matter. Where I can just do ...
1
vote
1answer
276 views
Updating section in ConfigParser (or an alternative)
I am making a plugin for another program and so I am trying to make thing as lightweight as possible.
What i need to do is be able to update the name of a section in the ConfigParser's config file.
...
1
vote
3answers
197 views
Processing (possibly) optional arguments in Python
I am working on a series of command line tools which connect to the same server and do related but different things. I'd like users to be able to have a single configuration file where they can place ...
1
vote
3answers
444 views
Problem configparser in python
Actually I am stuck in my work. I want to import a txt file into my python program which should have two lists of intergers.
The following program is working fine but I need to import the list 'a' ...
1
vote
4answers
2k views
Python - ConfigParser throwing comments
Based on ConfigParser module how can I filter out and throw every comments from an ini file?
import ConfigParser
config = ConfigParser.ConfigParser()
config.read("sample.cfg")
for section in ...
0
votes
1answer
29 views
How to tell Configparser to open the config file, that has the same name, as the module, opening it?
I'm writing a testing framework using Python's unittest. I have separate modules for separate parts of the tested application (part1 - part1.py, part2 - part2.py etc.). I want to create a helper ...
0
votes
2answers
51 views
Parsing a hierarchical config file structure with Python
I'm using ConfigParser for a project with a configuration file that is getting to large. I plan to split it but maintain a central config file that points to the others.
I haven't seen this in the ...
0
votes
2answers
42 views
Python 2.x - ConfigParser stripping blank lines in multiline value
The following is the file parsed by ConfigParser:
[Ticket]
description = This is a multiline string.
1
2
4
5
7
As described by the official Python wiki for ConfigParser examples, here is ...
0
votes
3answers
163 views
Reading a fortigate configuration file with Python
Appologies for the really long drawn out question.
I am trying to read in a config file and get a list of rules out.
I have tried to use ConfigParser to do this but it is not a standard config file.
...
0
votes
0answers
63 views
Can you add line of comment using ConfigParser? [closed]
Possible Duplicate:
Python ConfigParser question about writing comments to files
Maybe it is a newbie question. I am using ConfigParser to manipulate an config file, and I want to add a ...
0
votes
3answers
121 views
Getting a list from a config file with ConfigParser in Python
I have something like this in my config file (a config option that contains a list of strings):
[filters]
filtersToCheck = ['foo', '192.168.1.2', 'barbaz']
is there a more elegant (built-in) way to ...
0
votes
2answers
188 views
Python ini parser
Is there a parser which reads and stores the types of data to write?
File format must to produce a readable.
Shelve does not offer.
0
votes
2answers
144 views
I'm getting an invalid syntax error in configparser.py
I'm trying to get the pymysql module working with python3 on a Macintosh. Note that I am a beginning python user who decided to switch from ruby and am trying to build a simple (sigh) database project ...
0
votes
2answers
222 views
How to use variables already defined in ConfigParser
I'm using ConfigParser in Python
config.ini is
[general]
name: my_name
base_dir: /home/myhome/exp
exe_dir: ${base_dir}/bin
Here I want 'exp_dir' becomes '/home/myhome/exp/bin' not ...
0
votes
2answers
142 views
Any downside to overriding ConfigParser get() method to include an eval?
I'm creating a subclass of ConfigParser that is easier for me to use throughout my project:
class MyConfiguration(ConfigParser.ConfigParser):
def __init__(self, filename):
...
0
votes
1answer
160 views
Using ruby's treetop peg to parse a debian Packages.gz
I'm trying to break open a Packages.gz using Ruby's treetop and I've having trouble making keywords and values unambiguous. Here's my treetop grammar:
grammar Debian
rule collection
entry+
...