flask/flask_website/listings/projects.py

251 lines
10 KiB
Python
Raw Normal View History

2010-07-15 19:25:23 +02:00
# -*- coding: utf-8 -*-
from urlparse import urlparse
from flask import Markup
class Project(object):
def __init__(self, name, url, description, source=None):
self.name = name
self.url = url
self.description = Markup(description)
self.source = source
@property
def host(self):
return urlparse(self.url)[1]
@property
def sourcehost(self):
if self.source is not None:
return urlparse(self.source)[1]
2010-07-23 13:03:29 +01:00
def to_json(self):
rv = vars(self).copy()
rv['description'] = unicode(rv['description'])
return rv
2010-07-15 19:25:23 +02:00
projects = {
'websites': [
Project('Flask Website', 'http://flask.pocoo.org/', '''
<p>
The website of the Flask microframework itself including the
mailinglist interface, snippet archive and extension registry.
'''),
Project('Brightonpy', 'http://brightonpy.org/', '''
<p>
The website of the Brighton Python User Group
''', source='http://github.com/j4mie/brightonpy.org/'),
Project('vlasiku.lojban.org', 'http://vlasisku.lojban.org/', '''
<p>
An intelligent search engine for the Lojban dictionary.
'''),
Project(u's h o r e … software development', 'http://shore.be/', '''
<p>Corporate website of Shore Software Development.
'''),
# this one might change URL soon, check on each update
Project('rdrei.net', 'http://new.rdrei.net/', '''
<p>Personal website of Pascal Hartig.
'''),
2010-07-15 19:52:53 +02:00
Project(u'RydeHunters HFFPS', 'http://rydehhffps.org.au/', u'''
2010-07-15 19:50:49 +02:00
<p>The website of the RydeHunters Hill Flora and Fauna Society.
2010-07-15 22:55:02 +02:00
'''),
Project('Red Bank Creative', 'http://www.redbankcreative.org/', '''
<p>
Local community meetup site for Red Bank, NJ powered
by Flask and running on GAE.
'''),
Project('Meetup Meeter', 'http://meetupmeeter.com/', u'''
<p>
Meetup Meeter is a tool for you to know who you have and have not
met at a particular meetup event.
2010-07-28 02:27:14 +02:00
'''),
Project('newsmeme', 'http://thenewsmeme.com/', u'''
<p>
A hackernews/reddit clone written with Flask and
various Flask extensions.
''', source='http://bitbucket.org/danjac/newsmeme'),
Project('ymasuda.jp', 'http://ymasuda.jp/', u'''
<p>
Personal website of Yasushi Masuda.
'''),
Project('Python DoJoe', 'http://pythondojoe.appspot.com/', u'''
<p>
Website of Python DoJoe - a gathering of Python hackers
2010-08-03 22:17:53 +02:00
'''),
Project('Steven Harms\' Website', 'http://www.sharms.org/', u'''
<p>
Personal website of Steven Harms.
''', source='http://github.com/sharms/HomePage'),
Project('einfachJabber.de', 'http://einfachjabber.de', u'''
<p>
Website of a German jabber community.
2010-08-16 18:02:31 +02:00
'''),
Project('ThadeusB\'s Website', 'http://thadeusb.com/', u'''
<p>
Personal website of ThadeusB.
'''),
Project('learnbuffet.com', 'http://www.learnbuffett.com/', u'''
<p>
Learn trading and make significant profits statistically.
'''),
Project('was it up?', 'http://wasitup.com/', u'''
<p>
A website monitoring service.
'''),
2010-09-11 16:30:32 -07:00
Project('Eugen\'s Blog', 'http://blog.eugenkiss.com/', u'''
<p>
Personal Website of Eugen Kiss.
2010-09-11 16:36:51 -07:00
''', source='http://github.com/eugenkiss/Simblin'),
Project('Blueslug', 'http://blueslug.com/', u'''
<p>
A flask-powered anti-social delicious clone
2010-09-21 01:28:55 +02:00
'''),
Project('Comiker', 'http://www.comiker.com/', u'''
<p>
A website where you can create webcomics and vote for the
best ones.
'''),
Project('weluse GmbH', 'http://weluse.de/', u'''
<p>
A German corporate website.
2011-01-21 17:22:56 +01:00
'''),
Project('Papyrus Research', 'http://www.papyrusresearch.com/', u'''
<p>
The website of Papyrus Research, a market research company.
2011-01-24 03:50:42 +01:00
'''),
Project('Viewfinder', 'http://viewfinder.io/', u'''
<p>
A website that helps you find photos you'll like on Flickr.
2011-02-06 11:41:00 +01:00
'''),
Project('Daily Lyric', 'http://dailylyric.appspot.com/', u'''
<p>
Gives a random song lyric every day
'''),
Project('Nexuo Community', 'http://community.nuxeo.com/', u'''
<p>
Activity stream aggregator and umbrella home page for the Nuxeo
Open Source ECM project sites.
''', source='https://github.com/sfermigier/nuxeo.org'),
Project('Planete GT LL', 'http://www.gt-logiciel-libre.org/', u'''
<p>
News aggregator for the open source workgroup of the Paris Region
innovation cluster, Systematic.
2011-02-13 19:30:09 +01:00
''', source='https://github.com/sfermigier/Planet-GTLL'),
Project('Battlefield3 Development News Aggregator',
'http://bf3.immersedcode.org/', u'''
<p>
Development news aggregator for Battlefield3. Tracks twitter
accounts and forum posts by DICE developers.
''', source='https://github.com/mitsuhiko/bf3-aggregator'),
Project('Media Queries', 'http://mediaqueri.es/', u'''
<p>
A collection of responsive web designs.
'''),
Project('Life Short, Coding More', 'http://www.liul.net/', u'''
<p>
Personal blog.
'''),
Project('Flask Feedback', 'http://feedback.flask.pocoo.org/', u'''
<p>
Website by the Flask project that collects feedback from
users.
2011-02-19 21:55:47 +01:00
''', source='https://github.com/mitsuhiko/flask-feedback'),
Project('pizje.ns-keip', 'http://pizje.ns-keip.ru/', u'''
<p>
Russian game website.
2011-02-19 22:11:07 +01:00
'''),
Project('Python Edinburgh', 'http://www.pythonedinburgh.org/', u'''
<p>
Website of the user group for Pythonistas in Edinburgh.
2011-02-21 13:08:19 +01:00
'''),
Project('Get Python 3', 'http://getpython3.net/', u'''
<p>
A website to collect feedback of Python third party
libraries about its compatibility with Python 3
2011-03-05 01:26:40 +01:00
''', source='https://github.com/baijum/getpython3'),
Project('Expert.io', 'http://expert.io/', u'''
<p>
Marketplace for your Expertise.
2011-05-08 00:15:59 +02:00
'''),
Project('ahall.org', 'http://ahall.org/', u'''
<p>
Alfred Hall on software development
2011-03-05 01:26:40 +01:00
''')
2010-07-15 19:25:23 +02:00
],
'apps': [
Project('960 Layout System', 'http://960ls.atomidata.com/', '''
<p>
The generator of the 960 Layout System is powered by Flask. It
generates downloadable 960 stylesheets.
'''),
Project('hg-review', 'http://review.stevelosh.com/', '''
<p>
hg-review is a code review system for Mercurial. It is available
GPL2 license.
''', source='http://bitbucket.org/sjl/hg-review/'),
Project('geocron', 'http://geocron.us/', '''
<p>
By combining your present location with the time of day, geocron
automates your life.
<p>
When you get to your Metro station during the commute home,
geocron can send a text message reading "Pick me up dear" to your
spouse.
'''),
Project('Cockerel', 'http://dcolish.github.com/Cockerel/', '''
<p>An Online Logic Assistent Based on Coq.
''', source='http://github.com/dcolish/Cockerel'),
Project('Ryshcate', 'http://ryshcate.leafstorm.us/', '''
<p>
Ryshcate is a Flask powered pastebin with sourcecode
available.
2010-07-21 18:02:51 +01:00
''', source='http://bitbucket.org/leafstorm/ryshcate/'),
Project(u'Übersuggest Keyword Suggestion Tool',
2010-07-21 18:07:03 +01:00
'http://suggest.thinkpragmatic.net/', u'''
2010-07-21 18:02:51 +01:00
<p>Übersuggest is a free tool that exploit the Google
suggest JSON API to get keyword ideas for your search marketing
campaign (PPC or SEO).
2010-07-26 12:18:28 +02:00
''', source='http://bitbucket.org/esaurito/ubersuggest'),
Project(u'@font-face { … }', 'http://fontface.kr/', u'''
<p>
@font-face is a web font hosting service for Hangul
fonts.
'''),
Project('Have they emailed me?', 'http://emailed-me.appspot.com/', '''
<p>
A mini-site for checking Google's GMail feed with Oauth.
2010-10-05 23:03:31 +02:00
''', source='http://github.com/lincolnloop/emailed-me'),
Project('Remar.kZ', 'http://remar.kz/', '''
<p>
Sometimes you use someone else's computer and find something
neat and interesting. Store it on Remar.kZ without having
to enter your credentials.
2011-01-24 12:24:04 +01:00
''', source='http://bitbucket.org/little_arhat/remarkz'),
Project('Dominion', 'http://alexanderweb.de:8080/', u'''
<p>
Domination is a clone of a well-known card game.
2011-01-24 12:25:01 +01:00
''', source='https://bitbucket.org/xoraxax/domination/'),
Project('jitviewer', 'https://bitbucket.org/pypy/jitviewer', '''
<p>
web-based tool to inspect the output of PyPy JIT log
2011-04-20 19:19:09 +02:00
'''),
Project('blohg', 'http://hg.rafaelmartins.eng.br/blohg/', '''
<p>
A mercurial based blog engine. Can be seen in action on
<a href="http://rafaelmartins.eng.br/">rafaelmartins.eng.br</a>.
''', source='http://hg.rafaelmartins.eng.br/blohg/'),
Project('pidsim-web', 'http://pidsim.rafaelmartins.eng.br/?source=en_US', '''
<p>
PID Controller simulator.
''', source='http://hg.rafaelmartins.eng.br/pidsim-web/')
2010-07-15 19:25:23 +02:00
]
}
# order projects by name
for _category in projects.itervalues():
_category.sort(key=lambda x: x.name.lower())
del _category