Top "Python-module" questions

A module is a file containing Python definitions and statements.

A plethora of Python OSC modules - which one to use?

Open Sound Control (OSC) is a protocol for communication among computers, sound synthesizers, and other multimedia devices that is optimized …

python python-module osc
Importing user defined modules in python from a directory

I'm trying to import a module I wrote in python that just prints out a list containing numbers. The issue …

python module python-module
Installing Setuptools with root - Getting a PythonPath error

I already did the virtual python enviroment. When I'm trying to install setuptools I get the following: python setup.py …

python setuptools python-module
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 …

python module setuptools python-module
Find the absolute path of an imported module

How can I get the absolute path of an imported module?

python python-module
Playing remote audio files in Python?

I'm looking for a solution to easily play remote .mp3 files. I have looked at "pyglet" module which works on …

python python-2.7 audio audio-streaming python-module
Python libraries to calculate human readable filesize from bytes?

I find hurry.filesize very useful but it doesn't give output in decimal? For example: print size(4026, system=alternative) gives 3 …

python python-module
What do I use instead of PyString_AsString when loading a python module in 3.3

I am trying to load a function from python in one of my c++ programs using this function char * pyFunction(…

python c++ python-module
Where are math.py and sys.py?

I found all the other modules in Python33/Lib, but I can't find these. I'm sure there are others "missing" …

python python-3.x python-module
Python: replacing a function within a class of a module

I'm trying to replace a function defined within a class in order to modify its function (as in inner workings) …

python function class oop python-module