Python Setup Notes: Difference between revisions
From Mobile Application Design
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 26: | Line 26: | ||
[http://pdis.hiit.fi/pdis/download/miso/ Miso - a utility library] | [http://pdis.hiit.fi/pdis/download/miso/ Miso - a utility library] | ||
[http://people.csail.mit.edu/kapu/symbian/python.html Kari Pulli's Python page] | [http://people.csail.mit.edu/kapu/symbian/python.html Kari Pulli's Python page] | ||
=== Simple Programs === | |||
==== Hello Python ==== | |||
<pre> | |||
import appuifw | |||
appuifw.note(u"Well hello Python for Series60, you look nice... ", "info") | |||
</pre> | |||
=== Exercises === | |||
# Rewrite the Zombie Detector from Week 2 in Python. | |||
# Create a script which reads in a string and then sends it an SMS to your neighbour | |||
Revision as of 15:48, 16 November 2006
Python for S60
Installation
Project Home page | Download page
Since we are using the lovely N80 phones provided by Nokia - we'll need to download the following files:
- PythonForS60_1_3_13_SDK_3rdEd for Series60 3rd Edition phones like N80, N91, N93.
- PythonScriptShell_1_3_13_3rdEd
- API Documentation
Bluetooth these to your N80 and install them ahead of time.
Reference
Jurgen Scheible's Tutorial Site
Guido Van Rossum's Python Tutorial
Editors
Useful Tools
Miso - a utility library Kari Pulli's Python page
Simple Programs
Hello Python
import appuifw appuifw.note(u"Well hello Python for Series60, you look nice... ", "info")
Exercises
- Rewrite the Zombie Detector from Week 2 in Python.
- Create a script which reads in a string and then sends it an SMS to your neighbour