# pypercard **Repository Path**: mirrors_tjguk/pypercard ## Basic Information - **Project Name**: pypercard - **Description**: A HyperCard inspired GUI framework for beginner developers in Python. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PyperCard - A Pythonic HyperCard for Beginner Programmers A re-implementation of [Adafruit's CircuitPython PYOA](https://github.com/adafruit/Adafruit_CircuitPython_PYOA) module for non-CircuitPython computing environments. This module re-uses the JSON specification used to create HyperCard like "stacks" of states between which users transition in a choose-your-own-adventure style. This is very much a first draft bodge. ;-) ## Developer Setup Git clone the repository: ``` git clone https://github.com/ntoll/pypercard.git ``` (Recommended) Upgrade local pip: ``` pip install --upgrade pip ``` Make a virtualenv, then install the requirements: ``` pip install -e ".[dev]" ``` Run the test suite: ``` make check ``` Try out some of the examples in the "examples" subdirectory (see the README therein for more information). ## ToDo * Packaging for mobile (Android and iOS). * Documentation ;-) * Blockly based web application so beginners can easily generate the required JSON or Python code to build their application.