One Laptop Per Child -- with Python

The OLPC wiki says:

If you are able to program in Python then you can start building OLPC applications right now. The core tools, Python and GTK, are available on Windows, Macintosh and UNIX. It is not necessary to get Sugar up and running right away unless you want to do something complex using dbus. For most educational applications, you only need to have Sugar for the final testing phases.

That first sentence seems a bit ambitious, but it all does look pretty simple, and I like the list of guidelines:

  1. Remember that the end user is a kid.
  2. Keep the power consumption low. Avoid animated graphics or provide a way for the user to turn them off.
  3. Use simple datastores such as pickle or dbm. For relational databases use SQLite
  4. Keep your GUI simple. Remember that the final application will be running in a tabbed page inside Sugar
  5. Use UNICODE for all strings
  6. Use the gettext module for all string literals
  7. Get a friend to translate all string literals and test your program in their language
  8. Where possible, use international iconic symbols instead of text


Share: