Skip to main content

A Custom Jupyter Widget Library

Project description

Interactive Turtle

Build Status codecov

A custom Jupyter widget for interactive turtle.

Installation

You can install using pip:

pip install iturtle

Here is the suggested conda environment:

conda create -n turtle -c conda-forge python=3.10 jupyterlab=3.5

Usage

Logo is an educational programming language, designed in 1967 by Wally Feurzeig, Seymour Papert, and Cynthia Solomon. Logo is not an acronym: the name was coined by Feurzeig while he was at Bolt, Beranek and Newman, and derives from the Greek logos, meaning word or thought.

Interactive Turtle is an implementation of Logo programming language as a Jupyter Widget for Jupyter Lab. Interactive Turtle is a popular way for introducing programming to kids and beginners.

Imagine a robotic turtle starting at the middle of the coordinate plane. After an from iturtle import Turtle and creating instance t = Turtle(), give it the command t.forward(15), and it moves 15 pixels in the direction it is facing, drawing a line as it moves. Give it the command t.right(25), and it rotates in-place 25 degrees clockwise.

By combining together these and similar commands, intricate shapes and pictures can easily be drawn.

For example, intricate shapes can be drawn by repeating simple moves:

from iturtle import Turtle

turtle = Turtle()
turtle.pencolor("gold")

for i in range(36):
    turtle.forward(300)
    turtle.left(170)

Please check the following samples:

Currently Interactive Turtle supports these methods:

Turtle motion

home()

Move turtle to the origin – by default the middle of the coordinate plane – and set its heading to its start-orientation which is to the right (east).

turtle.home()

forward() or fd()

Move the turtle forward by the specified distance, in the direction the turtle is headed.

turtle.forward(20)

backward() or bk()

Move the turtle backward by the specified distance, in the direction the turtle is headed.

turtle.backward(20)

left() or lt()

Turn turtle left by angle units. Units are by default degrees.

turtle.left(90)

right() or rt()

Turn turtle right by angle units. Units are by default degrees.

turtle.right(90)

speed()

Set the turtle’s speed to an integer value in the range 0..10.

Speeds from 1 to 10 enforce increasingly faster animation of line drawing and turtle turning.

turtle.speed(1)

Pen control

penup() or pu()

Pull the pen up – no drawing when moving.

turtle.penup()

pendown() or pd()

Pull the pen down – drawing when moving.

turtle.pendown()

pencolor()

Set the color of the pen.

You can set pen color to color string, which is a color specification string, such as "red", "yellow", or "#33cc8c".

turtle.pencolor("red")

You can also set pen color to the RGB color represented by r, g, and b. Each of r, g, and b must be in the range 0..255.

turtle.pencolor(255, 255, 255)

bgcolor()

Set background color of the turtle canvas.

You can set background color to color string, which is a color specification string, such as "red", "yellow", or "#33cc8c".

turtle.bgcolor("black")

goto()

Move turtle to an absolute position. If the pen is down, draw line. Do not change the turtle’s orientation.

turtle.goto(10, 10)

teleport()

Move turtle to an absolute position. Unlike goto(x, y), a line will not be drawn. The turtle's orientation does not change.

turtle.teleport(20, 30)

Development Installation

Create a dev environment:

conda env create -f environment.yml

Install the python. This will also build the TS package.

pip install -e ".[test, examples]"

When developing your extensions, you need to manually enable your extensions with the lab frontend. For lab, this is done by the command:

jupyter labextension develop --overwrite .
jlpm run build

How to see your changes

If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the widget.

Watch the source directory in one terminal, automatically rebuilding when needed:

jlpm run watch

Run JupyterLab in another terminal:

jupyter lab --no-browser

After a change wait for the build to finish and then refresh your browser and the changes should take effect.

If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iturtle-1.0.16.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iturtle-1.0.16-py2.py3-none-any.whl (923.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file iturtle-1.0.16.tar.gz.

File metadata

  • Download URL: iturtle-1.0.16.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for iturtle-1.0.16.tar.gz
Algorithm Hash digest
SHA256 f31031ccf69a9f3cca1757f7b1b43c099d4ea58bebbc69cc373ad5e532da185c
MD5 31bf5e8d411e7808ef18cb9826929ea2
BLAKE2b-256 b959f5ad9910c3ca3c7fed2b2df80d25188c4269c0db6c3162706440f2470d60

See more details on using hashes here.

File details

Details for the file iturtle-1.0.16-py2.py3-none-any.whl.

File metadata

  • Download URL: iturtle-1.0.16-py2.py3-none-any.whl
  • Upload date:
  • Size: 923.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for iturtle-1.0.16-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 405579fe718f1a3dfe1c23e4f248fccf869b84043614740b3b3ff7bbdf47382d
MD5 71bd62ac497cbd417072d2542af7d847
BLAKE2b-256 447562de76f02a5f2baee7a30dc1bb84788deef7a64ca338065db4e40d778ae0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page