Tagged Questions

18
votes
3answers
7k views

How to get filename of the __main__ module in Python?

Suppose I have two modules: a.py: import b print __name__, __file__ b.py: print __name__, __file__ I run the "a.py" file. This prints: b C:\path\to\code\b.py __main__ ...
11
votes
3answers
3k views

How do I document a module in Python?

That's it. If you want to document a function or a class, you put a string just after the definition. For instance: def foo(): """This function does nothing.""" pass But what about a ...
8
votes
5answers
6k views

What do I need to read Microsoft Access databases using Python?

How can I access Microsoft Access databases in Python? With SQL? I'd prefere a solution that works with Linux, but I could also settle for Windows. I only require read access.
6
votes
2answers
119 views

What available Python modules are there to save-and-load data?

There are many scattered posts out on StackOverflow, regarding Python modules used to save and load data. I myself am familiar with json and pickle and I have heard of pytables too. There are ...
6
votes
2answers
334 views

python module layout

I'm just starting to get to the point in my python projects that I need to start using multiple packages and I'm a little confused on exactly how everything is supposed to work together. What exactly ...
6
votes
3answers
166 views

Importing everything ( * ) dynamically from a module

I have a Python module that I want to dynamically import given only a string of the module name. Normally I use importlib or __import__ and this works quite well given that I know which objects I want ...
6
votes
3answers
312 views

Prevent Python from caching the imported modules

While developing a largeish project (split in several files and folders) in Python with IPython, I run into the trouble of cached imported modules. The problem is that instructions import module only ...
5
votes
2answers
156 views

Mapping module imports in Python for easy refactoring

I have a bunch of Python modules I want to clean up, reorganize and refactor (there's some duplicate code, some unused code ...), and I'm wondering if there's a tool to make a map of which module uses ...
4
votes
4answers
65 views

How can I access the list of modules that Python's help('modules') displays?

How can I access the list of modules that Python's help('modules') displays? It shows the following: >>> help('modules') Please wait a moment while I gather a list of all available ...
4
votes
2answers
77 views

How can I build the Python Sybase module on Windows?

I'm trying to build the python-sybase module on Cygwin, but it doesn't seem to work. It seems to start compiling, then it starts throwing the following errors: $ python setup.py install running ...
4
votes
1answer
84 views

How do I avoid naming clashes within Python's module system?

In my Django project I have an app called profile, which mostly contains my profile.models.UserProfile class for additional information on User objects (may seem familiar to Django folks). Now I've ...
4
votes
4answers
74 views

Python imports across modules and global variables

I have a question which seems to be rather fundamental but I can't seem to find any help on this anywhere. file_a.py >> from xyz import XYZ class A: . . . file_b.py >> ...
4
votes
2answers
74 views

Is it possible to end a python module import with something like a return?

I would like to know if there is a way of writing the below module code without having to add another indentation level the whole module code. # module code if not condition: # rest of the module ...
4
votes
3answers
97 views

Python Modules: When one imports them, do they go into memory?

I just finished this exercise for beginners on creating and importing modules in python. I was wondering does everything in the module get imported into the computer's memory? Will there be ...
4
votes
5answers
1k views

Test for Python module dependencies being installed

How could one test whether a set of modules is installed, given the names of the modules. E.g. modules = set(["sys", "os", "jinja"]) for module in modules: # if test(module exists): # do ...
3
votes
1answer
54 views

python c api to create a python module

I'm writing a python module in C, and looking for a way to write a module inside of a module. PyMODINIT_FUNC initA(void) { PyObject* pMod, pSubMod; pMod = Py_InitModule3("A", A_Methods, A_Doc); ...
3
votes
3answers
158 views

How can you easily select between PyQt or PySide at runtime?

I would like to do something like this in one source file, QT.py: import sys import PyQt4 sys.modules["Qt"] = PyQt4 Then import this file in the other source files, and use it like this: import ...
3
votes
2answers
877 views

How to install Python module on Ubuntu

I just wrote a function on Python. Then, I wanted to make it module and install on my Ubuntu 11.04. Here is what I did. Created setup.py along with function.py file. Built distribution file using ...
3
votes
1answer
71 views

How to access a python module variable using a string [ django ]

I have a django application, with a module called "app" Now this module has a file called "urls.py" which has a variable called "HOME_URL" What I'm trying to do ? app_label = "app" url = ...
3
votes
2answers
227 views

How do I get ibm_db or PyDB2 python modules to work with DB2 in Mac OS X 10.7 Lion?

I used this question/answer to install DB2 in Lion: How do I install IBM DB2 Express-C on Mac OS X 10.7 Lion? After configuring my databases, I am able to use db2 from the command line to execute ...
3
votes
2answers
87 views

How do python submodules share a scarce resource between them?

I am breaking up a large monolothic python file into six separate submodules. Originally in onebigfile.py, I had conn = MySqldb.connect() c = conn.cursor() and then a function would use it as so: ...
3
votes
3answers
122 views

Abort execution of a module in Python

I'd like to stop evaluation of a module that is being imported, without stopping the whole program. Here's an example of what I want to achieve: main.py print('main1') import testmodule ...
3
votes
2answers
182 views

Installing modules for multiple python versions

I have installed python 2.6.6 and python 2.5.5 on the same machines (Ubuntu 10.0.4), since 2.6 is my default version and 2.5 I need for maintaining old stuff. But I have a problem to install ...
3
votes
1answer
159 views

python unix service library

I have a command-line python app that is a service - i.e. it waits for connections and does stuff when asked, like webserver. There's python-daemon library for dealing with all the issues of detaching ...
3
votes
6answers
5k views

How to properly use relative or absolute imports in Python modules?

Usage of relative imports in Python has one drawback, you will not be able to run the modules as standalones anymore because you will get an exception: ValueError: Attempted relative import in ...
3
votes
5answers
372 views

Python: 'Private' module in a package

I have a package mypack with modules mod_a and mod_b in it. I intend the the package itself and mod_a to be imported freely: import mypack import mypack.mod_a However, I'd like to keep mod_b for ...
3
votes
1answer
161 views

Is there a fini routine for a python module written in C?

I have a python module written in C, and I would like to add a function that is called when the module is unloaded. I obviously have an initfoo function to initialize the module -- is there a way to ...
2
votes
5answers
59 views

Why does importing a python module not import nested modules?

If I do this: import lxml in python, lxml.html is not imported. For instance, I cannot call the lxml.html.parse() function. Why is this so?
2
votes
2answers
44 views

Load newly installed modules in python script

I am writing a python script which automatically sets up a django web server environment. In the script, I am installing a new modules using for package in packages: os.system("%s %s" % ...
2
votes
1answer
38 views

Importing a python module into a dict (for use as globals in eval())?

I'm using the Python evalfile() function as a simple-but-flexible way of handling configuration files -- basically, the idea is: # Evaluate the 'filename' file into the dictionary 'foo'. foo = {} ...
2
votes
2answers
50 views

Loading native python libraries

Python 2.7 comes with json library included. In my PYTHONPATH I include third party sources and one of them is also called json. The result ending up with loaded the wrong json library. What would be ...
2
votes
3answers
123 views

How to split a Python module into multiple files?

I have a single Python module which contains 3 classes: A, A1 and A2. A1 and A2 derive from A. A contains functions which operate on A1 and A2. This all works fine when it's in one .py file. But that ...
2
votes
3answers
60 views

Weird stuff happening while importing modules

I hate to give the question this heading but I actually don't know whats happening so here it goes. I was doing another project in which I wanted to use logging module. The code is distributed among ...
2
votes
2answers
149 views

“ImportError: No module named” error doesn't seem to be related to my code

I am trying to complete Exercise 47 of Learn Python The Hard Way, 2nd Edition, but I am receiving this error when I run tests/ex47_tests.py: File "tests/ex47_tests.py", line 3, in <module> ...
2
votes
3answers
104 views

Automatically call common initialization code without creating __init__.py file

I have two directories in my project: project/ src/ scripts/ "src" contains my polished code, and "scripts" contains one-off Python scripts. I would like all the scripts to have "../src" ...
2
votes
2answers
123 views

os.path.exists not working properly on Python CLI

I've Python 2.5.x on my Windows 7 machine. os.path.exists('C:') # returns True os.path.exists('C:\Users') # returns True os.path.exists('C:\Users\alpha') # returns False, when ...
2
votes
3answers
78 views

Python: search global classes in a single module file

I have a Python 2.x module.py file that looks like this: class A(object): KEYWORD = 'Class A' class B(A): KEYWORD = 'Class B' class C(object): pass def list_class_keywords(): for ...
2
votes
1answer
100 views

What's the best practice for incorporating third-party libraries in a python program?

Good afternoon. I am writing a small to medium-sized python program for my job. The task requires me to use the Excel libraries xlwt and xlrd, as well as a library for querying Oracle databases, ...
2
votes
3answers
121 views

Python module getting too big

My module is all in one big file that is getting hard to maintain. What is the standard way of breaking things up? I have one module in a file my_module.py, which I import like this: import ...
2
votes
2answers
536 views

How to extend h5py so that I can access data within a hdf5 file?

I have a small python program which creates a hdf5 file using the h5py module. I want to write a python module to work on the data from the hdf5 file. How could I do that? More specifically, I can ...
2
votes
1answer
267 views

Obtaining module name: x.__module__ vs x.__class__.__module__

I want to obtain the module from which a Python object is from. Both x.__module__ and x.__class__.__module__ seem to work. Are these completely redundant? Is there any reason to prefer one over ...
2
votes
2answers
214 views

Is there a way to run a python script that is inside a zip file from bash?

I know there is a way to import modules which are in a zip file with python. I created kind of custom python package library in a zip file. I would like to put as well my "task" script in this ...
2
votes
3answers
176 views

Python: what modules have been imported in my process?

How can I get a list of the modules that have been imported into my process?
2
votes
2answers
239 views

Easiest way to automatically download required modules in Python?

I would like to release a python module I wrote which depends on several packages. What's the easiest way to make it so these packages are programmatically downloaded just in case they are not ...
2
votes
2answers
292 views

Checking for module availability programmatically in Python?

given a list of module names (e.g. mymods = ['numpy', 'scipy', ...]) how can I check if the modules are available? I tried the following but it's incorrect: for module_name in mymods: try: ...
2
votes
3answers
111 views

Python: How do I disallow imports of a class from a module?

I tried: __all__ = ['SpamPublicClass'] But, of course that's just for: from spammodule import * Is there a way to block importing of a class. I'm worried about confusion on the API level of my ...
2
votes
2answers
256 views

Accessing py2exe program over network in Windows 98 throws ImportErrors

I'm running a py2exe-compiled python program from one server machine on a number of client machines (mapped to a network drive on every machine, say W:). For Windows XP and later machines, have so ...
2
votes
4answers
185 views

Check for a module in Python without using exceptions

I can check for a module in Python doing something like: try: import some_module except ImportError: print "No some_module!" But I don't want to use try/except. Is there a way to accomplish ...
1
vote
2answers
39 views

Python dependency between modules [closed]

Possible Duplicate: Python: Circular (or cyclic) imports Circular dependency in Python I have a Python package featuring two modules that import each other. That is, in module A we have ...
1
vote
1answer
34 views

Task Manager Module

I was wondering if there is a module that allows the program to see what tasks are running. For example, if I am running Google Chrome, Python Idle, and the program, it should see all 3. (It is most ...

1 2 3