Skip to main content

Repo to follow the Claudio Jolowicz's tutorial about Hypermodern Python (https://cjolowicz.github.io/posts/hypermodern-python-01-setup/)

Project description

hypermodern-python-tuto

Repo to follow the Claudio Jolowicz's tutorial about Hypermodern Python. It follows it until this release. After this one, I started adding further tools, deleting some that I consider useless and replacing some others.


Package Supported Python Versions PyPI version PyPI downloads
CI Tests status Documentation status Coverage status
Code Code quality pre-commit

Table of contents

Overview

The app created is a CLI application that queries a random Wikipedia page and displays its title and summary.

Install

pip install hypermodern-python-tuto

Use

Basic usage

Just run the following command:

hypermodern-python-tuto

Other options

Look at the documentation.

Tools used

Generic tools

Tools that can be used in every development project, no matter if it's a Python project or not.

Generic Python tools

Tools that can be used in every Python project, no matter its content.

Multi-purpose

  • PyPI, to install and publish Python packages
  • TestPyPI, PyPI but for testing purposes
  • poetry, to make development and distribution easy (packaging, virtualization, dependencies, launching and publishing)
  • nox, to run tasks in multiple Python environments (like tests, linting, reformatting, etc.)

Setup

  • pyenv, to manage Python versions

Test

  • pytest, a framework to write unit tests. Also used to run doctests
  • pytest-cov, to mesure the code coverage (degree to which the source code of a program is executed while running its test suite)
  • pytest-mock, to use the unittest mocking in the pytest way

Linting

Security

Formatting

  • black, to format the code
  • isort, to sort imports

Type checking

  • mypy, the classic type checker
  • typeguard, a runtime type checker

Documentation

  • Sphinx, the documentation tool used by the official Python documentation.
  • Read the Docs, to host the documentation.
  • autodoc, Sphinx official plugin to generate API documentation from the docstrings.
  • napoleon, Sphinx official plugin to allow compatibility with Google-style docstrings.
  • sphinx-autodoc-typehints, Sphinx plugin to detect type hints in generated documentation.

Specific Python tools

Tools to match specific needs of the projet.

UI

  • click, to create CLI applications

Communication

Data validation

  • marshmallow, to serialize, deserialize and validate data

I used marshmallow to follow the tutorial, but pydantic is more known, and I find it easier to use.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hypermodern_python_tuto-1.0.3.tar.gz (9.7 kB view hashes)

Uploaded Source

Built Distribution

hypermodern_python_tuto-1.0.3-py3-none-any.whl (9.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page