Skip to content

Commit 7f1c6fc

Browse files
committed
updating development environments page
1 parent bac4cf6 commit 7f1c6fc

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

all.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3949,7 +3949,7 @@ <h2>Why is a development environment necessary?</h2>
39493949
applications. The text editor provides a way to write the code. The
39503950
interpreter allows it to be executed. Testing to see if the code does what
39513951
you want can either be done manually or by unit and functional tests. </p>
3952-
<h2>A full development environment example</h2>
3952+
<h2>A development environment example</h2>
39533953
<p>Here's what I (the author of Full Stack Python,
39543954
<a href="/about-author.html">Matt Makai</a>) use to develop most of my Python
39553955
applications. I have a Macbook Pro with Mac OS X as its base operating
@@ -3996,7 +3996,8 @@ <h2>Python-specific IDEs</h2>
39963996
free editions for students and open source projects.</p>
39973997
</li>
39983998
<li>
3999-
<p><a href="https://wingware.com/">WingIDE</a></p>
3999+
<p><a href="https://wingware.com/">Wing IDE</a> is a paid development environment with
4000+
integrated debugging and code completion.</p>
40004001
</li>
40014002
<li>
40024003
<p><a href="http://komodoide.com/">Komodo</a></p>
@@ -4040,6 +4041,11 @@ <h2>Development environment resources</h2>
40404041
<p>The <a href="http://docs.python-guide.org/en/latest/dev/env/">Hitchhiker's Guide to Python</a>
40414042
has a page dedicated to development environments.</p>
40424043
</li>
4044+
<li>
4045+
<p><a href="http://pedrokroger.net/choosing-best-python-ide/">Choosing the best Python IDE</a>
4046+
is a review of six IDEs. PyCharm, Wing IDE and PyDev stand out above the
4047+
other three in this review.</p>
4048+
</li>
40434049
</ul>
40444050
<h1>About the Author</h1>
40454051
<p>This website was written and built by
@@ -4067,6 +4073,7 @@ <h1>Change Log</h1>
40674073
<h2>2014</h2>
40684074
<h3>November</h3>
40694075
<ul>
4076+
<li>Revising development environments page and adding new resources.</li>
40704077
<li>Adding my new Flask blog post on choose your own adventure presentations
40714078
along with the open source repository.</li>
40724079
<li>More resources under Best Python Resources.</li>

change-log.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ <h1>Change Log</h1>
4646
<h2>2014</h2>
4747
<h3>November</h3>
4848
<ul>
49+
<li>Revising development environments page and adding new resources.</li>
4950
<li>Adding my new Flask blog post on choose your own adventure presentations
5051
along with the open source repository.</li>
5152
<li>More resources under Best Python Resources.</li>

development-environments.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h2>Why is a development environment necessary?</h2>
5151
applications. The text editor provides a way to write the code. The
5252
interpreter allows it to be executed. Testing to see if the code does what
5353
you want can either be done manually or by unit and functional tests. </p>
54-
<h2>A full development environment example</h2>
54+
<h2>A development environment example</h2>
5555
<p>Here's what I (the author of Full Stack Python,
5656
<a href="/about-author.html">Matt Makai</a>) use to develop most of my Python
5757
applications. I have a Macbook Pro with Mac OS X as its base operating
@@ -98,7 +98,8 @@ <h2>Python-specific IDEs</h2>
9898
free editions for students and open source projects.</p>
9999
</li>
100100
<li>
101-
<p><a href="https://wingware.com/">WingIDE</a></p>
101+
<p><a href="https://wingware.com/">Wing IDE</a> is a paid development environment with
102+
integrated debugging and code completion.</p>
102103
</li>
103104
<li>
104105
<p><a href="http://komodoide.com/">Komodo</a></p>
@@ -142,6 +143,11 @@ <h2>Development environment resources</h2>
142143
<p>The <a href="http://docs.python-guide.org/en/latest/dev/env/">Hitchhiker's Guide to Python</a>
143144
has a page dedicated to development environments.</p>
144145
</li>
146+
<li>
147+
<p><a href="http://pedrokroger.net/choosing-best-python-ide/">Choosing the best Python IDE</a>
148+
is a review of six IDEs. PyCharm, Wing IDE and PyDev stand out above the
149+
other three in this review.</p>
150+
</li>
145151
</ul>
146152
<div class="row">
147153
<div class="col-md-4">

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-11-11T16:50:58Z</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-11-12T08:53:32Z</updated></feed>

source/content/pages/11-misc/1102-development-environments.markdown

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interpreter allows it to be executed. Testing to see if the code does what
3333
you want can either be done manually or by unit and functional tests.
3434

3535

36-
## A full development environment example
36+
## A development environment example
3737
Here's what I (the author of Full Stack Python,
3838
[Matt Makai](/about-author.html)) use to develop most of my Python
3939
applications. I have a Macbook Pro with Mac OS X as its base operating
@@ -74,7 +74,8 @@ less expensive set up or a cloud-based development environment.
7474
built on [JetBrains](https://www.jetbrains.com/)' platform. There are
7575
free editions for students and open source projects.
7676

77-
* [WingIDE](https://wingware.com/)
77+
* [Wing IDE](https://wingware.com/) is a paid development environment with
78+
integrated debugging and code completion.
7879

7980
* [Komodo](http://komodoide.com/)
8081

@@ -108,3 +109,7 @@ up your application.
108109

109110
* The [Hitchhiker's Guide to Python](http://docs.python-guide.org/en/latest/dev/env/)
110111
has a page dedicated to development environments.
112+
113+
* [Choosing the best Python IDE](http://pedrokroger.net/choosing-best-python-ide/)
114+
is a review of six IDEs. PyCharm, Wing IDE and PyDev stand out above the
115+
other three in this review.

source/content/pages/11-misc/1104-change-log.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ the
2424

2525
## 2014
2626
### November
27+
* Revising development environments page and adding new resources.
2728
* Adding my new Flask blog post on choose your own adventure presentations
2829
along with the open source repository.
2930
* More resources under Best Python Resources.

0 commit comments

Comments
 (0)