superturtle


Namesuperturtle JSON
Version 1.1.0 PyPI version JSON
download
home_pageNone
SummaryExtensions to Python's turtle
upload_time2025-08-12 03:26:38
maintainerNone
docs_urlNone
authorChris Proctor
requires_python<4.0,>=3.10
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Superturtle

Superturtle provides extensions to Python's `turtle` module, supporting richer drawing, 
image export, and animation.

## Installation

First, make sure ImageMagick is installed. (If you use homebrew, this can be accomplished 
with `brew install imagemagick`.) Then, Superturtle can be installed using pip or poetry.

    pip install superturtle

## Usage

Please see [the Superturtle documentation](https://superturtle.readthedocs.io/en/latest/).

## Pedagogy

This module was originally developed as part of **Making With Code**, a constructionist
introductory computer science curriculum. Perhaps the most unusual design decision is this 
module's heavy use of context managers. For example:

    from turtle import forward
    from superturtle.stroke import dots

    with dots():
        forward(100)

![Drawing with dots context manager](documentation/doc_examples/context_manager.png)

Context managers are generally not introduced 
early in a CS curriculum, but they fit naturally with other constructs which contextualize
code blocks: loops, conditionals, and function definition. We hypothesize that introducing
intuitive context managers with easy-to-visualize effects may reinforce the more abstract
role of control structures, and may support students in learning to read indented Python code.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "superturtle",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Chris Proctor",
    "author_email": "chris@chrisproctor.net",
    "download_url": "https://files.pythonhosted.org/packages/62/9b/61b94db99e901ef7b06e68230e910530bb0cefffce77ec5175660a842727/superturtle-1.1.0.tar.gz",
    "platform": null,
    "description": "# Superturtle\n\nSuperturtle provides extensions to Python's `turtle` module, supporting richer drawing, \nimage export, and animation.\n\n## Installation\n\nFirst, make sure ImageMagick is installed. (If you use homebrew, this can be accomplished \nwith `brew install imagemagick`.) Then, Superturtle can be installed using pip or poetry.\n\n    pip install superturtle\n\n## Usage\n\nPlease see [the Superturtle documentation](https://superturtle.readthedocs.io/en/latest/).\n\n## Pedagogy\n\nThis module was originally developed as part of **Making With Code**, a constructionist\nintroductory computer science curriculum. Perhaps the most unusual design decision is this \nmodule's heavy use of context managers. For example:\n\n    from turtle import forward\n    from superturtle.stroke import dots\n\n    with dots():\n        forward(100)\n\n![Drawing with dots context manager](documentation/doc_examples/context_manager.png)\n\nContext managers are generally not introduced \nearly in a CS curriculum, but they fit naturally with other constructs which contextualize\ncode blocks: loops, conditionals, and function definition. We hypothesize that introducing\nintuitive context managers with easy-to-visualize effects may reinforce the more abstract\nrole of control structures, and may support students in learning to read indented Python code.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Extensions to Python's turtle",
    "version": "1.1.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f039c4f15d46cee0ff27e88577f34b7845fd32824acb163914d5a993b781b273",
                "md5": "e65e7e24b88603da31106a7ab4534267",
                "sha256": "2a37a5fac1b87c83f909c19e3229aaa246aa1727088afada63b2a180fa65d5f1"
            },
            "downloads": -1,
            "filename": "superturtle-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e65e7e24b88603da31106a7ab4534267",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10",
            "size": 11564,
            "upload_time": "2025-08-12T03:26:37",
            "upload_time_iso_8601": "2025-08-12T03:26:37.061681Z",
            "url": "https://files.pythonhosted.org/packages/f0/39/c4f15d46cee0ff27e88577f34b7845fd32824acb163914d5a993b781b273/superturtle-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "629b61b94db99e901ef7b06e68230e910530bb0cefffce77ec5175660a842727",
                "md5": "0620b5d8ac34993165f568d8c213e0d6",
                "sha256": "85fafcf66e9dca1d28b841af37ee35c03a0301402cb7366a037613f1a4c9b117"
            },
            "downloads": -1,
            "filename": "superturtle-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0620b5d8ac34993165f568d8c213e0d6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 9604,
            "upload_time": "2025-08-12T03:26:38",
            "upload_time_iso_8601": "2025-08-12T03:26:38.299671Z",
            "url": "https://files.pythonhosted.org/packages/62/9b/61b94db99e901ef7b06e68230e910530bb0cefffce77ec5175660a842727/superturtle-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-12 03:26:38",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "superturtle"
}
        
Elapsed time: 0.94792s