This tool auto generates (customizable) pydantic v2 Code to implement the BO4E-Schemas.
Project description
Python Template Repository including a tox.ini
, Unittests&Coverage, Pylint & MyPy Linting Actions and a PyPI Publishing Workflow
This is a template repository. It doesn't contain any useful code but only a minimal working setup for a Python project including:
- a basic project structure with
- tox.ini
- requirements.in
- and a requirements.txt derived from it
- an example class
- an example unit test (using pytest)
- ready to use Github Actions for
- pytest
- code coverage measurement (fails below 80% by default)
- pylint (only accepts 10/10 code rating by default)
- mypy (static type checks where possible)
- black code formatter check
- isort import order check
- codespell spell check (including an ignore list)
- ready-to-use publishing workflow for pypi (see readme section below)
By default, it uses Python version 3.12.
How to use this Repository on Your Machine
This introduction assumes that you have tox installed already (
see installation instructions) and that a .toxbase
environment
has been created.
.toxbase
is a project independent virtual environment-template for all the tox environments on your machine. If anything is weird during the tox installation or after the installation, try turning your computer off and on again before getting too frustrated.
Also on new windows machines it is possible that the execution policy is set to restricted and you are not allowed execute scripts. You can find detailed information here.
If this is the case, clone this repository and create the dev
environment on your machine.
tox -e dev
How to use with PyCharm
- Create a new project using existing sources with your local working copy of this repository as root directory. Choose
the path
your_repo/.tox/dev/
as path of the "previously configured interpreter". - Set the default test runner of your project to pytest.
- Set the
src
directory as sources root (via right click, docs). - Set the working directory of the unit tests to the project root (instead of the unittest directory).
How to use with VS Code
- Open the folder with VS Code.
- Select the python interpreter (official docs) which is created by tox. Open the command pallett with
CTRL + P
and typePython: Select Interpreter
. Select the interpreter which is placed in.tox/dev/Scripts/python.exe
under Windows or.tox/dev/bin/python
under Linux and macOS. - Setup pytest and pylint. Therefore we open the file
.vscode/settings.json
which should be automatically generated during the interpreter setup. Insert the following lines into the settings:
{
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
"pythonTestExplorer.testFramework": "pytest",
"python.testing.pytestArgs": ["unittests"],
"python.linting.pylintEnabled": true
}
- Create a
.env
file and insert the following line
For Windows:
PYTHONPATH=src;${PYTHONPATH}
For Linux and Mac:
PYTHONPATH=src:${PYTHONPATH}
This makes sure, that the imports are working for the unittests. At the moment I am not totally sure that it is the best practise, but it's getting the job done.
- Enjoy 🤗
Publishing on PyPI
This repository contains all necessary CI steps to publish any project created from it on PyPI. It uses the trusted publishers workflow as described in the official Python documentation. It just requires some manual adjustments/settings depending on your project:
- Fill out the metadata in the
pyproject.toml
; Namely the package name and the dependencies which should be in sync with yourrequirements.in
. - Uncomment the lines in
.github/workflows/python-publish.yml
- Create a new environment in your GitHub repository and call it
release
. - Set up a new trusted publisher in your PYPI account.
- PyPI Project Name: The name which you defined in the
pyproject.toml
is the name of the project which you have to enter here. - Owner: The GitHub organization name or GitHub username that owns the repository
- Repository name: The name of the GitHub repository that contains the publishing workflow
- Workflow name: The filename of the publishing workflow. This file should exist in the .github/workflows/ directory in the repository configured above. Here in our case:
python-publish.yml
- Environment name: The name of the GitHub Actions environment that the above workflow uses for publishing. Here in our case:
release
- PyPI Project Name: The name which you defined in the
- Now create a release by clicking on "Create new release" in the right Github sidebar (or visit
github.com/your-username/your-reponame/releases/new
). This should trigger the workflow (see the "Actions" tab of your repo). - Check if the action failed. If it succeeded your PyPI account should now show the new project. It might take some minutes until the package can be installed via
pip install packagename
because the index has to be updated. - Now create another PyPI token with limited scope and update the Github repository secret accordingly.
Contribute
You are very welcome to contribute to this template repository by opening a pull request against the main branch.
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 Distribution
Built Distribution
Hashes for bo4e_python_generator-0.0.12.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cbcc1ac216567e816d76f45d1d3d06407529ac2d237eb94b4d7c9d0ed8a0a84 |
|
MD5 | 65e5d1c810db43fc340d13afc7ce1049 |
|
BLAKE2b-256 | 779495d0a2c47d1cfa41edd85e7f6ee448cf7750ed675cbe69b62f90589d3674 |
Hashes for bo4e_python_generator-0.0.12-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6902def1708b729c07f862ce037fd9defcb575c98267ed2f144d2606ebffe3f9 |
|
MD5 | bfe7273a2084d4ddc09ec6bf9ba3f45c |
|
BLAKE2b-256 | d4dd4fe7cf53528f70b66ada4566a19ed9de889fd2f20775dc13400321b335e4 |