Make your own sugar activities

Where To Go From Here?

This book attempts to give a beginning programmer the information she needs to develop and publish her own Sugar Activities.  It already contains many URL's of websites containing information not covered in the book.  This chapter will contain URL's and pointers to still more resources that will be useful to any Sugar developer.

Learning Python

List compiled by Mike Rehner

PyGTK Book by Peter Gill

Much of the work you will do writing Activities involves PyGTK.  Peter Gill is working on a PyGTK book that covers the subject in great detail.  You can download the book here:

OLPC Austria Activity Handbook

This is the first attempt to write a manual on creating Sugar Activities.  It is aimed at experienced programmers and covers topics that this book does not, like how to write Activities using languages other than Python.  The book was written in 2008 and as a result some of the advice is a bit dated.  It's still an excellent source of information.  The authors are Christoph Derndorfer and Daniel Jahre.

The Sugar Almanac

This is a series of Wiki articles covering the Sugar API (Application Programming Interface).  It's a good source of information that I have referred to many times.

Sugar Labs Mailing Lists

Sugar Labs has several email mailing lists that might be worth subscribing to.  The ones I follow most are the IAEP (It's An Education Proiject) list and Sugar-Devel.  Sugar-Devel is a good place to ask questions about developing Sugar Activities and learn about the latest work being done on Sugar itself.  IAEP is a good place to get ideas on what kinds of Activities teachers and students want and to get feedback on your own Activities.  Anyone can sign up to these mailing lists here:

PyDoc

PyDoc is a utility for viewing documentation generated from the Python libraries on your computer, including the Sugar libraries.  To run it use this command from a terminal:

pydoc -p 1234

This command will not finish.  It runs a kind of web server on your system where 1234 is a port number.  You can access the website it serves at http://localhost:1234.  There is nothing magic about the number 1234.  You can use any number you like.

The website lets you follow links to documentation on all the Python libraries you have installed.  When you are done browsing the documentation you can stop the pydoc command bt returning to the terminal and hitting Ctrl-C (hold down the Ctrl key and hit the "c" key).

Flavio Danesse

Flavio is the founder of Python Joven, a club for young Python developers who have written many Sugar Activities.  His websites are a terrific source of information for anyone who wants to create Sugar Activities.  The websites are in Spanish but support translation through Google Translate.  I found the English translation to be quite readable.