Skip to content

Commit c1ecfaa

Browse files
committed
adding new resources based on issue mattmakai#56
1 parent 9c05346 commit c1ecfaa

6 files changed

Lines changed: 42 additions & 2 deletions

File tree

all.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3563,6 +3563,18 @@ <h3>Peewee resources</h3>
35633563
explains the connection pool and ExecutionContext of the ORM.</p>
35643564
</li>
35653565
<li>
3566+
<p><a href="http://charlesleifer.com/blog/dear-diary-an-encrypted-command-line-diary-with-python/">An encrypted command-line diary with Python</a>
3567+
is an awesome walkthrough explaining how to use SQLite, SQLCipher and
3568+
Peewee to create an encrypted file with your contents, diary or otherwise.</p>
3569+
</li>
3570+
<li>
3571+
<p>The <a href="http://docs.peewee-orm.com/en/latest/peewee/quickstart.html">official Peewee quickstart documentation</a>
3572+
along with the
3573+
<a href="http://docs.peewee-orm.com/en/latest/peewee/example.html">example Twitter clone app</a>
3574+
will walk you through the ins and outs of your first couple Peewee-powered
3575+
projects.</p>
3576+
</li>
3577+
<li>
35663578
<p><a href="http://charlesleifer.com/blog/shortcomings-in-the-django-orm-and-a-look-at-peewee-a-lightweight-alternative/">Shortcomings in the Django ORM and a look at Peewee</a>
35673579
from the author of the Peewee ORM explains how some of the design
35683580
decisions made in Peewee were in reaction to parts of the Django ORM
@@ -6408,6 +6420,8 @@ <h1>Change Log</h1>
64086420
<h2>2015</h2>
64096421
<h3>June</h3>
64106422
<ul>
6423+
<li>Added new Peewee resources on the
6424+
<a href="/object-relational-mappers-orms.html">ORMs page</a>.</li>
64116425
<li>Nice little update to the <a href="/object-relational-mappers-orms.html">ORMs page</a>
64126426
with a diagram showing that different ORMs can work with varying
64136427
web frameworks and backends.</li>

change-log.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ <h1>Change Log</h1>
4242
<h2>2015</h2>
4343
<h3>June</h3>
4444
<ul>
45+
<li>Added new Peewee resources on the
46+
<a href="/object-relational-mappers-orms.html">ORMs page</a>.</li>
4547
<li>Nice little update to the <a href="/object-relational-mappers-orms.html">ORMs page</a>
4648
with a diagram showing that different ORMs can work with varying
4749
web frameworks and backends.</li>

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-16T22:08:34Z</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-18T08:37:39Z</updated></feed>

object-relational-mappers-orms.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,18 @@ <h3>Peewee resources</h3>
323323
explains the connection pool and ExecutionContext of the ORM.</p>
324324
</li>
325325
<li>
326+
<p><a href="http://charlesleifer.com/blog/dear-diary-an-encrypted-command-line-diary-with-python/">An encrypted command-line diary with Python</a>
327+
is an awesome walkthrough explaining how to use SQLite, SQLCipher and
328+
Peewee to create an encrypted file with your contents, diary or otherwise.</p>
329+
</li>
330+
<li>
331+
<p>The <a href="http://docs.peewee-orm.com/en/latest/peewee/quickstart.html">official Peewee quickstart documentation</a>
332+
along with the
333+
<a href="http://docs.peewee-orm.com/en/latest/peewee/example.html">example Twitter clone app</a>
334+
will walk you through the ins and outs of your first couple Peewee-powered
335+
projects.</p>
336+
</li>
337+
<li>
326338
<p><a href="http://charlesleifer.com/blog/shortcomings-in-the-django-orm-and-a-look-at-peewee-a-lightweight-alternative/">Shortcomings in the Django ORM and a look at Peewee</a>
327339
from the author of the Peewee ORM explains how some of the design
328340
decisions made in Peewee were in reaction to parts of the Django ORM

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,16 @@ For now, we'll lump schema migration resources under ORM links below.
309309
* [Managing database connections with Peewee](http://charlesleifer.com/blog/managing-database-connections-with-peewee/)
310310
explains the connection pool and ExecutionContext of the ORM.
311311

312+
* [An encrypted command-line diary with Python](http://charlesleifer.com/blog/dear-diary-an-encrypted-command-line-diary-with-python/)
313+
is an awesome walkthrough explaining how to use SQLite, SQLCipher and
314+
Peewee to create an encrypted file with your contents, diary or otherwise.
315+
316+
* The [official Peewee quickstart documentation](http://docs.peewee-orm.com/en/latest/peewee/quickstart.html)
317+
along with the
318+
[example Twitter clone app](http://docs.peewee-orm.com/en/latest/peewee/example.html)
319+
will walk you through the ins and outs of your first couple Peewee-powered
320+
projects.
321+
312322
* [Shortcomings in the Django ORM and a look at Peewee](http://charlesleifer.com/blog/shortcomings-in-the-django-orm-and-a-look-at-peewee-a-lightweight-alternative/)
313323
from the author of the Peewee ORM explains how some of the design
314324
decisions made in Peewee were in reaction to parts of the Django ORM
@@ -341,4 +351,4 @@ For now, we'll lump schema migration resources under ORM links below.
341351
can be used.
342352

343353
* Ian Bicking presented on SQLObject back in 2004 with a talk on
344-
[SQLObject and Database Programming in Python](http://www.ianbicking.org/docs/sqlobject-presentation/sqlobject-and-database-programming.html).
354+
[SQLObject and Database Programming in Python](http://www.ianbicking.org/docs/sqlobject-presentation/sqlobject-and-database-programming.html).

source/content/pages/13-meta/02-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ the
1414

1515
## 2015
1616
### June
17+
* Added new Peewee resources on the
18+
[ORMs page](/object-relational-mappers-orms.html).
1719
* Nice little update to the [ORMs page](/object-relational-mappers-orms.html)
1820
with a diagram showing that different ORMs can work with varying
1921
web frameworks and backends.

0 commit comments

Comments
 (0)