-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
README.md.jinja
27 lines (20 loc) · 966 Bytes
/
README.md.jinja
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Awesome Pydantic [![Awesome](https://awesome.re/badge-flat.svg)](https://github.com/sindresorhus/awesome)
> A curated list of awesome things related to [Pydantic](https://pydantic-docs.helpmanual.io/).
These packages have not been vetted or approved by the pydantic team.
{% for category, repos in data.items() %}
## {{ category }}
{% for repo in repos %}
- [{{ repo.name }}]({{ repo.repo }}) 🌟({{ repo.stars }}) - {{ repo.description }}
{% endfor %}
{% endfor %}
## Contributing
Feel free to add your own package here by creating a PR. You just need to add an entry to the end line of [awesome.yaml](./awesome.yaml) file.
For example:
```yaml
- repo: https://github.com/tiangolo/fastapi
category: Web
# optional
name: FastAPI
description: FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints.
```
Then it will automate reordered by repository stars and category.