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 ...
0
votes
1answer
50 views

Run background jobs with elastic beanstalk

I am trying to start a background job in elastic beanstalk, the background job has an infinite loop so it never returns a response and so I receive this error:" Some instances have not responded to ...
0
votes
1answer
52 views

Python ConfigParser module fails to find section

I'm using Python 2.6 to write in an .ini file, called config.ini. Here's my code: def saveConfig(self, selection, value, bool): Config = ConfigParser.RawConfigParser() ...
1
vote
1answer
60 views

Getting config variables outside of the application context

I've extracted several of my sqlalchemy models to a separate and installable package (../lib/site-packages), to use across several applications. So I only need to: from models_package import MyModel ...
2
votes
3answers
123 views

using python logging in multiple modules

I have a small python project that has the following structure - Project -- pkg01 -- test01.py -- pkg02 -- test02.py -- logging.conf I plan to use the default logging module to print ...
0
votes
1answer
34 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
48 views

Configuring python project [closed]

I have a python project (some setup files are 'bash' scripts though). I need to add an ability to configure the project when deploying. What could be the smart way to do this? (Edit: bash scripts are ...
1
vote
1answer
41 views

Difficulty updating a label inside a button callback

I'm new to both Tkinter and Python 3.3 and trying to develop a simple GUI. I have a label "statusLabel". When I click on the button, I want to update the value in the label in the button's callback, ...
0
votes
2answers
74 views

Pyramid: How to specify the base URL for the application

Let's say my app is served at the domain www.example.com. How (where?) should I specify this in the Pyramid configuration file so that functions like request.route_url would automatically pick it and ...
1
vote
0answers
65 views

Why store config files in version control [closed]

Note: I am asking this question in the context of a Pyramid application, but it's a general issue. You have mainly two config files for your Pyramid app: development.ini production.ini These files ...
3
votes
3answers
188 views

Python logging multiple files using the same logger

This is my scenario: I want to log my_module's activity. This needs to be done, depending on the method executed (let's say, INPUT and OUTPUT), to two different files. So I have two Handlers, each ...
2
votes
4answers
93 views

Python: How to ignore # so that the line is not a comment?

I'm having trouble using a config file, because the option starts with #, thus python treats it as a comment (like it should). The part of the config file that is not working: [channels] #channel ...
0
votes
1answer
44 views

A library/language to deal with configuration and parameters? [closed]

Do you know any library that can deal with parameters and configuration files in a user friendly way (GUI)? I've taken a look at ConfigParser from python. And the ROS guys did a cool job with the ...
0
votes
2answers
72 views

Using a for loop to set attributes of a list of objects in Python

I've written a Python program and I need to toggle a group of tkinter widgets from enabled to disabled and back again. I could do it like this... deadparrotlabel.config(state=DISABLED) ...
1
vote
2answers
144 views

reading boolean condition from config file in Python

What's the best way to read a condition from a config file in Python using ConfigParser and json? I want to read something like: [mysettings] x >= 10 y < 5 and then apply it to code where x ...
0
votes
1answer
119 views

Configuring celery with a .conf file

Good day. I set up a separate project from the main one called myproject-celery. It is a buildout based project which contains the async part of my project. For convenience I want to have a file, ...
1
vote
3answers
61 views

In ConfigParser, why lines start with `REM ` will be ignored?

The codes are like this: if line.split(None, 1)[0].lower() == 'rem' and line[0] in "rR": # no leading whitespace continue I think this means if I write a config like ...
0
votes
1answer
468 views

Python logging: logging config file with changing save location

Let's say I have the following config log file: [loggers] keys=root,seeker,event [handlers] keys=consoleHandler,seekerFileHandler,eventFileHandler [formatters] keys=consoleFormatter,logFormatter ...
2
votes
6answers
186 views

Print multiple lines from text file

If i have a text file like this: FastEthernet3/1 ip address 0.0.0.0 enable portfast FastEthernet3/2 ip address 0.0.0.0 enable portfast FastEthernet3/3 ip address 0.0.0.0 FastEthernet3/4 ip address ...
0
votes
1answer
65 views

Edit sh config from python

I have a shell script that used simple config file: KEEP="2week" DOFILES=1 FORCEFULLBACKUPDAYS="" DOMYSQL=1 ... I need to edit this config with Python. I don't want to develop my own script for ...
0
votes
1answer
56 views

How to refer to a value from a different section in python config file? [duplicate]

Possible Duplicate: How to use variables already defined in ConfigParser For example, I have the following config file: [Sec1] opt1 = 1 [Sec2] opt2 = 1 I want to set opt2 equal to opt1 ...
0
votes
2answers
90 views

Python module variable interdependency

I am trying to create a module to hold configurations for a Fabric file. This configuration file will hold project dependent settings, so I can use the same fabfile for all our projects. I want the ...
1
vote
1answer
101 views

Python Logging: Specifying converter attribute of a log formatter in config file

I'd like to have all timestamps in my log file to be UTC timestamp. When specified through code, this is done as follows: import logging import time myHandler = logging.FileHandler('mylogfile.log', ...
1
vote
0answers
117 views

Python config files with arguments

I am using a python config file. (Specifically it is a logging dictionary file in YAML format). It defines a value as handlers: fileHandler: class: logging.FileHandler filename: ...
2
votes
1answer
114 views

Define a list of object values in ConfigParser

What would be the best way to define a config file and parse it using ConfigParser defining a bunch of objects initial values (aka: constructor values) Example: [Person-Objects] Name: X Age: 12 ...
0
votes
0answers
86 views

Saving wxListCtrl data to file

i was wondering how to save the data from a wxlistctrl in my addressbook program into a text file or config file so that when the program starts someone could load their data. this is what i have so ...
0
votes
1answer
57 views

NLTK and config file

So I'm fairly new to python and configobj and NLTK. Now my requirement is that I need to create a config file which would have all the rules of NLTK. In the sense for a sentence of the type 'The ...
0
votes
2answers
421 views

reading config from file

I try to read a config file and assign the values to variables: #!/usr/bin/env python # -*- coding: utf-8 -*- with open('bot.conf', 'r') as bot_conf: config_bot = bot_conf.readlines() ...
0
votes
1answer
455 views

how to clean up this jinja2 and/or boolean expression

{% block content %} {% for blog_dict in blogs|sort(reverse=True,attribute='date') if ((not file_name_filter) or blog_dict.filename==file_name_filter) and ((not category_filter) or ...
0
votes
3answers
239 views

Getting all hard-coded paths out of the code, how to handle the config file?

I'm trying to get all my hard coded paths out of one of my projects and into a config.ini file. The only thing left is the config file itself. Since I have to read it in: >>> config = ...
1
vote
1answer
43 views

Getting multiple errors from this program?

This is my python program ! I hope you can understand . . . import sqlite3 as sqlite import ConfigParser config = ConfigParser.RawConfigParser() config.read('listofcompdb.ini') con = ...
0
votes
1answer
65 views

How to keep track of changing input & output columns in Python/Sqlite?

How to keep track of changing input & output columns in Python/Sqlite ? I have a Sqlite DB named listofcomp.sqlite with tables originallist transforms I have created transforms table with ...
0
votes
2answers
298 views

Use an External file to replace special characters?

My question may be confusing but, please do excuse me i'm new to SO, I have a set of names of countries like below in a sqlite table ! ! Namesofcountries "America$" "Brazil--" "'Czech''''" ;Dubai ...
0
votes
0answers
232 views

How do I use Nginx to proxy multiple python web applications?

So currently I have a web based python application I am writing. I also need to access other web applications within my application. I have one app running at localhost:53317 and one at ...
0
votes
1answer
324 views

Python logging to different destination using a configuration file

I want to use a configuration file to create two loggers which will log in two distinct files. My configuration file looks like: [loggers] keys=root,main,zipper [handlers] keys=main,zip ...
1
vote
1answer
2k views

Python 2.4.3: ConfigParser.NoSectionError: No section: 'formatters'

Trying to use a logging configuration file to implement TimedRotatinigFileHandler. Just won't take the config file for some reason. Any suggestions appreciated. x.py: import logging import ...
2
votes
6answers
476 views

NLTK fails to find the Java executable

I am using NLTK's nltk.tag.stanford, which needs to call the java executable. I set JAVAHOME to C:\Program Files\Java\jdk1.6.0_25 where my jdk is installed, but when run the program I get the error ...
1
vote
1answer
156 views

Test Apache config file from Python

How would I go about testing the apache config file from python? I've trying using the "os.popen" with "text = stdout_handle.read() to get the result, but nothing happens. Any help would be great :) ...
1
vote
1answer
74 views

how to manage pylons/paster config file in a cluster?

I have 4 nodes running paster app, once I change the config, I need to change config files on the 4 nodes. It will be a headache if the nodes number growing. I believe it should be a common problem ...
2
votes
2answers
681 views

parsing XML configuration file using Etree in python

Please help me parse a configuration file of the below prototype using lxml etree. I tried with for event, element with tostring. Unfortunately I don't need the text, but the XML between ...
6
votes
3answers
1k views

Python config parser that supports section inheritance?

I'm looking for an ini style config parser in Python that supports section inheritance similar to what Zend_Config_Ini does in PHP. Does such a module exist or will I need to roll my own?
1
vote
2answers
2k views

Most Pythonic way to provide global configuration variables in config.py?

In my endless quest in over-complicating simple stuff, I am researching the most 'Pythonic' way to provide global configuration variables inside the typical 'config.py' found in Python egg packages. ...
9
votes
2answers
888 views

Python logging: Why is __init__ called twice?

I am trying to use python logging with a config file and an own handler. This works to some degree. What really puzzle me is __init__ being called twice and __del__ being called once. When I remove ...
0
votes
2answers
1k views

Python Config Parser (Duplicate Key Support)

So I recently started writing a config parser for a Python project I'm working on. I initially avoided configparser and configobj, because I wanted to support a config file like so: key=value ...
0
votes
3answers
185 views

file reading in python

So my whole problem is that I have two files one with following format(for Python 2.6): #comments config = { #comments 'name': 'hello', 'see?': 'world':'ABC',CLASS=3 } This file has ...
1
vote
4answers
223 views

file reading in python

I need to read the file like below: config = { 'name': 'hello', 'see?': 'world' } using keys like name and see? ,but I don't want to hard code the values in script.And how to deal with more ...
0
votes
2answers
394 views

python parse configuration file, containing list of filenames

I would like to parse a config file, containing list of filenames, divided in sections: [section1] path11/file11 path12/file12 ... [section2] path21/file21 .. I tried ConfigParser, but it requires ...
2
votes
1answer
1k views

Managing loggers with Python logging

I'm writing a server app which should be able to log at different levels both on the console and a log file. The problem is, if logging.basicConfig() is set it will log to the console but it must be ...
4
votes
1answer
531 views

How do you define config variables / constants in Google App Engine (Python)?

I am brand new to python/GAE and am wondering how to quickly define and use global settings variables, so say you git clone my GAE app and you just open config.yaml, add change the settings, and the ...
0
votes
1answer
348 views

Rename config.ini section using ConfigParser in python

Is there an easy way to rename a section in a config file using ConfigParser in python? I'd prefer not to have to delete the section and recreate it, but that is my only answer right now.

1 2