show/hide this revision's text 4 added module index link

Firstly, the python libary reference gives a blow by blow of what's actually included. And the global module index contains a neat, alphabetized summary of those same modules. If you have dependencies on a library, you can trivially test for the presence with a construct like:

try:
    import foobar
except:
    print 'No foobar module'

If you do this on startup for modules not necessarily present in the distribution you can bail with a sensible diagnostic.

The Python Package Index plays a role similar to that of CPAN in the perl world and has a list of many third party modules of one sort or another. Browsing and searching this should give you a feel for what's about. There are also utilities such as Yolk which allow you to query the Python Package Index and the installed packages on Python.

Other good online Python resources are:

show/hide this revision's text 3 added 196 characters in body

Firstly, the python libary reference gives a blow by blow of what's actually included. If you have dependencies on a library, you can trivially test for the presence with a construct like:

try:
    import foobar
except:
    print 'No foobar module'

If you do this on startup for modules not necessarily present in the distribution you can bail with a sensible diagnostic.

The Python Package Index plays a role similar to that of CPAN in the perl world and has a list of many third party modules of one sort or another. Browsing and searching this should give you a feel for what's about. There are also utilities such as Yolk which allow you to query the Python Package Index and the installed packages on Python.

Other good online Python resources are:

show/hide this revision's text 2 added 1028 characters in body

Firstly, the python libary reference gives a blow by blow of what's actually included. If you have dependencies on a library, you can trivially test for the presence with a construct like:

try:
    import foobar
except:
    print 'No foobar module'

If you do this on startup for modules not necessarily present in the distribution you can bail with a sensible diagnostic.

The Python Package Index plays a role similar to that of CPAN in the perl world and has a list of many third party modules of one sort or another. Browsing and searching this should give you a feel for what's about. Other good online Python resources are:

show/hide this revision's text 1