Skip to content

Commit cead504

Browse files
committed
updating link to database connectors
1 parent 657ce9c commit cead504

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

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>2013-12-12T12:55:44Z</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>2013-12-12T12:58:03Z</updated></feed>

index.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -339,11 +339,9 @@ <h2>Database third-party services</h2>
339339
<h2>Database connections with Python</h2>
340340
<p>To work with a relational database using Python, you need to use a code
341341
library. The most common libraries for relational databases are:</p>
342-
<ul class="simple">
343-
<li><a class="reference external" href="http://initd.org/psycopg/">psycopg2</a> for PostgreSQL</li>
344-
<li><a class="reference external" href="https://pypi.python.org/pypi/MySQL-python/1.2.4">MySQLdb</a> for MySQL</li>
345-
<li><a class="reference external" href="http://cx-oracle.sourceforge.net/">cx_Oracle</a> for Oracle</li>
346-
</ul>
342+
<p><a class="reference external" href="http://initd.org/psycopg/">psycopg2</a> for PostgreSQL</p>
343+
<p><a class="reference external" href="https://pypi.python.org/pypi/MySQL-python/1.2.4">MySQLdb</a> for MySQL</p>
344+
<p><a class="reference external" href="http://cx-oracle.sourceforge.net/">cx_Oracle</a> for Oracle</p>
347345
<p>SQLite support is built into Python 2.7+ and therefore a separate library
348346
is not necessary.</p>
349347
</div>

pages/database.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,9 @@ <h2>Database third-party services</h2>
8585
<h2>Database connections with Python</h2>
8686
<p>To work with a relational database using Python, you need to use a code
8787
library. The most common libraries for relational databases are:</p>
88-
<ul class="simple">
89-
<li><a class="reference external" href="http://initd.org/psycopg/">psycopg2</a> for PostgreSQL</li>
90-
<li><a class="reference external" href="https://pypi.python.org/pypi/MySQL-python/1.2.4">MySQLdb</a> for MySQL</li>
91-
<li><a class="reference external" href="http://cx-oracle.sourceforge.net/">cx_Oracle</a> for Oracle</li>
92-
</ul>
88+
<p><a class="reference external" href="http://initd.org/psycopg/">psycopg2</a> for PostgreSQL</p>
89+
<p><a class="reference external" href="https://pypi.python.org/pypi/MySQL-python/1.2.4">MySQLdb</a> for MySQL</p>
90+
<p><a class="reference external" href="http://cx-oracle.sourceforge.net/">cx_Oracle</a> for Oracle</p>
9391
<p>SQLite support is built into Python 2.7+ and therefore a separate library
9492
is not necessary.</p>
9593
</div>

source/content/pages/database.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,11 @@ Database connections with Python
5050
To work with a relational database using Python, you need to use a code
5151
library. The most common libraries for relational databases are:
5252

53-
* `psycopg2 <http://initd.org/psycopg/>`_ for PostgreSQL
54-
* `MySQLdb <https://pypi.python.org/pypi/MySQL-python/1.2.4>`_ for MySQL
55-
* `cx_Oracle <http://cx-oracle.sourceforge.net/>`_ for Oracle
53+
`psycopg2 <http://initd.org/psycopg/>`_ for PostgreSQL
54+
55+
`MySQLdb <https://pypi.python.org/pypi/MySQL-python/1.2.4>`_ for MySQL
56+
57+
`cx_Oracle <http://cx-oracle.sourceforge.net/>`_ for Oracle
5658

5759
SQLite support is built into Python 2.7+ and therefore a separate library
5860
is not necessary.

0 commit comments

Comments
 (0)