Metadata-Version: 2.1
Name: SSSsnake
Version: 0.0.9
Summary: IPythonDisplayTurtles edited for my schools python courses
Home-page: https://github.com/atahan-git/IPythonDisplayTurtle
Author: Atahan Ozturk
Author-email: atahan012000@gmail.com
License: UNKNOWN
Description: # SSSsnake
        IPythonDisplayTurtle with addded functionality for our schools python classes.
        
        How to install from a terminal/command prompt:
        	pip install SSSsnake
        	
        To install from a jupyter notebook cell:
        	!pip install SSSsnake
        
        How to use:
        ```python
        from IPythonDisplayTurtle import Snake
        
        colours=["red","orange","yellow","green","blue","purple"]
        divisions = 12
        angle = 360/divisions 
        
        t = Snake(_pendown = 0)
        for i in range(divisions):
            if(i%2 == 0):
                t.pendown()
                t.pencolor(colours[int(i/2)%len(colours)])
            else:
                t.penup()
            t.goforward(300/divisions)
            t.turnright(angle)
        t.penup()
        t.goforward(120)
        t.turnright(360)
        
        t.display()
        ```
        
        ![Example Turtle](Example.png)
        
        [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/atahan-git/IPythonDisplayTurtle/master)
Platform: UNKNOWN
Classifier: Framework :: IPython
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Education
Requires-Python: >=3.6
Description-Content-Type: text/markdown
