Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 10

Pylons combines the very best ideas from the worlds of Ruby, Python and Perl, providing a structured but extremely flexible Python web framework. It's also one of the first projects to leverage the emerging WSGI standard, which allows extensive re-use and flexibility but only if you need it. Out ... [More] of the box, Pylons aims to make web development fast, flexible and easy. [Less]

4.48077
   
  0 reviews  |  137 users  |  237,747 lines of code  |  128 current contributors  |  Analyzed 4 days ago
 
 

Routes is a Python re-implementation of the Rails routes system for mapping URL's to Controllers/Actions and generating URL's. Routes makes it easy to create pretty and concise URL's that are RESTful with little effort. Speedy and dynamic URL generation means you get a URL with ... [More] minimal cruft (no big dangling query args). Shortcut features like Named Routes cut down on repetitive typing. [Less]

4.57143
   
  0 reviews  |  39 users  |  4,769 lines of code  |  2 current contributors  |  Analyzed 4 months ago
 
 

CoActivate is the simple way to bring groups together, promote your cause, make plans, manage projects, and get things done. CoActivate offers free mailing lists, wikis, task tracking, team management, and blogs to help you build an online community and promote real-world change.

3.66667
   
  0 reviews  |  13 users  |  611,800 lines of code  |  5 current contributors  |  Analyzed about 1 month ago
 
 

TurboGears2 is a rapid development, full stack open source MVC web framework. Its aim is to simplify and speed up the development of modern web applications written in the Python programming language. The Turbogears2 version is a reinvention of the framework based on modern python technologies ... [More] like SQLAlchemy, Pylons and many other to provide the best possible experience you can expect from a full stack web framework. [Less]

4.66667
   
  0 reviews  |  13 users  |  20,088 lines of code  |  9 current contributors  |  Analyzed 4 days ago
 
 

PyAMF provides Action Message Format (AMF) support for Python that is compatible with the Adobe Flash Player. It includes integration with Python web frameworks like Django, Pylons, Twisted, SQLAlchemy, web2py and more. The Adobe Integrated Runtime and Adobe Flash Player use AMF to communicate ... [More] between an application and a remote server. AMF encodes remote procedure calls (RPC) into a compact binary representation that can be transferred over HTTP/HTTPS or the RTMP/RTMPS protocol. Objects and data values are serialized into this binary format, which increases performance, allowing applications to load data up to 10 times faster than with text-based formats such as XML or SOAP. [Less]

4.625
   
  0 reviews  |  11 users  |  23,913 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

PyroScope is a collection of tools for the BitTorrent protocol and especially the rTorrent client. It offers the following components: * a modern and versatile rTorrent web interface * rTorrent extensions like a queue manager and statistics * CommandLineTools for automation of ... [More] common tasks, like metafile creation Unlike other Python rTorrent projects, it's not in a zombie state. [Less]

5.0
 
  0 reviews  |  8 users  |  18,052 lines of code  |  1 current contributor  |  Analyzed 5 days ago
 
 

Zookeepr is a conference management system, originally developed for linux.conf.au. Zookeepr aims to be a one-stop-shop for your conference management needs. It's used for guiding the conference experience, from paper review, to delegate registration and to providing information at the ... [More] conference. People who would find Zookeepr immediately useful are organisers of technical conferences. As the rough edges are smoothed out, we hope that Zookeepr will fulfill the technical needs of most conferences. [Less]

4.33333
   
  0 reviews  |  4 users  |  93,757 lines of code  |  10 current contributors  |  Analyzed 5 months ago
 
 
Compare

nCMS is a Content Management application (CMS) written in Python using the Pylons framework. The project has been abandoned.

3.5
   
  0 reviews  |  2 users  |  23,911 lines of code  |  2 current contributors  |  Analyzed almost 4 years ago
 
 

DBSprocketsThe goal of DBSprockets is to give the developer the power to simply generate web content from available database definitions. Because DBSprockets relies heavily on Toscawidgets, it is framework-independent. It is easy to implement forms on TG, TG2, Pylons, Zope, and Grok using ... [More] DBSprockets' primitives. DBSprockets is mainly supporting SQLAlchemy, so any application you have that uses SQLAlchemy will be well supported. Support for other ORMs will be available in the future. Every component of DBSprockets is extensible so that the developer can override a form or a set of forms to his or her liking. One of the important implementations using DBSprockets is DBMechanic, which acts as a control board for your database crud. Current Version0.2.2, 0.5dev Dependent ongenshi>=0.5 sqlalchemy >=0.5 toscawidgets >=0.9.2 Supported FrameworksTurbogears 1.0 Turbogears 2.0 Grok InstallationIf you don't already have easy_install setup download ez_setup here. And execute it. With easy_install: easy_install dbsprockets more details. DeclarativesDeclaratives are the easiest way to get going with DBSprockets. FormBaseTake a look a the simplest example, a login form: from dbsprockets.declaratives import FormBase from myProject.myModel import User class LoginForm(FormBase): __model__ = User __limit_fields__ = 'username', 'password' login_form = LoginForm()In your template, you would render the form like this: ${login_form()}Here is what the form looks like: More information about the model that created this form. TableBaseAnd here is an example showing what it looks like to display a list of users: from dbsprockets.declaratives import TableBase from dbsprockets.primitives import get_table_value from myProject import User class UserTable(TableBase): __model__ = User user_table = UserTable() value = get_table_value(User) user_table(value=value)Which when rendered through a web framework looks something like this: Notice that the town name (Arvada) has been automatically added. Extensible APIThe power of DBSprockets is that every part of it is extensible so customizing forms, widget templates and other portions of your database view is made easier. Simply override the fields you want to change by name or type with what you want. Want a whole set of sprockets that have the same modification? No problem, create a Sprockets cache with your new defaults. more on DBSprocketsAPI DBMechanic Started as a replacement for Catwalk that works with Sqlalchemy. DBMechanic is a stand-alone TG2 controller for database viewing. UsageDBMechanic is easy to use! Here is an example of how to use it in TG 1.0: from myproject.model import metadata from dbsprockets.dbmechanic.frameworks.tg import DBMechanic from dbsprockets.saprovider import SAProvider dbmechanic = DBMechanic(SAProvider(metadata), '/dbmechanic')more on DBMechanic [Less]

0
 
  0 reviews  |  2 users  |  6,710 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

Project HQ is an open source project management tool somewhat based on activeCollab and Basecamp. It's goal is to remain a free, open source project management tool.

0
 
  0 reviews  |  2 users  |  9,752 lines of code  |  1 current contributor  |  Analyzed almost 2 years ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.