Skip to content

Commit f0807ff

Browse files
committed
Added ORM section
1 parent f79ff64 commit f0807ff

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

README.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ Before you head over, read the [Contribution Guide](CONTRIBUTING.md) first. You
7777
- [Redis](#redis)
7878
- [MemCached](#memcached)
7979
- [Apache Cassandra](#apache-cassandra)
80+
- [ORM](#orm)
81+
- [SQLAlchemy](#sqlalchemy)
82+
- [Django ORM](#django-orm)
83+
- [Tortoise](#tortoise)
84+
- [Peewee](#peewee)
85+
- [Pony ORM](#pony)
8086
- [Clean Code](#clean-code)
8187
- [Clean Architecture](#clean-architecture)
8288
- [Caching](#caching)
@@ -673,6 +679,61 @@ Before you head over, read the [Contribution Guide](CONTRIBUTING.md) first. You
673679
-[Clean Code in Python by Mariano Anaya](https://www.amazon.com/Clean-Code-Python-maintainable-efficient/dp/1800560214)
674680
- [Code Complete: A Practical Handbook of Software Construction, Second Edition by Steve Mcconnell](https://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670)
675681

682+
683+
- ### ORM
684+
685+
- ### SQLAlchemy
686+
687+
- **Documentation**
688+
- [SQLAlchemy documentation](https://docs.sqlalchemy.org/en/14/)
689+
690+
- **Tutorial**
691+
- [SQLAlchemy tutorials](https://www.sqlalchemy.org/library.html#tutorials)
692+
- [SQLAlchemy ORM tutorial](https://auth0.com/blog/sqlalchemy-orm-tutorial-for-python-developers/)
693+
694+
695+
- ### Django-ORM
696+
697+
- **Book**
698+
- [Django ORM cookbook](https://books.agiliq.com/projects/django-orm-cookbook/en/latest/) (by Agiliq)
699+
700+
- **Documentation**
701+
- [Django ORM documentation](https://docs.djangoproject.com/en/4.2/topics/db/)
702+
703+
- **Tutorial**
704+
- [Django ORM examples](https://github.com/django/django/tree/main/tests/queries) (in Django's official GitHub repository)
705+
- [Using Django ORM Outside Of Framework](https://abdus.dev/posts/django-orm-standalone/)
706+
- [How to use FastAPI with Django ORM and Admin](https://nsikakimoh.com/blog/fastapi-and-django-orm)
707+
708+
- ### Tortoise
709+
710+
- **Documentation**
711+
- [Tortoise ORM documentation](https://tortoise-orm.readthedocs.io/en/latest/)
712+
713+
- **Tutorial**
714+
- [Tortoise ORM tutorial](https://tortoise-orm.readthedocs.io/en/latest/examples.html)
715+
716+
- ### Peewee
717+
718+
- **Documentation**
719+
- [Peewee documentation](http://docs.peewee-orm.com/en/latest/index.html)
720+
721+
- **Tutorial**
722+
- [Peewee tutorial](http://docs.peewee-orm.com/en/latest/peewee/quickstart.html)
723+
- [Peewee ORM examples](https://github.com/coleifer/peewee/tree/master/examples)
724+
725+
- ### Pony
726+
727+
- **Documentation**
728+
- [Pony ORM documentation](https://docs.ponyorm.org/)
729+
730+
- **Tutorial**
731+
- [Pony ORM tutorial](https://docs.ponyorm.org/tutorials/first-steps.html)
732+
- [Pony ORM examples](https://github.com/ponyorm/pony/tree/master/examples)
733+
734+
735+
736+
676737
- ### Clean Architecture
677738

678739
(In Progress)

0 commit comments

Comments
 (0)