Skip to content

Commit 41bb3d6

Browse files
committed
working on app dependencies page
1 parent dbc8ec0 commit 41bb3d6

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

application-dependencies.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h2>Why are application dependencies important?</h2>
8080
<p>Python web applications are built upon the work done by thousands of open
8181
source programmers. Application dependencies include not only web frameworks but
8282
also libraries for scraping, parsing, processing, analyzing, visualizing,
83-
and myriad other tasks. Python's ecosystem facilitates discovery, retrieval and
83+
and many other tasks. Python's ecosystem facilitates discovery, retrieval and
8484
installation so applications are easier for developers to create.</p>
8585
<h2>Finding libraries</h2>
8686
<p>Python libraries are stored in a central location known as the
@@ -89,10 +89,10 @@ <h2>Finding libraries</h2>
8989
keyword terms.</p>
9090
<p>Besides PyPi there are numerous resources that list common or "must-have"
9191
libraries. Ultimately the decision for which application dependencies are
92-
necessary for your project is up to you. However, it's useful to browse
93-
through these lists in case you come across a reusable library to solve
94-
problems you'd otherwise have to rewrite yourself. Some of the best collections
95-
of Python libraries are</p>
92+
necessary for your project is up to you and the functionality you're looking
93+
to build. However, it's useful to browse through these lists in case you come
94+
across a library to solve a problem by reusing the code instead of writing it
95+
all yourself. A few of the best collections of Python libraries are</p>
9696
<ul>
9797
<li>
9898
<p><a href="https://wiki.python.org/moin/UsefulModules">Python.org's useful modules</a>

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>2014-04-04T14:17:36Z</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>2014-04-05T08:25:09Z</updated></feed>

source/content/pages/09-application-dependencies/0901-application-dependencies.markdown

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ that are required to create and run your application.
1313
Python web applications are built upon the work done by thousands of open
1414
source programmers. Application dependencies include not only web frameworks but
1515
also libraries for scraping, parsing, processing, analyzing, visualizing,
16-
and myriad other tasks. Python's ecosystem facilitates discovery, retrieval and
16+
and many other tasks. Python's ecosystem facilitates discovery, retrieval and
1717
installation so applications are easier for developers to create.
1818

19+
1920
## Finding libraries
2021
Python libraries are stored in a central location known as the
2122
[Python Package Index](https://pypi.python.org/pypi) (PyPi). PyPi contains
@@ -24,10 +25,10 @@ keyword terms.
2425

2526
Besides PyPi there are numerous resources that list common or "must-have"
2627
libraries. Ultimately the decision for which application dependencies are
27-
necessary for your project is up to you. However, it's useful to browse
28-
through these lists in case you come across a reusable library to solve
29-
problems you'd otherwise have to rewrite yourself. Some of the best collections
30-
of Python libraries are
28+
necessary for your project is up to you and the functionality you're looking
29+
to build. However, it's useful to browse through these lists in case you come
30+
across a library to solve a problem by reusing the code instead of writing it
31+
all yourself. A few of the best collections of Python libraries are
3132

3233
* [Python.org's useful modules](https://wiki.python.org/moin/UsefulModules)
3334
which groups modules into categories.

0 commit comments

Comments
 (0)