Metadata-Version: 2.1
Name: snecs
Version: 0.2.0
Summary: A straightforward, nimble ECS for Python
Home-page: https://github.com/slavfox/snecs
License: MPL-2.0
Keywords: ECS,game engine,gamedev
Author: Slavfox
Author-email: slavfoxman@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Project-URL: Repository, https://github.com/slavfox/snecs
Description-Content-Type: text/x-rst

.. image:: https://raw.githubusercontent.com/slavfox/snecs/master/docs/_static/snecs_logo.png
   :align: center
   :alt: snecs

=====
snecs
=====

A straightforward, nimble ECS for Python.

.. teaser-start

|PyPI badge| |PyVersion badge| |PyImplementation badge| |Mypy badge| |License badge|

``snecs`` is a pure Python 3.6+, dependency-free
`ECS <https://en.wikipedia.org/wiki/Entity_component_system>`__ library,
heavily inspired by Rust’s
`Legion <https://github.com/TomGillen/legion>`__, and aiming to be as
fast and easy-to-use as possible.


.. |PyPI badge| image:: https://img.shields.io/pypi/v/snecs
   :alt: PyPI
   :target: https://pypi.org/project/snecs/

.. |PyVersion badge| image:: https://img.shields.io/pypi/pyversions/snecs
   :alt: PyPI - Python Version

.. |PyImplementation badge| image:: https://img.shields.io/pypi/implementation/snecs
   :alt: PyPI - Implementation

.. |Mypy badge| image:: https://img.shields.io/badge/mypy-typed-informational
   :alt: Mypy: checked
   :target: http://mypy-lang.org/

.. |License badge| image:: https://img.shields.io/github/license/slavfox/snecs
   :alt: GitHub
   :target: https://github.com/slavfox/snecs/blob/master/LICENSE

.. teaser-end

Contents
========

-  `Overview <#overview>`__
-  Other stuff to come…
-  `License <#license>`__

Overview
========

``snecs`` is an
`ECS <https://en.wikipedia.org/wiki/Entity_component_system>`__ 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 <https://www.youtube.com/watch?v=o9pEzgHorH0>`__.

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 <https://github.com/benmoran56/esper>`__, and eventually I’ll
have a benchmark suite to post here.

Dependency-free!
----------------

``snecs`` has `no dependencies
whatsoever <https://github.com/slavfox/snecs/blob/master/pyproject.toml>`__,
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:

.. code:: console

   $ 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 <https://github.com/slavfox/snecs/blob/master/mypy.ini>`__
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 <https://www.mozilla.org/en-US/MPL/2.0/>`__, and included in
`LICENSE <https://github.com/slavfox/snecs/blob/master/LICENSE>`__. If
you have questions about the license, check Mozilla’s `MPL
FAQ <https://www.mozilla.org/en-US/MPL/2.0/FAQ/>`__.

