skit-game


Nameskit-game JSON
Version 0.1.6 PyPI version JSON
download
home_pagehttps://github.com/vtbassmatt/skit
SummaryA tool for prototyping card games
upload_time2023-03-30 01:46:09
maintainer
docs_urlNone
authorMatt Cooper
requires_python>=3.11,<4.0
licenseMIT
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
```

## 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": "https://github.com/vtbassmatt/skit",
    "name": "skit-game",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Matt Cooper",
    "author_email": "vtbassmatt@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/6f/76/9c8eb7a7aef8f746ddf6a8a89ff580681e65bf502c78d4ba58199dded006/skit_game-0.1.6.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## 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": "MIT",
    "summary": "A tool for prototyping card games",
    "version": "0.1.6",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84f789b707aba16f09e0dfcc306b49dad1e90fd9e5f9f3cc84374ab80678a7d2",
                "md5": "19ccdcd6fe9d1000faa68ded46d2e3d7",
                "sha256": "52f355700ae0d61c6983e19a890f4a5d42e0e666e133d57f95b83c9ac0b699e9"
            },
            "downloads": -1,
            "filename": "skit_game-0.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "19ccdcd6fe9d1000faa68ded46d2e3d7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 9584,
            "upload_time": "2023-03-30T01:46:07",
            "upload_time_iso_8601": "2023-03-30T01:46:07.733801Z",
            "url": "https://files.pythonhosted.org/packages/84/f7/89b707aba16f09e0dfcc306b49dad1e90fd9e5f9f3cc84374ab80678a7d2/skit_game-0.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f769c8eb7a7aef8f746ddf6a8a89ff580681e65bf502c78d4ba58199dded006",
                "md5": "2d8cdb0acf874dc742491470a2bd86b9",
                "sha256": "a1669c49bc17d81f16255ce553be31ad3e76a7fde906ba00cd607292c642ec89"
            },
            "downloads": -1,
            "filename": "skit_game-0.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "2d8cdb0acf874dc742491470a2bd86b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 8383,
            "upload_time": "2023-03-30T01:46:09",
            "upload_time_iso_8601": "2023-03-30T01:46:09.471098Z",
            "url": "https://files.pythonhosted.org/packages/6f/76/9c8eb7a7aef8f746ddf6a8a89ff580681e65bf502c78d4ba58199dded006/skit_game-0.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-30 01:46:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "vtbassmatt",
    "github_project": "skit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "skit-game"
}
        
Elapsed time: 0.04825s