Metadata-Version: 2.1
Name: PythonTurtle
Version: 0.3.2
Summary: An educational environment for learning Python, suitable for beginners
Home-page: http://pythonturtle.org
Author: Ram Rachum and contributors
Author-email: ram@rachum.com
License: MIT
Project-URL: Source, https://github.com/PythonTurtle/PythonTurtle
Description: Python Turtle
        =============
        
        [![Travis CI](https://img.shields.io/travis/PythonTurtle/PythonTurtle/master.svg?logo=travis)](https://travis-ci.org/PythonTurtle/PythonTurtle
        ) [![AppVeyor](https://img.shields.io/appveyor/ci/cool-RR/PythonTurtle/master.svg?logo=appveyor)](https://ci.appveyor.com/project/cool-RR/PythonTurtle
        ) [![Checks](https://img.shields.io/github/workflow/status/PythonTurtle/PythonTurtle/Checks/master?label=Checks&logo=github)](https://github.com/PythonTurtle/PythonTurtle/actions?query=workflow%3AChecks
        ) [![Tests](https://img.shields.io/github/workflow/status/PythonTurtle/PythonTurtle/Tests/master?label=Tests&logo=github)](https://github.com/PythonTurtle/PythonTurtle/actions?query=workflow%3ATests
        ) [![GitHub issues](https://img.shields.io/github/issues-raw/PythonTurtle/PythonTurtle.svg)](https://github.com/PythonTurtle/PythonTurtle/issues
        ) [![GitHub PRs](https://img.shields.io/github/issues-pr-raw/PythonTurtle/PythonTurtle.svg)](https://github.com/PythonTurtle/PythonTurtle/pulls
        ) [![Python versions](https://img.shields.io/pypi/pyversions/PythonTurtle.svg)](https://pypi.org/project/PythonTurtle/
        ) [![MIT license](https://img.shields.io/github/license/PythonTurtle/PythonTurtle.svg)](https://github.com/PythonTurtle/PythonTurtle/blob/master/LICENSE
        ) [![Gitter](https://img.shields.io/gitter/room/PythonTurtle/Lobby.svg)](https://gitter.im/PythonTurtle/Lobby)
        
        An educational environment for learning Python, suitable for beginners and children.
        Inspired by LOGO.
        
        Homepage: [http://pythonturtle.org](http://pythonturtle.org)
        
        An Appealing Environment to Learn Python
        ----------------------------------------
        
        PythonTurtle strives to provide the lowest-threshold way to learn Python.
        Students command an interactive Python shell (similar to the [IDLE development
        environment](https://docs.python.org/3/library/idle.html)) and use Python
        functions to move a turtle displayed on the screen.
        
        An illustrated help screen introduces the student to the basics of Python
        programming while demonstrating how to move the turtle. Simplicity and a
        colorful visual appearance makes the learning environment more appealing
        to students.
        
        ![Screen shot](http://pythonturtle.org/images/screenshot.gif)
        
        Installation
        ------------
        
        Installers for Microsoft Windows and macOS are available from
        [pythonturtle.org](http://pythonturtle.org) and [GitHub](
        https://github.com/PythonTurtle/PythonTurtle/releases).
        
        Ubuntu Linux:
        
        ```bash
        sudo apt-get install -y python3-wxgtk4.0
        ```
        
        Fedora:
        
        ```bash
        python3 -m pip install wxpython
        ```
        
        On any GNU/Linux distribution: (after installing prerequisites from above)
        
        ```bash
        python3 -m pip install --user PythonTurtle
        PythonTurtle
        ```
        
        If you're into automation:
        
        [Ansible tasks](https://github.com/painless-software/ansible-role-software/blob/master/tasks/education/programming.yml#L12-L43
        ) for setting up PythonTurtle including a desktop shortcut for GNOME.
        
        ### Troubleshooting
        
        > ImportError: libpng12.so.0: cannot open shared object file: No such file or directory
        
        See https://askubuntu.com/a/978338/14650
        
        Compatibility
        -------------
        
        Tested with Python version 3.6 and wxPython version 4.0.1.
        Reported to run on Windows, macOS, Ubuntu Linux, and Fedora.
        
        Development
        -----------
        
        ```bash
        git clone https://github.com/PythonTurtle/PythonTurtle.git
        cd PythonTurtle
        python3 -m pythonturtle
        ```
        
        Build application bundles like this:
        
        ```bash
        python3 setup.py clean bundle
        ```
        
        Please [open a pull request](https://github.com/PythonTurtle/PythonTurtle/pulls
        ) for contributions or bug fixes. If you can, please also add tests.
        
        About
        -----
        
        This project is licensed under the MIT license.
        
        PythonTurtle was created by Ram Rachum as a side-project in 2009. I also provide
        [freelance Django/Python development services](https://chipmunkdev.com). I [give Python workshops](http://pythonworkshops.co/) to teach people Python and related topics. ([Hebrew website](http://pythonworkshops.co.il/).)
        
Keywords: turtle,learning,children,beginners,logo
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications :: GTK
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Education
Requires-Python: >=3
Description-Content-Type: text/markdown
