Changes between Version 1 and Version 2 of documentation/PythonManual/Overview
- Timestamp:
- 01/07/08 17:18:21 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
documentation/PythonManual/Overview
v1 v2 1 = Rocket Python Overview = 1 = Getting Started with RocketPython = 2 3 == Overview == 2 4 3 5 RocketPython can be used in an application that extends or embeds Python. The only limitation is that your application initialises Rocket with the necessary System and Render interfaces, but these can easily be done from a custom Python module. 6 8 7 9 For a full list of accessable classes and methods please see the RocketPython [wiki:documentation/PythonManual/APIReference API Reference]. 10 11 == Requirements == 12 13 RocketPython requires [http://www.python.org Python 2.5] and [http://www.boost.org Boost::Python 1.34]. 14 15 == Getting Started == 16 17 If you're developing on Windows you can [attachment:rocket_support.zip download] our pre-built support package which includes both of these libraries. 18 19 The best place to start exploring RocketPython is to look at the PyInvaders sample application which is a reword of the standard Invaders sample but with python support. There is also a step by step [wiki:documentation/tutorials/PythonEventSystem tutorial] describing the steps taken to do the conversion.