Metadata-Version: 1.1
Name: mobilechelonian
Version: 0.1
Summary: Turtles in the IPython Notebook
Home-page: https://github.com/takluyver/mobilechelonian
Author: Thomas Kluyver
Author-email: thomas@kluyver.me.uk
License: UNKNOWN
Description: *"Nevertheless... the turtle moves!"* - Small Gods, by Terry Pratchett
        
        This is a Turtle module for the IPython notebook. It's based on code by
        `aspidites <https://github.com/macewanCMPT395/aspidites>`_, one of two groups at
        `Macewan University <http://macewan.ca/wcm/index.htm>`_ that built Turtle
        as a class assignment (the other was `PACattack <http://macewancmpt395.github.io/PACattack/>`_;
        I could have based this on either, but I had to pick one).
        
        To use it, first run this (you can skip this on IPython 3 or above)::
        
            from mobilechelonian import prepare_js
            prepare_js()
        
        Then create a turtle and draw::
        
            from mobilechelonian import Turtle
            t = Turtle()
            t.speed(5)
            colours=["red","blue","yellow","brown","black","purple","green"]
            t.penup(); t.left(90); t.forward(200);t.right(90);t.pendown()
            for i in range (0,18):
                t.pencolor(colours[i%7])
                t.right(20)
                t.forward(50)
        
            t.right(180)
            t.home()
        
        .. image:: sample.png
        
Platform: UNKNOWN
Classifier: Framework :: IPython
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Artistic Software
Classifier: Topic :: Education
