我正在考虑使用Google Analytics在我的静态网站上显示我的网页浏览量,这似乎是一项相当有用的工作。
是否可以设置一个Python文件来保存视图计数器,而只需在加载页面时添加一个文件,而不是这样做?
如果Google Analytics方式很简单,有人可以举例说明吗?
答案 0 :(得分:0)
对于谷歌分析,假设你知道js,你可以使用google analytics api阅读:https://developers.google.com/analytics/solutions/articles/gdataAnalyticsCharts
看起来很简单,但是如果你想使用python ......
这应该不是很难。快速回答是您可以从提供静态文件更改为使用python。您可以将静态文件存储到say,index.html中,如下所示:
<html>
...html...
<h1>views: |views|</h1>
...html...
</html>
和python do:
page=open('index.html').read()
views=open('views.txt').read()
...read and increment and re-write ...
page.replace('|views|', views)
print page
然而,这不会起作用。您的网络服务器将返回python文件而不执行它。但是,这不应该太难,只需搜索您正在使用的任何服务器。