Hello I am looking for blog engine written in Flask, I found very few in github and those were not full featured blog engine, so If some one has written it or planning to write I would like to extend my help.Bascially I am interested to shift my blog from http://kracekumar.wordpress.com. -- * "Talk is cheap, show me the code" - Linus Torvalds Winning Regards KraceKumar.R http://kracekumar.wordpress.com +91-97906-58304 * *+91-85530-29521* * *
try this blog app: https://github.com/laoqiu/pypress 2011/9/30 kracekumar ramaraju <kracethekingmaker@gmail.com> > Hello > > I am looking for blog engine written in Flask, I found very few in > github and those were not full featured blog engine, so If some one has > written it or planning to write I would like to extend my help.Bascially I > am interested to shift my blog from http://kracekumar.wordpress.com. > > > -- > * > "Talk is cheap, show me the code" - Linus Torvalds > Winning Regards > KraceKumar.R > http://kracekumar.wordpress.com > +91-97906-58304 > * > *+91-85530-29521* > * > * > > -- Regards, Znetor Website: http://znetor.tk
What features are you looking for, and do you need it to be multi-tenant? I am in the process of writing a blog app for Flask that uses Neo4j ( http://neo4j.org/) and Bulbs (http://bulbflow.com/) to hook into the Facebook social graph. - James On Thu, Sep 29, 2011 at 8:13 PM, znetor <znetor@gmail.com> wrote: > try this blog app: > > https://github.com/laoqiu/pypress > > > > 2011/9/30 kracekumar ramaraju <kracethekingmaker@gmail.com> > >> Hello >> >> I am looking for blog engine written in Flask, I found very few in >> github and those were not full featured blog engine, so If some one has >> written it or planning to write I would like to extend my help.Bascially I >> am interested to shift my blog from http://kracekumar.wordpress.com. >> >> >> -- >> * >> "Talk is cheap, show me the code" - Linus Torvalds >> Winning Regards >> KraceKumar.R >> http://kracekumar.wordpress.com >> +91-97906-58304 >> * >> *+91-85530-29521* >> * >> * >> >> > > > -- > Regards, > Znetor > Website: http://znetor.tk > > -- Bulbflow: A Python framework for graph databases (http://bulbflow.com)
For its relative simplicity and mercurial goodness, I think this one looks interesting - http://blohg.org/
Hi @Philip: No interest in zine. The replacement I use for zine is rstblog: I need time to analyse this, I am looking for others review too. What features are you looking for, and do you need it to be multi-tenant? Mainly looking for - simple text editor which can distinguish code and normal text. - commenting system on its own or support for disqus. - search blog post. - archives. - tags. - twitter status. - later planning to put ad sense. If one or more feature is currently available it is fine, But I need a blogging engine in FLASK.
It might also be worth checking out this project: https://github.com/eugenkiss/Simblin (here is an associated blog post: http://eugenkiss.com/blog/2010/simblin/ ). It has basically everything you're after, has built in disqus support and uses Markdown by default for formatting. I used it, then pulled it apart and rewrote parts of it to use as a personal blog engine and it's holding up nicely. Very simple to customise too. -Mal On Sun, Oct 2, 2011 at 3:53 AM, kracekumar ramaraju <kracethekingmaker@gmail.com> wrote: > Hi > @Philip: No interest in zine. > The replacement I use for zine is rstblog: > I need time to analyse this, I am looking for others review too. > > What features are you looking for, and do you need it to be multi-tenant? > Mainly looking for > > simple text editor which can distinguish code and normal text. > commenting system on its own or support for disqus. > search blog post. > archives. > tags. > twitter status. > later planning to put ad sense. > > If one or more feature is currently available it is fine, But I need a > blogging engine in FLASK. > > > >
I started work on one several months ago, but haven't worked on it much: https://github.com/kennethreitz/mead -- Kenneth Reitz On Saturday, October 1, 2011 at 12:53 PM, kracekumar ramaraju wrote: > Hi > > @Philip: No interest in zine. > > The replacement I use for zine is rstblog: > > I need time to analyse this, I am looking for others review too. > > What features are you looking for, and do you need it to be multi-tenant? > > Mainly looking for > simple text editor which can distinguish code and normal text. > commenting system on its own or support for disqus. > search blog post. > archives. > tags. > twitter status. > later planning to put ad sense. > > If one or more feature is currently available it is fine, But I need a blogging engine in FLASK. > > > >
There's http://zine.pocoo.org/ written by Armin Ronacher himself. Although it doesn't seem to have been updated lately. On Thu, Sep 29, 2011 at 3:48 PM, kracekumar ramaraju <kracethekingmaker@gmail.com> wrote: > Hello > I am looking for blog engine written in Flask, I found very few in github > and those were not full featured blog engine, so If some one has written it > or planning to write I would like to extend my help.Bascially I am > interested to shift my blog from http://kracekumar.wordpress.com. > > -- > "Talk is cheap, show me the code" - Linus Torvalds > Winning Regards > KraceKumar.R > http://kracekumar.wordpress.com > +91-97906-58304 > +91-85530-29521 > >
Hi, On 2011-09-29 9:51 PM, Philip Cammarata wrote: > There's http://zine.pocoo.org/ written by Armin Ronacher himself. > Although it doesn't seem to have been updated lately. Also it's written with Werkzeug itself and not Flask. Regarding Zine I found out that I hate blogs and instead prefer static files tracked by mercurial/git with a generate script. That's how my blog currently operates. The replacement I use for zine is rstblog: - http://github.com/mitsuhiko/rstblog - http://github.com/mitsuhiko/lucumr Regards, Armin
Le 29/09/2011 22:53, Armin Ronacher a écrit : > Regarding Zine I > found out that I hate blogs and instead prefer static files tracked by > mercurial/git with a generate script. Hi, There really is two parts in this idea: 1. Have your data (post contents) in text files rather that a database 2. Generate static HTML files instead of running code on the server I wrote Frozen-Flask to do the second part: http://packages.python.org/Frozen-Flask/ Regards, -- Simon Sapin
I really like this idea. Using a VCS to store your site's evolution instead of a CMS. Doing blogs this way though, what would be a good way to handle updates from external sources, such as comments? On Thu, Sep 29, 2011 at 5:58 PM, Simon Sapin <simon.sapin@exyr.org> wrote: > Le 29/09/2011 22:53, Armin Ronacher a écrit : > > Regarding Zine I > > found out that I hate blogs and instead prefer static files tracked by > > mercurial/git with a generate script. > > Hi, > > There really is two parts in this idea: > > 1. Have your data (post contents) in text files rather that a database > 2. Generate static HTML files instead of running code on the server > > I wrote Frozen-Flask to do the second part: > http://packages.python.org/Frozen-Flask/ > > Regards, > -- > Simon Sapin >
You could probably use Disqus for comments? On Thu, Sep 29, 2011 at 3:14 PM, Joe Esposito <espo58@gmail.com> wrote: > I really like this idea. Using a VCS to store your site's evolution instead > of a CMS. Doing blogs this way though, what would be a good way to handle > updates from external sources, such as comments? > > > On Thu, Sep 29, 2011 at 5:58 PM, Simon Sapin <simon.sapin@exyr.org> wrote: > >> Le 29/09/2011 22:53, Armin Ronacher a écrit : >> > Regarding Zine I >> > found out that I hate blogs and instead prefer static files tracked by >> > mercurial/git with a generate script. >> >> Hi, >> >> There really is two parts in this idea: >> >> 1. Have your data (post contents) in text files rather that a database >> 2. Generate static HTML files instead of running code on the server >> >> I wrote Frozen-Flask to do the second part: >> http://packages.python.org/Frozen-Flask/ >> >> Regards, >> -- >> Simon Sapin >> > >