Changes between Version 12 and Version 13 of PythonApps
- Timestamp:
- Jan 25, 2013, 11:26:04 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PythonApps
v12 v13 14 14 * Using [http://www.py2exe.org/ py2exe], which converts a Python program 15 15 into a Windows executable (see below). 16 You can then run this program using the [ LegacyAppsBOINC wrapper].16 You can then run this program using the [WrapperApp BOINC wrapper]. 17 17 * Using PyBOINC, which lets you bundles a Python interpreter with your program, 18 18 and does not require the BOINC wrapper (see below). 19 20 Alternatively, you can use the [PyMw PyMW master/work framework], which is cross platform21 and provides a simplified programming framework22 that does not use a work generator, validator, or assimilator.23 24 == PyBOINC ==25 26 PyBOINC is a wrapper and a set of predefined libraries that lets you27 package a Python program as a BOINC application.28 29 PyBOINC main page:30 https://bitbucket.org/jeremycowles/pyboinc/31 32 Source:33 https://bitbucket.org/jeremycowles/pyboinc/src34 35 Binary Download:36 http://bitbucket.org/jeremycowles/pyboinc/downloads/pyboinc-0.01.zip37 38 TODO: finish this section; provide a cookbook example.39 19 40 20 == Py2Exe == … … 53 33 A Python binding of the BOINC API is described 54 34 [http://twiki.cern.ch/twiki/pub/LHCAtHome/LinksAndDocs/pyboinc-0.1.tar.gz here]. 35 36 == PyBOINC == 37 38 PyBOINC is a wrapper and a set of predefined libraries that lets you 39 package a Python program as a BOINC application. 40 41 PyBOINC main page: 42 https://bitbucket.org/jeremycowles/pyboinc/ 43 44 Source: 45 https://bitbucket.org/jeremycowles/pyboinc/src 46 47 Binary Download: 48 http://bitbucket.org/jeremycowles/pyboinc/downloads/pyboinc-0.01.zip 49 50 Notes: PyBOINC is not maintained. Use at your own risk. 51 52 TODO: finish this section; provide a cookbook example.