Skip to content

Commit 1d8ad47

Browse files
committed
creating new python-specific section of web analytics based on issue mattmakai#51
1 parent 20cb90a commit 1d8ad47

File tree

8 files changed

+38
-21
lines changed

8 files changed

+38
-21
lines changed

all.html

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,11 +1418,6 @@ <h2>Flask resources</h2>
14181418
<a href="https://stormpath.com/blog/build-a-flask-app-in-30-minutes/">building a Flask app in 30 minutes</a>.</p>
14191419
</li>
14201420
<li>
1421-
<p><a href="http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/">Building an Analytics App with Flask</a>
1422-
is a detailed walkthrough for collecting and analyzing webpage
1423-
analytics with your own Flask app.</p>
1424-
</li>
1425-
<li>
14261421
<p>Nice post by Jeff Knupp on <a href="http://www.jeffknupp.com/blog/2014/01/29/productionizing-a-flask-application/">Productionizing a Flask App</a>.</p>
14271422
</li>
14281423
<li>
@@ -5097,10 +5092,12 @@ <h2>Hosted web analytics services</h2>
50975092
movements. </p>
50985093
</li>
50995094
</ul>
5100-
<h2>Web analytics resources</h2>
5095+
<h2>Python-specific web analytics resources</h2>
51015096
<ul>
51025097
<li>
5103-
<p><a href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a> </p>
5098+
<p><a href="http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/">Building an Analytics App with Flask</a>
5099+
is a detailed walkthrough for collecting and analyzing webpage
5100+
analytics with your own Flask app.</p>
51045101
</li>
51055102
<li>
51065103
<p><a href="http://blog.yhathq.com/posts/pandas-google-analytics.html">Pandas and Google Analytics</a>
@@ -5112,6 +5109,12 @@ <h2>Web analytics resources</h2>
51125109
show how to extract your Google Analytics data via their web API and Python
51135110
helper library so it can be used in other tools such as Excel.</p>
51145111
</li>
5112+
</ul>
5113+
<h2>General web analytics resources</h2>
5114+
<ul>
5115+
<li>
5116+
<p><a href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a> </p>
5117+
</li>
51155118
<li>
51165119
<p>This beginner's guide to
51175120
<a href="http://www.seotakeaways.com/beginners-guide-maths-stats-web-analytics/">math and stats behind web analytics</a>
@@ -5343,6 +5346,9 @@ <h1>Change Log</h1>
53435346
<h2>2015</h2>
53445347
<h3>March</h3>
53455348
<ul>
5349+
<li>Updated the <a href="/web-analytics.html">web analytics</a> page with a new
5350+
Python-specific section for walkthroughs that are specific to building or
5351+
using analytics with Python applications.</li>
53465352
<li>Adding a slew of new <a href="/django.html">Django</a> resources.</li>
53475353
<li>Working on including Crossbar.io and Autobahn to the
53485354
<a href="/websockets.html">websockets</a> page.</li>

change-log.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ <h1>Change Log</h1>
4646
<h2>2015</h2>
4747
<h3>March</h3>
4848
<ul>
49+
<li>Updated the <a href="/web-analytics.html">web analytics</a> page with a new
50+
Python-specific section for walkthroughs that are specific to building or
51+
using analytics with Python applications.</li>
4952
<li>Adding a slew of new <a href="/django.html">Django</a> resources.</li>
5053
<li>Working on including Crossbar.io and Autobahn to the
5154
<a href="/websockets.html">websockets</a> page.</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-03-15T11:18:19Z</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-03-15T11:25:53Z</updated></feed>

flask.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,6 @@ <h2>Flask resources</h2>
147147
<a href="https://stormpath.com/blog/build-a-flask-app-in-30-minutes/">building a Flask app in 30 minutes</a>.</p>
148148
</li>
149149
<li>
150-
<p><a href="http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/">Building an Analytics App with Flask</a>
151-
is a detailed walkthrough for collecting and analyzing webpage
152-
analytics with your own Flask app.</p>
153-
</li>
154-
<li>
155150
<p>Nice post by Jeff Knupp on <a href="http://www.jeffknupp.com/blog/2014/01/29/productionizing-a-flask-application/">Productionizing a Flask App</a>.</p>
156151
</li>
157152
<li>

source/content/pages/04-web-development/03-flask.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,6 @@ Jökull Sólberg wrote a great piece articulating to this effect in his
121121
* Randall Degges wrote a detailed walkthrough for
122122
[building a Flask app in 30 minutes](https://stormpath.com/blog/build-a-flask-app-in-30-minutes/).
123123

124-
* [Building an Analytics App with Flask](http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/)
125-
is a detailed walkthrough for collecting and analyzing webpage
126-
analytics with your own Flask app.
127-
128124
* Nice post by Jeff Knupp on [Productionizing a Flask App](http://www.jeffknupp.com/blog/2014/01/29/productionizing-a-flask-application/).
129125

130126
* [Building Websites in Python with Flask](http://maximebf.com/blog/2012/10/building-websites-in-python-with-flask/#.U06EZ-ZdW4J)

source/content/pages/07-web-app-deployment/16-web-analytics.markdown

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ application before taking some action, such as purchasing your service.
8484
movements.
8585

8686

87-
## Web analytics resources
88-
* [Google Analytics for Developers](http://blog.arkency.com/2012/12/google-analytics-for-developers/)
87+
## Python-specific web analytics resources
88+
* [Building an Analytics App with Flask](http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/)
89+
is a detailed walkthrough for collecting and analyzing webpage
90+
analytics with your own Flask app.
8991

9092
* [Pandas and Google Analytics](http://blog.yhathq.com/posts/pandas-google-analytics.html)
9193
shows how to use pandas for data analysis with Google Analytics' API to
@@ -95,6 +97,10 @@ application before taking some action, such as purchasing your service.
9597
show how to extract your Google Analytics data via their web API and Python
9698
helper library so it can be used in other tools such as Excel.
9799

100+
101+
## General web analytics resources
102+
* [Google Analytics for Developers](http://blog.arkency.com/2012/12/google-analytics-for-developers/)
103+
98104
* This beginner's guide to
99105
[math and stats behind web analytics](http://www.seotakeaways.com/beginners-guide-maths-stats-web-analytics/)
100106
provides some context for understanding and reasoning about web traffic.

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ the
2626

2727
## 2015
2828
### March
29+
* Updated the [web analytics](/web-analytics.html) page with a new
30+
Python-specific section for walkthroughs that are specific to building or
31+
using analytics with Python applications.
2932
* Adding a slew of new [Django](/django.html) resources.
3033
* Working on including Crossbar.io and Autobahn to the
3134
[websockets](/websockets.html) page.

web-analytics.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,12 @@ <h2>Hosted web analytics services</h2>
107107
movements. </p>
108108
</li>
109109
</ul>
110-
<h2>Web analytics resources</h2>
110+
<h2>Python-specific web analytics resources</h2>
111111
<ul>
112112
<li>
113-
<p><a href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a> </p>
113+
<p><a href="http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/">Building an Analytics App with Flask</a>
114+
is a detailed walkthrough for collecting and analyzing webpage
115+
analytics with your own Flask app.</p>
114116
</li>
115117
<li>
116118
<p><a href="http://blog.yhathq.com/posts/pandas-google-analytics.html">Pandas and Google Analytics</a>
@@ -122,6 +124,12 @@ <h2>Web analytics resources</h2>
122124
show how to extract your Google Analytics data via their web API and Python
123125
helper library so it can be used in other tools such as Excel.</p>
124126
</li>
127+
</ul>
128+
<h2>General web analytics resources</h2>
129+
<ul>
130+
<li>
131+
<p><a href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a> </p>
132+
</li>
125133
<li>
126134
<p>This beginner's guide to
127135
<a href="http://www.seotakeaways.com/beginners-guide-maths-stats-web-analytics/">math and stats behind web analytics</a>

0 commit comments

Comments
 (0)