A utility for managing mosaik's entity identifiers.
Project description
# Mosaik EID
Mosaik EID supports creating Mosaik scenarios by managing the identifiers of the
entities.
## Motivation
Traditionally, mosaik entities are created with hard coded names.
Mosaik EID intends to be easier to use and less error-prone than to hard coding values.
The clean and pythonic API encourages creating scenarios in a DRY fashion.
## Design
The package contains a parser, generator, data model and exceptions around creating such names.
The data model is based upon an
[`Enum`](https://docs.python.org/3/library/enum.html).
Building upon that is a manager which issues entity identifiers
based on the entity type and a serial number.
The entity manager implements the borg pattern and
can thus be instantiated at will without losing state.
There are some basic entity types predefined,
but they can be extended by registering additional types.
## Compatibility
It is allowed to register entity names with arbitrary capitalization,
for example `CHP`, `BioGas` or `wind` or `lv_bat_liion_3_5_10`.
All components are tested with 100 % test coverage and hopefully many corner cases
caught.
There are extensive unit, integration and functional tests.
Tests are integrated into tox to ensure compatibility across some python
implementations.
These are: CPython 2.7, CPython 3.5, Python 3.6, CPython 3.7, PyPy2v6 and PyPy3v6
## Limitations
- Thread safety is not yet implemented because it seems to have little value.
- Entity types need to be valid [Python identifiers](https://docs.python.org/2/reference/lexical_analysis.html#identifiers).
- PyPy3 does not currently work under Windows 10 because of an unresolved [a bug in pypy](https://bitbucket.org/pypy/pypy/issues/2816/cannot-install-cppyy-on-windows).
## Tests
This package uses
[`unittest`](https://docs.python.org/3.4/library/unittest.html)
for writing tests,
[`nose`](https://nose.readthedocs.org/en/latest/)
for test discovery and
[`tox`](https://tox.readthedocs.org/en/latest/)
for running them on multiple python versions.
## Cloning the Source
git clone https://eprojects.offis.de/mosaik-eid/git/mosaik-eid.git
## Creating the Virtual Environment
Under Linux:
virtualenv -p python3.7 venv
Under Windows:
virtualenv -p "C:\Program Files\Python37\python.exe" venv
## Activating the Virtual Environment
Under BASH:
source venv/bin/activate
Under CMD:
venv/Scripts/activate
# Installing the Requirements
python -m pip install -r requirements.d/venv.txt
# Running the Tests
tox
## Testing the Coverage
python -m coverage html mosaik_eid/*.py
Under Linux
xdg-open htmlcov/index.html
Under Windows
start htmlcov/index.html
## Using the Library
>>> from mosaik_eid.eid_registry import EidRegistry
>>> e_type = EntityTypeRegistry.register(e_type='biogas')
>>> for _ in range(3):
... next(EidManager(e_type=e_type))
...
'biogas-0'
'biogas-1'
'biogas-2'
See `tests/functional` for more practical examples of intended use.
## Developing the Library
For development purposes,
use one of the virtual environment under .tox your choice.
## Freezing the Virtual Environment Requirements
Under Linux
venv/bin/python -m pip freeze --all > requirements.d/venv.txt
# And remove line beginning with package name
Under Windows
venv\Scripts\python -m pip freeze --all > requirements.d/venv.txt
# And remove line beginning with package name
## Freezing the Tox Requirements
Under Linux
.tox/py37/bin/python -m pip freeze --all > requirements.d/base.txt
# And remove line beginning with package name
Under Windows
.tox\py37\Scripts\python -m pip freeze --all > requirements.d/base.txt
# And remove line beginning with package name
Mosaik EID supports creating Mosaik scenarios by managing the identifiers of the
entities.
## Motivation
Traditionally, mosaik entities are created with hard coded names.
Mosaik EID intends to be easier to use and less error-prone than to hard coding values.
The clean and pythonic API encourages creating scenarios in a DRY fashion.
## Design
The package contains a parser, generator, data model and exceptions around creating such names.
The data model is based upon an
[`Enum`](https://docs.python.org/3/library/enum.html).
Building upon that is a manager which issues entity identifiers
based on the entity type and a serial number.
The entity manager implements the borg pattern and
can thus be instantiated at will without losing state.
There are some basic entity types predefined,
but they can be extended by registering additional types.
## Compatibility
It is allowed to register entity names with arbitrary capitalization,
for example `CHP`, `BioGas` or `wind` or `lv_bat_liion_3_5_10`.
All components are tested with 100 % test coverage and hopefully many corner cases
caught.
There are extensive unit, integration and functional tests.
Tests are integrated into tox to ensure compatibility across some python
implementations.
These are: CPython 2.7, CPython 3.5, Python 3.6, CPython 3.7, PyPy2v6 and PyPy3v6
## Limitations
- Thread safety is not yet implemented because it seems to have little value.
- Entity types need to be valid [Python identifiers](https://docs.python.org/2/reference/lexical_analysis.html#identifiers).
- PyPy3 does not currently work under Windows 10 because of an unresolved [a bug in pypy](https://bitbucket.org/pypy/pypy/issues/2816/cannot-install-cppyy-on-windows).
## Tests
This package uses
[`unittest`](https://docs.python.org/3.4/library/unittest.html)
for writing tests,
[`nose`](https://nose.readthedocs.org/en/latest/)
for test discovery and
[`tox`](https://tox.readthedocs.org/en/latest/)
for running them on multiple python versions.
## Cloning the Source
git clone https://eprojects.offis.de/mosaik-eid/git/mosaik-eid.git
## Creating the Virtual Environment
Under Linux:
virtualenv -p python3.7 venv
Under Windows:
virtualenv -p "C:\Program Files\Python37\python.exe" venv
## Activating the Virtual Environment
Under BASH:
source venv/bin/activate
Under CMD:
venv/Scripts/activate
# Installing the Requirements
python -m pip install -r requirements.d/venv.txt
# Running the Tests
tox
## Testing the Coverage
python -m coverage html mosaik_eid/*.py
Under Linux
xdg-open htmlcov/index.html
Under Windows
start htmlcov/index.html
## Using the Library
>>> from mosaik_eid.eid_registry import EidRegistry
>>> e_type = EntityTypeRegistry.register(e_type='biogas')
>>> for _ in range(3):
... next(EidManager(e_type=e_type))
...
'biogas-0'
'biogas-1'
'biogas-2'
See `tests/functional` for more practical examples of intended use.
## Developing the Library
For development purposes,
use one of the virtual environment under .tox your choice.
## Freezing the Virtual Environment Requirements
Under Linux
venv/bin/python -m pip freeze --all > requirements.d/venv.txt
# And remove line beginning with package name
Under Windows
venv\Scripts\python -m pip freeze --all > requirements.d/venv.txt
# And remove line beginning with package name
## Freezing the Tox Requirements
Under Linux
.tox/py37/bin/python -m pip freeze --all > requirements.d/base.txt
# And remove line beginning with package name
Under Windows
.tox\py37\Scripts\python -m pip freeze --all > requirements.d/base.txt
# And remove line beginning with package name
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for mosaik.EId-0.1.0rc20190329172415-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7eadff281061533c8c74e78216d37a34381aa046c597c5ee48f07a83c8953a67 |
|
MD5 | 743cd5057fd557aee85ecf7b959e7904 |
|
BLAKE2b-256 | d3d91cbc58baffa5182df4cfafd11dfd2e285d74e0a622f201d78f711d2f4507 |