15th April 2021
Projects⚑
-
Improvement: Show the changes of repository-orm 0.3.1.
- Add
first
andlast
methods to the repositories. - Make entity
id_
definition optional. - add
_model_name
attribute to entities.
- Add
Coding⚑
Python⚑
FastAPI⚑
-
New: Sum up the basic documentation.
Explain how to:
- Sending data to the server: Through path parameters, query parameters and body requests.
- Handle errors.
- Update data
- Configure OpenAPI
- Test FastAPI applications
And add a lot of more interesting features I've discovered.
Pytest⚑
-
New: Explain how to exclude code from the coverage report.
Add
# pragma: no cover
.
NetworkX⚑
-
New: Introduce the python library.
NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.
Pydantic⚑
-
New: Explain how to use private attributes.
With the
PrivateAttr
object.