Tagged Questions
0
votes
0answers
14 views
constant value replacing in job.properties
I am new to python. I am working on reading job.properties file in python. The properties file should be in xml format to submit a job. The properties file looks like this:
var1_path=<Var1_path ...
0
votes
0answers
18 views
PyYAML Basic config file writeback
I'm fairly new to Python, and I'm looking to do some basic things with PyYAML. What I want to do is take a YAML file:
#Lets test out the logfile config
---
filepath: ...
0
votes
0answers
28 views
Set up python with nginx
I'm porting my web application from PHP to Python and I've decided for nginx as webserver. Now I'm trying to configure nginx to run Python (version 3) scripts with no framework.
Is it possible to ...
2
votes
1answer
29 views
Variables viewer on Eclipse debugging evaluates Python property automatically
When I new some instance, its __ init __ will do, e.g.
self._regex = value
self._regex_dict = {}
In the Eclipse/PyDev debugger's variables view,self._regex_dict is not equal to empty but has one ...
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
...
0
votes
0answers
18 views
eclipse interpreter configuration for python
I am trying to set up my interpreter to call another program with the python command for example:
If I go to command line and try to run a python script with my current configuration I need to call
...
1
vote
3answers
54 views
Convert dict into a config file then restore the dict from config
For example, I have a dictionary in Python like this:
{"a_summary" :
{"data1":{"length":100, "quality":10},
"data2":{"length":90, "quality":9}},
"b_summary" :
{"data1":{"comments":19, ...
0
votes
1answer
50 views
Python on Aptana Studio with Numpy?
I need help setting up aptana studio with python numpy.
I already have python configured with the studio. I downloaded the numpy package from http://www.numpy.org/ .
How do I configure my IDE with ...
0
votes
1answer
110 views
Django Application deployment on linux server
I am trying to deploy django application on Linux server with mod_wsgi.
Below are my setting for apache in httpd.conf file -
<VirtualHost 127.0.0.1:8080>
AddDefaultCharset utf-8
LogLevel warn
...
0
votes
1answer
81 views
Parsing text file content into Python objects and writing back the objects into parse-able text file
I need to parse a config file file, in order to be able add/delete/modify the software configuration, that's defined by multiple blocks of text of format like that:
portsbuild {
path = ...
-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
0answers
56 views
Error when configuring Python interpreter for PyDev in Eclipse
I just recently installed the PyDev 2.6 plugin for Eclipse (I run Eclipse SDK 4.2.1) and when I try to configure the Python interpreter to the path: > C:\Python27\python.exe , it gives me an "Error ...
1
vote
1answer
88 views
Is there any support for a Python program to be able to write a human-readable configuration file from which it can restore its state later?
Update:
Based on the responses as of 3/16/2013 (or lack thereof), I get the impression that nothing anything like what I have in mind exists already. Thus I will build such a mechanism for myself ...
1
vote
2answers
62 views
Error when using django-admin.py
Please bear with me as I'm new to Python/Django/Unix in general. I'm learning how to use different settings.py files for local and production environments. The following is from the section on the ...
0
votes
0answers
221 views
Error configuring sublime text 2 with python 3.3
I basically copied and pasted this from google. I am on OSX Mountain Lion.
{
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": ...
2
votes
1answer
593 views
How to configure Python in XCode 4.6?
I really tried looking for a solution and couldn't find a simple method to do it.
How can I configure XCode 4.6 for Python 2.7 so that I can code and run the simulation through it ?
1
vote
1answer
76 views
Dynamically broadcast configuration changes in python twisted
I am about to refactor the code of a python project built on top of twisted. So far I have been using a simple settings.py module to store constants and dictionaries like:
#settings.py
...
0
votes
1answer
80 views
Configuration File Manager Class
I have to create code for a "Configuration Manager". The idea is to have a file with all connections strings, paths to another configuration files, data base hostnames, users and passwords, etc. and ...
2
votes
1answer
53 views
How to properly manage application configurations
What is the most universal and best application configurations management method? I want to have these properties in order to have "good configuration management":
A list of all available properties ...
0
votes
0answers
87 views
Using postgresql for Django under win7?
I am currently playing with django and want to use as my database postgresql:
and these are my configurations in my settings file:
DATABASES = {
'default': {
'ENGINE': ...
0
votes
0answers
130 views
IPython Pylab Configuration - imshow interpolation
I have been working with IPython for several months now and I think it is one of the best interactive shells I've used. I especially like the built in matplotlib support through pylab.
One issue I ...
1
vote
2answers
129 views
A configuration file that can be read by python and shell
I have python scripts and shell scripts in the same folder which both need configuration. I currently have a config.py for my python scripts but I was wondering if it is possible to have a single ...
0
votes
1answer
54 views
Is there a framework to generate config files and validation scripts
I need deploy a complex system to customers. There are many config files which contain around two hundreds parameters which customers should modify. Manually modifying the config files is tricky and ...
1
vote
1answer
42 views
What are the consequences the different file structures for installed Python packages?
The packages installed in my site-packages directory are organized in a variety of ways. Some have (1) the form
A directory named exactly like the package
An egg-info file (named after the package ...
0
votes
0answers
44 views
django mutiple sites virtualHost configuration Error
I have two sites and both were working fine in Embedded mode, I like to change them to Daemon mode configuration in Apache2
The problem is if I try to access site-2, it is showing site-1 only. why it ...
0
votes
1answer
122 views
How to change filehandle with Python logging onthefly with different classes and imports
I cannot perform a on-the-fly change at logging fileHandle.
For example, I have 3 classes
--- one.py ---
import logging
class One():
def __init__(self,txt="?"):
logging.debug("Hey, I'm the ...
1
vote
1answer
75 views
Multiple instances and multiple destinations
I have multiple Python modules, each of which has separate log config files. I am using Yaml, so I just do a
log_config_dict=yaml.load(open(config_file1, 'r'))
...
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 ...
1
vote
2answers
334 views
Python script to configure an XBee module fails on a raspberry pi
I have a python script that I want to use to configure some XBee modules. It works perfectly find when connect to a computer via an xbee development board, but fails when connect to a raspberry pi via ...
2
votes
1answer
77 views
Do any python tools exist for rolling over log/configuration files?
Here's what I'm trying to do:
modify a default configuration file on a local machine (Thing.conf).
save the previous config file on a virtual client to something like Thing.conf.1, and keep track of ...
0
votes
1answer
118 views
So, I have a problems with runnning Python scripts(modules) under Windows XP.. Yesterday I installed Python 3.3.0 verson for Windows
Problem is with runnning Python scripts(modules) under Windows XP.
Yesterday I installed Python 3.3.0 verson for Windows. The problem is that I CAN use command line and IDLE to calculate (it works ...
3
votes
1answer
143 views
How to setup a group in supervisord?
So I'm setting up supervisord and trying to control several processes and that all works fine, now I want to setup a group so I can start/stop different sets of processes rather than all or nothing. ...
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 ...
5
votes
1answer
1k views
supervisor.conf default location
Im trying to make automatic deployment including supervisord and confused by default settings path.
Every deployment scheme i found use /etc/supervisor/supervisor.conf and /etc/supervisor/conf.d/ ...
3
votes
4answers
117 views
“.directory” in home acceptable?
I'd like to save my script's data to disk to load next time the script runs. For simplicity, is it a good idea to use os.path.expanduser('~') and save a directory named ".myscript_data" there? It ...
0
votes
1answer
180 views
Wasting time trying to build python web apps [closed]
I learning Python to build a CMS/calendar/schedule app and I know a decent amount of SQL and HTML. As I'm learning, I'm running into new tools/frameworks (bottle, SQLAlchemy, WTForms) and I have to ...
0
votes
3answers
114 views
How do I make Django use a different database besides the 'default'?
I am relatively new to Django and one thing that has been on my mind is changing the database that will be used when running the project.
By default, the DATABASES 'default' is used to run my test ...
0
votes
1answer
65 views
How do I add Django-dev from pip to site-packages?
I installed Django with
C:\Python27\Lib\site-packages>pip install -e git+https://github.com/django/django.git#egg=django
Unfortunately some programs (such as PyDev), work "easier" when your ...
1
vote
2answers
163 views
How to save Python in-memory dictionary to a file as a Python source code?
How to get Python source code representation of in-memory Python dictionary?
I decided to ask this question after reading Thomas Kluyver's comment on Rob Galanakis' blog post titled Why bother with ...
1
vote
2answers
345 views
Prevent system-wide and virtualenv ipython from using the same directory for configuration
Recently, I started looking into virtualenv but ran into
problems with the configuration of ipython.
I created the virtual environment using
virtualenv --no-site-packages ENV
From within ENV (i.e. ...
4
votes
4answers
288 views
How to create an array or list in a default.conf file
I've inherited a python script that is pulling some variables from a default.conf file which I believe is a Machine configuration file.
One of the parts of the script is pulling a configuration key ...
3
votes
1answer
241 views
How to use a common ini configuration (between development and production) in pyramid?
I want to have a common configuration with settings that do not change across different environments (development and production). I know I could set up a global settings.py file (e.g., sql limits), ...
3
votes
1answer
2k views
python setup.py configuration to install files in custom directories
I want to create a setup.py which would install my files into custom directories. I have a certain prefix, where I would like to get the following result:
/my/prefix/
bin/
script.sh
libexec/
...
1
vote
1answer
135 views
Config File Process in Python and C++
There are a lot of questions and answers on how to parse/create config files in python and C++ individually. In my case, I have one single config file and need to be processed (read/write) by both ...
2
votes
3answers
232 views
Loading settings.py config file into a dict
Say I have a file called settings.py and it's content is the following:
{
"translate_tabs_to_spaces": True,
"word_wrap": "true",
"font_face": "Monaco",
"font_size": 14.0,
...
1
vote
1answer
84 views
Configuring Python Application based upon git branch
I've been thinking about ways to automatically setup configuration in my Python applications.
I usually use the following type of approach:
'''config.py'''
class Config(object):
MAGIC_NUMBER = ...
2
votes
2answers
228 views
Pysandbox configuration questions
I have two questions regarding Pysandbox:
1.) How do I achieve the functionality of eval? I understand sandbox.execute() is equivalent to exec, but I can't find anything such that if the code entered ...
2
votes
1answer
547 views
How to select Python version in PyCharm?
I have PyCharm 1.5.4 and have used the "Open Directory" option to open the contents of a folder in the IDE.
I have Python version 3.2 selected (it shows up under the "External Libraries" node).
How ...
1
vote
1answer
206 views
Python script that uses Zeromq stops receiving messages
I have a python script that uses zeromq with pyzmq connector. Script is really a basic one, it uses ZMQ_REP socket to receive a message, do something small with it and send it back, all that in an ...
3
votes
1answer
5k views
Eclipse, PyDev and Python configuration error
I decided to try to work with Eclipse and PyDev instead of IDLE.
I successfully "installed" Eclipse SDK 3.7.
After that, I followed the steps displayed on the PyDev website and successfully installed ...




