Skip to content

Commit 48ac3b6

Browse files
committed
fixing orms list
1 parent 2d7595e commit 48ac3b6

4 files changed

Lines changed: 18 additions & 13 deletions

File tree

all.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3377,12 +3377,14 @@ <h3>Shifting complexity from the database into the app code</h3>
33773377
increase the total amount of Python code instead of splitting code between
33783378
the application and the database stored procedures.</p>
33793379
<h2>Python ORM Implementations</h2>
3380-
<p>There are numerous ORM implementations written in Python, including
3381-
1. <a href="https://docs.djangoproject.com/en/1.8/topics/db/">The Django ORM</a>
3382-
1. <a href="http://www.sqlalchemy.org/">SQLAlchemy</a>
3383-
1. <a href="https://peewee.readthedocs.org/en/latest/">Peewee</a>
3384-
1. <a href="http://ponyorm.com/">PonyORM</a>
3385-
1. <a href="http://sqlobject.org/">SQLObject</a></p>
3380+
<p>There are numerous ORM implementations written in Python, including</p>
3381+
<ol>
3382+
<li><a href="https://docs.djangoproject.com/en/1.8/topics/db/">The Django ORM</a></li>
3383+
<li><a href="http://www.sqlalchemy.org/">SQLAlchemy</a></li>
3384+
<li><a href="https://peewee.readthedocs.org/en/latest/">Peewee</a></li>
3385+
<li><a href="http://ponyorm.com/">PonyORM</a></li>
3386+
<li><a href="http://sqlobject.org/">SQLObject</a></li>
3387+
</ol>
33863388
<p>There are several other ORMs, such as Canonical's
33873389
<a href="https://storm.canonical.com/">Storm</a>, but most of them do not appear to
33883390
currently be under active development. Learn more about the major ORMs

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-06-16T09:22:16Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-06-16T09:22:31Z</updated></feed>

object-relational-mappers-orms.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,14 @@ <h3>Shifting complexity from the database into the app code</h3>
137137
increase the total amount of Python code instead of splitting code between
138138
the application and the database stored procedures.</p>
139139
<h2>Python ORM Implementations</h2>
140-
<p>There are numerous ORM implementations written in Python, including
141-
1. <a href="https://docs.djangoproject.com/en/1.8/topics/db/">The Django ORM</a>
142-
1. <a href="http://www.sqlalchemy.org/">SQLAlchemy</a>
143-
1. <a href="https://peewee.readthedocs.org/en/latest/">Peewee</a>
144-
1. <a href="http://ponyorm.com/">PonyORM</a>
145-
1. <a href="http://sqlobject.org/">SQLObject</a></p>
140+
<p>There are numerous ORM implementations written in Python, including</p>
141+
<ol>
142+
<li><a href="https://docs.djangoproject.com/en/1.8/topics/db/">The Django ORM</a></li>
143+
<li><a href="http://www.sqlalchemy.org/">SQLAlchemy</a></li>
144+
<li><a href="https://peewee.readthedocs.org/en/latest/">Peewee</a></li>
145+
<li><a href="http://ponyorm.com/">PonyORM</a></li>
146+
<li><a href="http://sqlobject.org/">SQLObject</a></li>
147+
</ol>
146148
<p>There are several other ORMs, such as Canonical's
147149
<a href="https://storm.canonical.com/">Storm</a>, but most of them do not appear to
148150
currently be under active development. Learn more about the major ORMs

source/content/pages/05-data/04-object-relational-mappers.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ the application and the database stored procedures.
130130

131131
## Python ORM Implementations
132132
There are numerous ORM implementations written in Python, including
133+
133134
1. [The Django ORM](https://docs.djangoproject.com/en/1.8/topics/db/)
134135
1. [SQLAlchemy](http://www.sqlalchemy.org/)
135136
1. [Peewee](https://peewee.readthedocs.org/en/latest/)

0 commit comments

Comments
 (0)