EduWorld


NameEduWorld JSON
Version 0.0.36 PyPI version JSON
download
home_pageNone
SummaryEducational package to learn computational thinking and other basic programming concepts
upload_time2025-02-14 13:26:16
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords beginners computational thinking education gamification learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # EduWorld

`EduWorld` is an educational `python` package designed for students to learn computational thinking, algorithms, and other basic programming concepts. Through this process they learn how to divide a problem into smaller steps and refine them; to abstract; to recognize patterns; and to design and implement algorithms;

## Robot

Conceptually it is based on Kumir Robot, with bits of Karel the Robot. (but shares no code)
* https://github.com/a-a-maly/kumir2
* https://github.com/TylerYep/stanfordkarel
* https://github.com/xsebek/karel

The Robot can walk in four cardinal directions, sense walls, temperature, radiation, and place/pickup beepers.

See the `eduworld.robot` module for the list of all available procedural commands.

Oop version of the Robot is not yet completed and somewhat clumsy to use.

### Interactive mode

```python
from eduworld.robot import interactive_mode

interactive_mode()
```

To launch Robot in interactive mode (immediate command execution), run `python test_robot.py`.
In this mode Robot will not execute error shut-off even if you run it into the wall.

Command keys

* W - move up
* S - move down
* A - move left
* D - move right
* E - paint tile
* R - pickup beeper
* F - put beeper
* Q - quit
* P - Save current world into out.aww file
* KP_8 - Toggle tile top wall
* KP_6 - Toggle tile right wall
* KP_2 - Toggle tile bottom wall
* KP_4 - Toggle tile left wall

## Plotter

The Plotter is used to paint lines on endless sheet of paper. It is conceptually based on Kumir Plotter, but with few extras.

See the `eduworld.plotter` module for list of available commands.

### Interactive mode

```python
from eduworld.plotter import setup, shutdown


setup(interactive=True)
shutdown(keep_window=True)
```

To launch Plotter in interactive mode run `python test_plotter.py`.
In this mode you can control plotter's head using following keys

* Keypad 8 - move up 1 unit
* Keypad 2 - move down 1 unit
* Keypad 4 - move left 1 unit
* Keypad 6 - move right 1 unit
* Keypad 9 - move up-right 1 unit
* Keypad 3 - move down-right 1 unit
* Keypad 1 - move down-left 1 unit
* Keypad 7 - move up-left 1 unit
* Keypad 0 - Move pen to origin (0, 0)
* Keypad - - zoom out
* Keypad + - zoom in
* W - randomly pick pen width
* E - randomly pick pen color
* R - raise pen
* F - lower pen
* Z - undo last line
* C - erase drawing

When you `shutdown()` Plotter with `keep_window=True`, you can use Keypad to move around the paper sheet.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "EduWorld",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "beginners, computational thinking, education, gamification, learning",
    "author": null,
    "author_email": "Stanislav Grinkov <StanislavGrinkov@users.noreply.codeberg.org>",
    "download_url": "https://files.pythonhosted.org/packages/01/7e/ce9f46a9325cc3479f6a9dbdbe6e0538967ef592748fcbb5a8930340e3f9/eduworld-0.0.36.tar.gz",
    "platform": null,
    "description": "# EduWorld\n\n`EduWorld` is an educational `python` package designed for students to learn computational thinking, algorithms, and other basic programming concepts. Through this process they learn how to divide a problem into smaller steps and refine them; to abstract; to recognize patterns; and to design and implement algorithms;\n\n## Robot\n\nConceptually it is based on Kumir Robot, with bits of Karel the Robot. (but shares no code)\n* https://github.com/a-a-maly/kumir2\n* https://github.com/TylerYep/stanfordkarel\n* https://github.com/xsebek/karel\n\nThe Robot can walk in four cardinal directions, sense walls, temperature, radiation, and place/pickup beepers.\n\nSee the `eduworld.robot` module for the list of all available procedural commands.\n\nOop version of the Robot is not yet completed and somewhat clumsy to use.\n\n### Interactive mode\n\n```python\nfrom eduworld.robot import interactive_mode\n\ninteractive_mode()\n```\n\nTo launch Robot in interactive mode (immediate command execution), run `python test_robot.py`.\nIn this mode Robot will not execute error shut-off even if you run it into the wall.\n\nCommand keys\n\n* W - move up\n* S - move down\n* A - move left\n* D - move right\n* E - paint tile\n* R - pickup beeper\n* F - put beeper\n* Q - quit\n* P - Save current world into out.aww file\n* KP_8 - Toggle tile top wall\n* KP_6 - Toggle tile right wall\n* KP_2 - Toggle tile bottom wall\n* KP_4 - Toggle tile left wall\n\n## Plotter\n\nThe Plotter is used to paint lines on endless sheet of paper. It is conceptually based on Kumir Plotter, but with few extras.\n\nSee the `eduworld.plotter` module for list of available commands.\n\n### Interactive mode\n\n```python\nfrom eduworld.plotter import setup, shutdown\n\n\nsetup(interactive=True)\nshutdown(keep_window=True)\n```\n\nTo launch Plotter in interactive mode run `python test_plotter.py`.\nIn this mode you can control plotter's head using following keys\n\n* Keypad 8 - move up 1 unit\n* Keypad 2 - move down 1 unit\n* Keypad 4 - move left 1 unit\n* Keypad 6 - move right 1 unit\n* Keypad 9 - move up-right 1 unit\n* Keypad 3 - move down-right 1 unit\n* Keypad 1 - move down-left 1 unit\n* Keypad 7 - move up-left 1 unit\n* Keypad 0 - Move pen to origin (0, 0)\n* Keypad - - zoom out\n* Keypad + - zoom in\n* W - randomly pick pen width\n* E - randomly pick pen color\n* R - raise pen\n* F - lower pen\n* Z - undo last line\n* C - erase drawing\n\nWhen you `shutdown()` Plotter with `keep_window=True`, you can use Keypad to move around the paper sheet.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Educational package to learn computational thinking and other basic programming concepts",
    "version": "0.0.36",
    "project_urls": {
        "Documentation": "https://codeberg.org/helkaraxe/algoworld-python#readme",
        "Issues": "https://codeberg.org/helkaraxe/algoworld-python/issues",
        "Source": "https://codeberg.org/helkaraxe/algoworld-python"
    },
    "split_keywords": [
        "beginners",
        " computational thinking",
        " education",
        " gamification",
        " learning"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13c0b8f330d05961edf19067723da1803a2546b4c68f2d503a14ddbed7d42323",
                "md5": "8dd2479b6fac2e6bce2c83c2245e6751",
                "sha256": "3338b922b999e0c69a2cef38b08304ef7d3ec6935e5b79626dc2beb986b5f4a3"
            },
            "downloads": -1,
            "filename": "eduworld-0.0.36-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8dd2479b6fac2e6bce2c83c2245e6751",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 42114,
            "upload_time": "2025-02-14T13:26:18",
            "upload_time_iso_8601": "2025-02-14T13:26:18.436680Z",
            "url": "https://files.pythonhosted.org/packages/13/c0/b8f330d05961edf19067723da1803a2546b4c68f2d503a14ddbed7d42323/eduworld-0.0.36-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "017ece9f46a9325cc3479f6a9dbdbe6e0538967ef592748fcbb5a8930340e3f9",
                "md5": "772666b53e52c678f66935729837bfbe",
                "sha256": "78dfc3de195e04fa3f5b5c23a4a353aff04da6ce47c3885833bde58fba234170"
            },
            "downloads": -1,
            "filename": "eduworld-0.0.36.tar.gz",
            "has_sig": false,
            "md5_digest": "772666b53e52c678f66935729837bfbe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 30429,
            "upload_time": "2025-02-14T13:26:16",
            "upload_time_iso_8601": "2025-02-14T13:26:16.196231Z",
            "url": "https://files.pythonhosted.org/packages/01/7e/ce9f46a9325cc3479f6a9dbdbe6e0538967ef592748fcbb5a8930340e3f9/eduworld-0.0.36.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-14 13:26:16",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": true,
    "codeberg_user": "helkaraxe",
    "codeberg_project": "algoworld-python#readme",
    "lcname": "eduworld"
}
        
Elapsed time: 2.84691s