|
Content with label tutorial in Pylons Cookbook (See content from all spaces)
Related Labels:
database, sqlalchemy, paste, pylons, recipes, debugger, mako, templating, mvc, routes, rest, rdbms, relational, model, sacontext
Making a Pylons Blog
Updated for Pylons 0.9.6 and SQLAlchemy 0.4. For people who haven't used Pylons before, think about it like putting on a theatrical production. First of all you need a stage or backdrop, then we put together a script so we can ...
Other labels:
recipes, database, sqlalchemy, model
|
Routes for people in a hurry
Introduction Routes handles mapping URL's to controllers and their methods, or 'action's as Routes refers to them. By default, Pylons sets up the following route (found in YOURPROJ/config/routing.py): map.connect(':controller/:action/:id') A part of the path beginning with a {{:}} means that it is a variable ...
Other labels:
rest, routes
|
Pylons for people in a hurry
Pylons for people in a hurry This is one of a set of quick guides for getting started with the different components of Pylons. Introduction Pylons is a web framework for developing web applications. Working within a web framework is useful because, It ties together a bunch of useful libraries ...
Other labels:
mvc, pylons, paste
|
Mako for people in a hurry
Mako for people in a hurry This is one of a set of quick guides for getting started with the different components of Pylons. Introduction The template library deals with the 'view' portion of the Pylons library. It generates (X)HTML code, CSS and javascript that is sent to the browser. Static vs ...
Other labels:
templating, mako
|
Pylons debugger for people in a hurry
Pylons debugger for people in a hurry This is one of a set of quick guides for getting started with the different components of Pylons. Introduction When we have an error in our Pylons code we get the Error Traceback on a Pylons page. if the problem is not immediately ...
Other labels:
debugger
|
SQLAlchemy 0.3 for people in a hurry
SQLAlchemy 0.3 for people in a hurry This is a legacy document for users supporting existing applications with SAContext. New projects should follow Using SQLAlchemy with Pylons pylonsdocs:Using SQLAlchemy with Pylons instead, which takes advantage of SQLAlchemy 0.4's features and will be supported ...
Other labels:
sacontext, sqlalchemy, database
|
Relational databases for people in a hurry
Relational databases for people in a hurry This is one of a set of quick guides for getting started with the different components of Pylons. Introduction Data for Pylons applications is often stored in a relational database such as MySQL, Postgres or SQLite. SQLite is probably the simplest to set up. See ...
Other labels:
relational, rdbms, database
|
|
|