A straightforward, nimble ECS for Python
Project description
snecs
A straightforward, nimble ECS for Python.
snecs is a pure Python 3.6+, dependency-free ECS library, heavily inspired by Rust’s Legion, and aiming to be as fast and easy-to-use as possible.
Scroll down to learn more, or check out the documentation!
Overview
snecs is an ECS library, written from the ground up to be:
Straightforward!
The snecs API is designed to be both easy-to-use, and encourage cleanly structured code. It follows a simple principle - functions do things, classes represent things - in an attempt to reduce the incidence of antipatterns like ClassesAsNamespaces.
Nimble!
snecs is written with a benchmark-driven approach. Every statement in the hot path is benchmarked against alternative ways to express the same behavior, to let your code run as fast as you need it to.
One of the design goals is outrunning esper, and eventually I’ll have a benchmark suite to post here.
Dependency-free!
snecs has no dependencies whatsoever, other than Python 3.6 or higher; you won’t need to worry about deprecation warnings from dependencies, or having to install systemwide libraries for dependencies to work - because there are none! Installing snecs is as simple as running:
$ pip install snecs
Pure Python!
snecs is written entirely in Python. It does not use any modules written in C or any other language, which means that you don’t have to worry about needing a C compiler if there are no wheels for your platform and distribution, and that it works perfectly under PyPy, and gets the full benefit of its JIT compiler and optimizations.
Fully typed!
snecs is checked against a very aggressive mypy configuration to catch bugs and let you fully enjoy the library even when writing type-annotated code. You won’t have to # type: ignore any use of snecs.
Lovingly-commented!
Over a third of the non-blank lines in the snecs/ directory are comments. If you ever need to dive into the code to see how snecs works under the hood, they will guide you through the source and explain every workaround, optimization, and obscure trick you might find non-obvious.
License
snecs is made available under the terms of the Mozilla Public License Version 2.0, the full text of which is available here, and included in LICENSE. If you have questions about the license, check Mozilla’s MPL FAQ.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file snecs-1.2.2.tar.gz
.
File metadata
- Download URL: snecs-1.2.2.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.8.8-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e71c4500d8bf1c536c64517a5e2c168ae3683dd1b1e6139074879967aa927779 |
|
MD5 | 29b1e92f32f0d3834d2c452d631c24e3 |
|
BLAKE2b-256 | 39d68665a33a4be1547f0eaa70d1bc79efd9a1b7f084e648e99da095e0387dc6 |
File details
Details for the file snecs-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: snecs-1.2.2-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.8.8-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc7797c258ec4691d99e4b146d8cb4b44d80bff3778020bde56bc7a72d988adb |
|
MD5 | 419289f70902d98beb4036e1507471cf |
|
BLAKE2b-256 | 7f960c6d170281522f924b23dd4a51b414f0c179a4c8ad1250d47570f4a26138 |