Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PythonTurtle/PythonTurtle
A learning environment for Python suited for beginners and children, inspired by Logo.
https://github.com/PythonTurtle/PythonTurtle
education learning-python logo python turtle
Last synced: about 1 month ago
JSON representation
A learning environment for Python suited for beginners and children, inspired by Logo.
- Host: GitHub
- URL: https://github.com/PythonTurtle/PythonTurtle
- Owner: PythonTurtle
- License: mit
- Created: 2009-05-09T19:33:29.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2024-01-13T17:28:04.000Z (11 months ago)
- Last Synced: 2024-08-02T07:10:35.184Z (4 months ago)
- Topics: education, learning-python, logo, python, turtle
- Language: Python
- Homepage: http://pythonturtle.org
- Size: 67.6 MB
- Stars: 398
- Watchers: 29
- Forks: 108
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS.md
Awesome Lists containing this project
README
# PythonTurtle
[![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.## Citing PythonTurtle
If you refer to PythonTurtle in academic work, please use this citation format:
```bibtex
@misc{rachum2009pythonturtle,
author={Rachum, Ram and Bittner, Peter and others},
title={PythonTurtle: A learning environment for Python suited for beginners and children, inspired by Logo},
month={may},
year={2009},
publisher={GitHub},
doi={10.5281/zenodo.10465283},
url={https://github.com/PythonTurtle/PythonTurtle/}
}
```## License
This project is licensed under the MIT license.