I'm just beginning Python, and I'd like to use an external RSS class. Where do I put that class and how do I import it? I'd like to eventually be able to share python programs.
|
1
|
|
|
|
|
|
About the (a good writeup is at http://effbot.org/zone/import-confusion.htm and the python tutorial goes into detail at http://docs.python.org/tutorial/modules.html ) There are two normal ways to import code into a python program.
A module is simply a file that ends in .py. In order for python, it must exist on the search path (as defined in sys.path). The search path usually consists of the same directory of the .py that is being run, as well as the python system directories. Given the following directory structure:
From main.py, you can "import" the rss classes by running:
Packages provide a more structured way to contain larger python programs. They are simply a directory which contains an As long as the package directory is on To find your current path, run this:
|
||
|
|
|
|
I don't really like answering so late, but I'm not entirely satisfied with the existing answers.
You put it in a python file, and give the python file an extension of .py . Then you can import a module representing that file, and access the class. Supposing you want to import it, you must put the python file somewhere in your import search path-- you can see this at run-time with
After you have it set up as a standalone file, you can get it set up for distribution using distutils. That way you don't have to worry about where, exactly, it should be installed-- distutils will worry for you. There are many other additional means of distribution as well, many OS-specific-- distutils works for modules, but if you want to distribute a proper program that users are meant to run, other options exist, such as using py2exe for Windows. As for the modules/packages distinction, well, here it goes. If you've got a whole bunch of classes that you want divided up so that you don't have one big mess of a python file, you can separate it into multiple python files in a directory, and give the directory an |
||
|
|
|
|
Where the module is somewhere on your python path. |
||
|
|
|
About modules and packages:
You can find more in the documenation. |
||||||
|
