{"id":19989769,"url":"https://github.com/inspiaaa/faster-turtle","last_synced_at":"2025-07-21T08:32:03.936Z","repository":{"id":108960026,"uuid":"195844547","full_name":"Inspiaaa/Faster-Turtle","owner":"Inspiaaa","description":"A faster turtle implementation for Python written in pure Python","archived":false,"fork":false,"pushed_at":"2019-07-09T11:49:42.000Z","size":106,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-01T21:52:23.464Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Inspiaaa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-08T15:54:32.000Z","updated_at":"2022-01-03T05:42:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"62b23203-4aff-487c-9c56-6abf6a62b836","html_url":"https://github.com/Inspiaaa/Faster-Turtle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Inspiaaa/Faster-Turtle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inspiaaa%2FFaster-Turtle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inspiaaa%2FFaster-Turtle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inspiaaa%2FFaster-Turtle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inspiaaa%2FFaster-Turtle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Inspiaaa","download_url":"https://codeload.github.com/Inspiaaa/Faster-Turtle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inspiaaa%2FFaster-Turtle/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266267209,"owners_count":23902314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T04:50:04.384Z","updated_at":"2025-07-21T08:32:03.912Z","avatar_url":"https://github.com/Inspiaaa.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Faster Turtle\nFaster Turtle is another turtle implementation written in pure Python. As its name indicates, it is faster than Python's default turtle implementation. Although Python's default one is better for real-time and learning, Faster Turtle offers incredible performance for rendering.\n\n## Same as Python's Turtle\n```Python\nfrom turtle import Turtle\nfrom random import randint\nfrom pil_renderer import PILRenderer\n\nt = Turtle()\n\nt.pendown()\n\nfor i in range(18):\n    t.begin_poly()\n    t.fill(randint(100, 255), 0, randint(100, 255))\n  \n    t.forward(25)\n    t.right(15)\n    t.forward(25)\n    t.right(165)\n    t.forward(25)\n    t.right(15)\n    t.forward(25)\n    \n    t.right(25)\n    t.end_poly()\n\nrenderer = PILRenderer()\nt.render(renderer)\nrenderer.show()\n```\n\nThe only noticeable difference is that the turtle uses an external renderer to produce the result:\n\n![enter image description here](https://raw.githubusercontent.com/LavaAfterburner/Faster-Turtle/master/Example%20Images/E2.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finspiaaa%2Ffaster-turtle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finspiaaa%2Ffaster-turtle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finspiaaa%2Ffaster-turtle/lists"}