├── .devcontainer └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── FoccoERPy ├── __init__.py ├── exceptions.py └── handlers.py ├── LICENSE ├── README.md ├── makefile ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt └── tests ├── __init__.py ├── conftest.py └── test_focco.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /FoccoERPy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/FoccoERPy/__init__.py -------------------------------------------------------------------------------- /FoccoERPy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/FoccoERPy/exceptions.py -------------------------------------------------------------------------------- /FoccoERPy/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/FoccoERPy/handlers.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/makefile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pytest -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_focco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaNiziolek/FoccoERPy/HEAD/tests/test_focco.py --------------------------------------------------------------------------------