TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Python-based static site/blog generators?

10 pointsby martinchoover 11 years ago
Looking for something like Octopress in Python. Of course, I came across a number of options with a simple google search:<p>http:&#x2F;&#x2F;gistpages.com&#x2F;2013&#x2F;08&#x2F;12&#x2F;complete_list_of_static_site_generators_for_python<p>Not included in this is Nikola, which looks interesting:<p>http:&#x2F;&#x2F;getnikola.com&#x2F;<p>I am looking for feedback from first hand experience with any of these (or others).<p>Why Python? Because I am working with Python for a number of other projects and I&#x27;d like to stay in that domain if at all possible. Avoiding PHP for the same and other reasons.

6 comments

MaDeuceover 11 years ago
I&#x27;ve been using Pelican for over a year and have been pleased. It&#x27;s mature, but still has active development and a strong community. A few major features:<p><pre><code> * markup languages (reStructuredText, Markdown, etc.), * code highlighting via pygments * themeable * simple to use * support for automated deployment </code></pre> <a href="http://blog.getpelican.com/" rel="nofollow">http:&#x2F;&#x2F;blog.getpelican.com&#x2F;</a>
yummyfajitasover 11 years ago
I use Hyde and it works great for me.<p><a href="http://ringce.com/hyde" rel="nofollow">http:&#x2F;&#x2F;ringce.com&#x2F;hyde</a><p>My webpage uses it, feel free to steal everything besides the content:<p><a href="https://github.com/stucchio/homepage" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;stucchio&#x2F;homepage</a>
评论 #6863611 未加载
sw1tchf00tover 11 years ago
This works well if you want to start from a dynamic application: <a href="https://github.com/SimonSapin/Frozen-Flask" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;SimonSapin&#x2F;Frozen-Flask</a>
评论 #6863528 未加载
vikrantrathoreover 11 years ago
I am using tinkerer <a href="http://www.tinkerer.me/" rel="nofollow">http:&#x2F;&#x2F;www.tinkerer.me&#x2F;</a>, its very simple to change and manage and uses well known sphinx-doc with jinja templates. I like it a lot you can check my live site at <a href="http://www.vyomtech.com/" rel="nofollow">http:&#x2F;&#x2F;www.vyomtech.com&#x2F;</a>, since it uses boilerplate html 5 template its very easy to customize.
sharmiover 11 years ago
I use mynt. <a href="https://github.com/Anomareh/mynt" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Anomareh&#x2F;mynt</a> It is much simpler compared to hyde. The reason I chose mynt above other similar options is that, it allows for custom urls that made migrating my previous wordpress blog posts easier without having to resort to .htaccess magic.
评论 #6868394 未加载
amituover 11 years ago
I built and use djangothis[1] for my blog. It gives you most of the power and flexibility of django, like templates, arbitrary urls and views [which gets converted to static html], templatetags and a few other niceties.<p>[1]: <a href="https://github.com/amitu/djangothis/" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;amitu&#x2F;djangothis&#x2F;</a>.