├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── ceja ├── __init__.py └── functions.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── test_functions.py └── test_readme_examples.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/README.md -------------------------------------------------------------------------------- /ceja/__init__.py: -------------------------------------------------------------------------------- 1 | from ceja.functions import * 2 | -------------------------------------------------------------------------------- /ceja/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/ceja/functions.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_readme_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/ceja/HEAD/tests/test_readme_examples.py --------------------------------------------------------------------------------