ecspo


Nameecspo JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryA pythonic event driven entity component system
upload_time2024-10-16 17:07:33
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ECSPO
## An ecs implementation for game development in python
- implementation focusing on basic data structures and functions
- intuitive api with minimal boilerplate and fast startup
- easy to understand src code, with a focus on simplicity and readability
- built as a simple implementation of ecs
- generic api, allowing use in game dev, app dev, or other applications

---

## Installation
the easiest way to get up and running is to start you vm of choice and then to use pip
  
```zsh
pip install ecspo
```

it can then be imported using the library name under whatever alias you want

```py
import ecspo as engine
```

## Documentation
For documentation, read the [manual](docs/manual.md)

## Features
- [x] Entities
- [x] Components
- [x] Tags
- [x] Prototypes
- [x] single component queries
- [x] multi component queries

## Credits
Heavily inspired by tinyecs, found [here](https://github.com/dickerdackel/tinyecs)
Massive thanks to [Matiiss](https://github.com/Matiiss) for doing code review, this project would be a mess without it!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ecspo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Arthur Maul II <arthurmiiengineering@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/e6/f6/01efbcf27155a472b7e95c7b28f8f86d445bc494f8c832a334994caf88b2/ecspo-1.0.0.tar.gz",
    "platform": null,
    "description": "# ECSPO\n## An ecs implementation for game development in python\n- implementation focusing on basic data structures and functions\n- intuitive api with minimal boilerplate and fast startup\n- easy to understand src code, with a focus on simplicity and readability\n- built as a simple implementation of ecs\n- generic api, allowing use in game dev, app dev, or other applications\n\n---\n\n## Installation\nthe easiest way to get up and running is to start you vm of choice and then to use pip\n  \n```zsh\npip install ecspo\n```\n\nit can then be imported using the library name under whatever alias you want\n\n```py\nimport ecspo as engine\n```\n\n## Documentation\nFor documentation, read the [manual](docs/manual.md)\n\n## Features\n- [x] Entities\n- [x] Components\n- [x] Tags\n- [x] Prototypes\n- [x] single component queries\n- [x] multi component queries\n\n## Credits\nHeavily inspired by tinyecs, found [here](https://github.com/dickerdackel/tinyecs)\nMassive thanks to [Matiiss](https://github.com/Matiiss) for doing code review, this project would be a mess without it!\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A pythonic event driven entity component system",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/arthurmaul/ECSpo",
        "Issues": "https://github.com/arthurmaul/ECSpo/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f730f4434fc259f1a1fc762109f36ed8acea0f0ecc01939ce541168ef2ff695c",
                "md5": "30b60012bfad51f3dbeb1de69e67ecbd",
                "sha256": "5791d598368759f8f8fa8e115947d2b94738b312799705f0e77d0d763d131a1a"
            },
            "downloads": -1,
            "filename": "ecspo-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "30b60012bfad51f3dbeb1de69e67ecbd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 4669,
            "upload_time": "2024-10-16T17:07:32",
            "upload_time_iso_8601": "2024-10-16T17:07:32.108600Z",
            "url": "https://files.pythonhosted.org/packages/f7/30/f4434fc259f1a1fc762109f36ed8acea0f0ecc01939ce541168ef2ff695c/ecspo-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6f601efbcf27155a472b7e95c7b28f8f86d445bc494f8c832a334994caf88b2",
                "md5": "94a4733b6a8cb7ef4a17aad547cc9fc0",
                "sha256": "e865f71e02bd723be1747131f0dc0ce9ca6c6ab1b4a8c53eb1d6a43682094e42"
            },
            "downloads": -1,
            "filename": "ecspo-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "94a4733b6a8cb7ef4a17aad547cc9fc0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 5167,
            "upload_time": "2024-10-16T17:07:33",
            "upload_time_iso_8601": "2024-10-16T17:07:33.533008Z",
            "url": "https://files.pythonhosted.org/packages/e6/f6/01efbcf27155a472b7e95c7b28f8f86d445bc494f8c832a334994caf88b2/ecspo-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-16 17:07:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "arthurmaul",
    "github_project": "ECSpo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "ecspo"
}
        
Elapsed time: 0.99370s