Tagged Questions
1
vote
2answers
40 views
relative import in Python 3 not working
I have the following directory:
mydirectory
├── __init__.py
├── file1.py
└── file2.py
I have a function f defined in file1.py.
If, in file2.py, I do
from .file1 import f
I get the following ...
0
votes
0answers
28 views
Python modules not working after update to 3.3.1
I upgraded my python from 3.2.3 to 3.3.1, and modules previously installed no longer work such as tkinter, I have the latest version of tkinter installed. I believe the problem is to do with ...
1
vote
4answers
56 views
Using a from-import statement and still having to enter the class name in Python 3
I have three Python modules in the same directory. Within two of these files are classes I am trying to access. I am under the impression that if I have the following code in one of my modules (called ...
0
votes
1answer
42 views
rpy2 module not working in Python3.2
I am trying to import the rpy2 (version2.3.4) library into Python (version3.2.3) on a Ubuntu 12.10 machine. The rpy2 documentation says that rpy2 works under all Python 3 versions and I am also ...
0
votes
1answer
51 views
Clean imports from packages in Python
I have a following project structure:
project
|----app.py
|----package
|---__init__.py
|---module.py
|---module2.py
|---module3.py
|---....
My __init__.py file currently is ...
1
vote
1answer
127 views
setting a public web server by python3 http.server module
I new to python, as well as web developing.
I made a python web application with the help of http.server module and ran it on localhost port. It is working fine at localhost:abcd .
Now I want to run ...
0
votes
0answers
44 views
import cvxopt.base: the specified module could not be found
I'm new to Python, just installed cvxopt module for my Python3.3 system (64 bit). The installation was successful, but when I typed "import cvxopt" in Python command line, it returned an error:
...
0
votes
1answer
72 views
Dynamic module import in python (code from 3.2 to 3.3)
I need to dynamically import a module and create a class.
This is my working code in Python 3.2:
klass = {}
mod = __import__('sites.' + self.className + '_login', fromlist=[self.className])
...
3
votes
0answers
146 views
python3 audio signal processing
A project I am working on for one of my classes is to build a simple GUI sound editor for kids using python3 (using python3 is a strict project requirement). I don't want this editor to be as complex ...
0
votes
2answers
934 views
python 3.2 import issue
I've been troubleshooting for the past few days trying to install distribute so I can start importing 3rd party modules. I haven't used python for a couple years so I'm re-remembering everything which ...
1
vote
2answers
172 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
117 views
How to import custom python package by name
I have created a folder named "custom_module" and I have the __init__.py inside the folder which contains:
__all__ = [
'Submodule1',
'Submodule2'
]
From what documentation I read I ...
0
votes
1answer
156 views
NOT able to use Xlrd module in python
Question: i M not able to use xlrd module though i have installed the same???
Error obtained :
Traceback (most recent call last):
File "D:\xlrd_1.py", line 1, in <module>
import xlrd
...
2
votes
2answers
220 views
Installing Swampy for python 3 in Windows
I am a beginner python learner using The book 'Think Python' where I have to install module name Swampy. The link provided fro instruction and download has a tar.gz file. I found the python 3 version ...
0
votes
1answer
276 views
Using EasyGui With Cx_Freeze
I've created this question relative to my other one - How to include modules in Cx_freeze, but decided that wasn't really realtive to my current question.
When i freeze my program, which uses ...
1
vote
1answer
61 views
Equivalent of RTLD_NEXT when importing modules in Python?
I'm attempting to "hook" a top level standard library module. That is, provide an alternative implementation, however I need to invoke some of the functionality from the original module.
How can I ...
2
votes
3answers
711 views
Relative import of submodule
In Python, how do I perform the equivalent of the following
import http.client
but using a relative import:
from . import http.client
import .http.client
For a package http in the current ...
5
votes
2answers
313 views
Python's use of global vs specifying the module
Was wondering if anyone had any thoughts on the use of Python's global vs. referencing the module itself. While in the past I used global when needed, I've found it somewhat clearer to do the second ...
2
votes
1answer
232 views
python: from modules import abc.py does not work
I have recently switched from python 2.7 to python 3.2
considering following folder structure:
~/my_program
~/my_program/modules
where *my_program* is the root of the application, containing main ...
2
votes
2answers
324 views
from . import x using __import__?
How do I achieve from . import x (import module x from the current package), using __import__?
Here are some attempts that failed:
>>> __import__('.', fromlist=['x'])
ValueError: Empty ...
1
vote
0answers
307 views
Media Module for Python 3.2
I'm taking an introductory computer science course this semester and my professor has us using Practical Programming: An Introduction to Computer Science Using Python for our textbook. I'm working ...
0
votes
1answer
471 views
How to Reload a Python3 C extension module?
I wrote a C extension (mycext.c) for Python 3.2. The extension relies on constant data stored in a C header (myconst.h). The header file is generated by a Python script. In the same script, I make use ...
2
votes
0answers
175 views
Py_FindMethod is gone in python3 . What should I use instead?
there. I'm trying to port the avl module for Python I found on sourceforge http://sourceforge.net/projects/pyavl/ to python3. I managed to get rid of most errors, but I don't find clear information on ...
3
votes
2answers
158 views
__init__.so (instead of __init__.py) masks subpackages
I am writing some code in cython, and I have some "Packages “within” modules". — This is actually a follow up to my question there, and the structure should be the same. The problem is that this ...
5
votes
2answers
107 views
Packages “within” modules
I have a growing number of scripts that make up a program I am writing and decided it was time to clean up my source tree and package them up correctly. I'm sure this is a simple question but I can't ...
6
votes
7answers
328 views
Use a class in the context of a different module
I want to modify some classes in the standard library to use a different set of globals the ones that other classes in that module use.
Example
This example is an example only:
# module_a.py
...
5
votes
2answers
208 views
Clone a module and make changes to the copy
Is it possible to copy a module, and then make changes to the copy? To phrase another way, can I inherit from a module, and then override or modify parts of it?
0
votes
1answer
115 views
Python3 mailbox module is very slow (only mbox?) [duplicate]
I tried in python 3.1.3 to open an mbox file, with the mailbox module.
There are only 3 mails in it and it is only 27k big.
But when reading the mails my CPU uses 100% for about 2-3 minutes, until it ...
0
votes
0answers
1k views
Python3: no gzip or zlib?
is this module named something else now? I can't seem to find any info saying that this module was deprecated or dropped completely. (which would confuse me further)
Anyone know where this went?
...
3
votes
2answers
389 views
where to store a log file name in python?
I have a Python program that consists of several modules. The "main" module creates a file variable log_file for logging the output; all the other modules would need to write to that file as well.
...
1
vote
2answers
482 views
Python Mersenne Twister implementation
I have Python 3.1.2 and I'm using Windows XP.
Where can I see Python's implementation of the Mersenne Twister? In the Python docs it is stated that the Mersenne Twister was written in C and the ...
42
votes
7answers
8k views
__getattr__ on a module
How can implement the equivalent of a __getattr__ on a class, on a module?
Example
When calling a function that does not exist in a module's statically defined attributes, I wish to create an ...
