TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Static site generation on python

45 点作者 dfrodriguez143超过 12 年前

8 条评论

mixedbit超过 12 年前
Static sites are cool! I generate my blog with Tinkerer <a href="http://www.tinkerer.me" rel="nofollow">http://www.tinkerer.me</a> which is also Python and ReStructuredText based. Although Pelican seems to be more generic, while Tinkerer is mainly for blogs.
评论 #5218935 未加载
RandallBrown超过 12 年前
Probably should put what Pelican is on the homepage. It was weird having to go to the doc page to figure out what it actually was.
supar超过 12 年前
Does anyone have some experience with pelican (possibly liquidink) and rest2web?<p>There are many static website generators, but I'm looking into a python+ReST solution. I've been using rest2web a lot, and I really love it's simplicity compared to the other solutions. rest2web is really straightforward. In the end, it's the python-docutils module that does <i>most</i> of the work anyway, while rest2web simply collects the website structure.<p>The only downside is that rest2web lacks a bit of polish, and I really wished it would come with the ability to generate rss feeds for a particular tree or tag. I was thinking about writing a plugin, but I'm unsure.<p>pelican seem to be already be done for the purpose. Actually, pelican seem to target <i>mostly</i> blogs, while I actually just want "a feed of changes" for a particular directory tree. I don't want a blog-turned-into-a-website approach.<p>Does anybody had this problem? I'm really looking for feedback from people that used rest2web here and moved to pelican/liquidink, or back maybe. Figuring out the limitations of these tools require a long time investment and I cannot really decide by just trying it out on toy pages.
rplnt超过 12 年前
I tried pelican several times, but I always found it to be too complicated to what I want. I went through setup, generated some pages and when I started to tinker around with it I had a feeling it would be easier to write something from scratch.<p>Do you know any other static page generators, simpler and preferably in Python as well? Or should I just get over the first impression and go with the pelican?
评论 #5219124 未加载
评论 #5219175 未加载
评论 #5219800 未加载
评论 #5219639 未加载
BruceM超过 12 年前
I use Pelican on a couple of sites (like <a href="http://dylanfoundry.org/" rel="nofollow">http://dylanfoundry.org/</a>). One thing that I really like is that it is ReStructured Text, so most of the same things that I do with Sphinx for docs can carry over and the work that I've done with Pygments for syntax highlighting, still applies.<p>There's some room for improvement here and there, but it works pretty well and was easy to get going.
评论 #5218308 未加载
评论 #5218779 未加载
mahmoudimus超过 12 年前
Definitely love pelican as well. I've generated <a href="http://mahmoudimus.com/blog" rel="nofollow">http://mahmoudimus.com/blog</a> with it and it's just fantastic.<p>Plus, I can use ReST -- a lot of the other static site generators just focus on Markdown. If you use python, ReST is your bread and butter.
traeblain超过 12 年前
Love Pelican. Found it to be simplest "blog aware" generator for Python I could find. Because it keeps maturing, there's a ton of stuff you can do with it. But simply propping it up and starting a site, was amazingly easy.<p>`pelican-quickstart` and you are up and running.
dfrodriguez143超过 12 年前
I am considering moving from Jekyll to Pelical just because is python.