Skip to content

Commit e7f08b6

Browse files
committed
update ch3
1 parent 2d917ee commit e7f08b6

22 files changed

+22
-22
lines changed

content/pages/03-data/01-databases.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Databases
22
category: page
33
slug: databases
4-
sortorder: 0902
4+
sortorder: 0301
55
toc: False
66
sidebartitle: Relational Databases
77
meta: Relational databases serve the critical role of persisting data in many Python applications.

content/pages/03-data/02-postgresql.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: PostgreSQL
22
category: page
33
slug: postgresql
4-
sortorder: 0903
4+
sortorder: 0302
55
toc: False
66
sidebartitle: PostgreSQL
77
meta: PostgreSQL is an open source relational database commonly used with Python applications.

content/pages/03-data/03-mysql.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: MySQL
22
category: page
33
slug: mysql
4-
sortorder: 0904
4+
sortorder: 0303
55
toc: False
66
sidebartitle: MySQL
77
meta: MySQL is an open source database often used by Python developers for storing and retrieving data.

content/pages/03-data/04-sqlite.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: SQLite
22
category: page
33
slug: sqlite
4-
sortorder: 0905
4+
sortorder: 0304
55
toc: False
66
sidebartitle: SQLite
77
meta: SQLite is an relational database built into the Python standard library that uses a single file to store data.

content/pages/03-data/05-object-relational-mappers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Object-relational Mappers (ORMs)
22
category: page
33
slug: object-relational-mappers-orms
4-
sortorder: 0906
4+
sortorder: 0305
55
toc: False
66
sidebartitle: Object-relational Mappers
77
meta: Object-relational mappers (ORMs) bridge relational databases and object-oriented code. Learn more on Full Stack Python.

content/pages/03-data/06-sqlalchemy.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: SQLAlchemy
22
category: page
33
slug: sqlalchemy
4-
sortorder: 0907
4+
sortorder: 0306
55
toc: False
66
sidebartitle: SQLAlchemy
77
meta: SQLAlchemy is a popular Python-based object-relational mapper (ORM) that bridges database relations into objects.

content/pages/03-data/07-peewee.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Peewee
22
category: page
33
slug: peewee
4-
sortorder: 0908
4+
sortorder: 0307
55
toc: False
66
sidebartitle: Peewee
77
meta: Peewee is a object-relational mapper (ORM) implementation for bridging relational data and Python objects.

content/pages/03-data/08-django-orm.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Django ORM
22
category: page
33
slug: django-orm
4-
sortorder: 0909
4+
sortorder: 0308
55
toc: False
66
sidebartitle: Django ORM
77
meta: Django comes with a default object-relational mapping layer for multiple backends in Python web apps.

content/pages/03-data/09-sqlobject.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: SQLObject
22
category: page
33
slug: sqlobject
4-
sortorder: 0910
4+
sortorder: 0309
55
toc: False
66
sidebartitle: SQLObject
77
meta: SQLObject is an object-relational mapper (ORM) library for Python applications.

content/pages/03-data/10-pony-orm.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Pony ORM
22
category: page
33
slug: pony-orm
4-
sortorder: 0911
4+
sortorder: 0310
55
toc: False
66
sidebartitle: Pony ORM
77
meta: Pony is an object-relational mapper (ORM) library for Python applications.

0 commit comments

Comments
 (0)