Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
No edit summary
Line 17: Line 17:
== Miscellaneous ==
== Miscellaneous ==


* [http://www.boost.org/doc/libs/release/libs/python/doc interfacing C++ and Python] via Boost
* [[Interfacing C++ and Python]]


== Tips ==
== Tips ==

Revision as of 10:26, 14 October 2011

documentation

Libraries

Miscellaneous

Tips

  • adding a path to a directory containing your module files

<source lang="py"> import sys sys.path += [ "/home/username/bin/Python" ] </source>