skit-game


Nameskit-game JSON
Version 0.1.7 PyPI version JSON
download
home_pageNone
SummaryA tool for prototyping card games
upload_time2025-03-09 18:51:36
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Skit

A tool for prototyping card games.

Inspired by [squib][squib], but I could never quite get my head around Ruby.

[squib]: https://github.com/andymeneely/squib

## Installation

PyPI didn't like the name `skit`, so it's called `skit-game`:

```ShellSession
pip install skit-game
# or
poetry add skit-game
```

But the package inside is just called `skit`.

## Usage

See the [examples](https://github.com/vtbassmatt/skit/blob/main/examples) for basic usage.

```python
from skit import Deck

d = Deck(3) # make a deck of 3 cards, default size
d.background('#cccccc') # set a gray background
d.render_png('basic_{index}.png') # render basic_0.png, basic_1.png, and basic_2.png
```

## Docs

API documentation is available at https://vtbassmatt.github.io/skit/.

## Credits

- Andy Meneely for the idea, and for the awesome Squib!
- game-icons.net for icons used in the examples

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "skit-game",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Matt Cooper <vtbassmatt@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d5/aa/3287729b4b8a41315a35880473ce998466a2e952ec974da80821d5705054/skit_game-0.1.7.tar.gz",
    "platform": null,
    "description": "# Skit\n\nA tool for prototyping card games.\n\nInspired by [squib][squib], but I could never quite get my head around Ruby.\n\n[squib]: https://github.com/andymeneely/squib\n\n## Installation\n\nPyPI didn't like the name `skit`, so it's called `skit-game`:\n\n```ShellSession\npip install skit-game\n# or\npoetry add skit-game\n```\n\nBut the package inside is just called `skit`.\n\n## Usage\n\nSee the [examples](https://github.com/vtbassmatt/skit/blob/main/examples) for basic usage.\n\n```python\nfrom skit import Deck\n\nd = Deck(3) # make a deck of 3 cards, default size\nd.background('#cccccc') # set a gray background\nd.render_png('basic_{index}.png') # render basic_0.png, basic_1.png, and basic_2.png\n```\n\n## Docs\n\nAPI documentation is available at https://vtbassmatt.github.io/skit/.\n\n## Credits\n\n- Andy Meneely for the idea, and for the awesome Squib!\n- game-icons.net for icons used in the examples\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A tool for prototyping card games",
    "version": "0.1.7",
    "project_urls": {
        "Homepage": "https://github.com/vtbassmatt/skit",
        "Repository": "https://github.com/vtbassmatt/skit.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdb2bba513d38d5551a620ab2b157c98dfb107df7e8b3adb04d7f9b27cabf199",
                "md5": "3f9d66d6fb620b16384f8a2a32ca284d",
                "sha256": "8a7f6d9972cf7eea3583131bf33c549d3cea40c7cf8d452dec4c26cac415fc36"
            },
            "downloads": -1,
            "filename": "skit_game-0.1.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3f9d66d6fb620b16384f8a2a32ca284d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 9733,
            "upload_time": "2025-03-09T18:51:35",
            "upload_time_iso_8601": "2025-03-09T18:51:35.062457Z",
            "url": "https://files.pythonhosted.org/packages/cd/b2/bba513d38d5551a620ab2b157c98dfb107df7e8b3adb04d7f9b27cabf199/skit_game-0.1.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5aa3287729b4b8a41315a35880473ce998466a2e952ec974da80821d5705054",
                "md5": "f0d2fc5d08ae946c713b48140752c58e",
                "sha256": "9d71075016d0a6b1b85af83ac984016880beceee2423f3c84bb18c0d4d1a08bb"
            },
            "downloads": -1,
            "filename": "skit_game-0.1.7.tar.gz",
            "has_sig": false,
            "md5_digest": "f0d2fc5d08ae946c713b48140752c58e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 136659,
            "upload_time": "2025-03-09T18:51:36",
            "upload_time_iso_8601": "2025-03-09T18:51:36.353047Z",
            "url": "https://files.pythonhosted.org/packages/d5/aa/3287729b4b8a41315a35880473ce998466a2e952ec974da80821d5705054/skit_game-0.1.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-03-09 18:51:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vtbassmatt",
    "github_project": "skit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "skit-game"
}
        
Elapsed time: 1.57750s