Pylons is a lightweight web framework emphasizing flexibility and rapid development.
171
votes
14answers
44k views
Pros/Cons of Django vs Pylons
I'm begining a new webapp in Python. I've narrowed my choices down to Django and Pylons. What are the pros/cons of each?
29
votes
4answers
7k views
Should i use Pylons or pyramid
I'm moving form django to pylons but I found pylons and pyramid
what is the differences between pylons and pyramid and what should I start with
i red some texts in PylonsBook Cover pylons 0.9.7 if ...
22
votes
4answers
7k views
Is Pyramid ready/recommended for prime time?
I was wandering around testing various options for my new personal project, ranging from PHP, to node.js, to Haskell. I feel most comfortable with Python, though, so I thought I'd go back to it in the ...
14
votes
8answers
1k views
A simple Python deployment problem - a whole world of pain
We have several Python 2.6 applications running on Linux. Some of them are Pylons web applications, others are simply long-running processes that we run from the command line using nohup. We're also ...
11
votes
2answers
2k views
Is there a better way to switch between HTML and JSON output in Pyramid?
# /test{.format} no longer seems to work...
config.add_route('test', '/test.{ext}', view='ms.views.test')
views.py:
from pyramid.response import Response
from pyramid.renderers import render
...
11
votes
7answers
3k views
Is Pylons enterprise-ready?
I am a developer who is looking for an Enterprise-ready web application framework for Python. My main concern is long-term support, extensive feature set and reliability.
I have been experimenting ...
10
votes
2answers
798 views
Decorators vs. classes in python web development
I've noticed three main ways Python web frameworks deal request handing: decorators, controller classes with methods for individual requests, and request classes with methods for GET/POST.
I'm ...
9
votes
4answers
2k views
Ruby LESS gem equivalent in Python
The Ruby LESS gem looks awesome - and I am working on a Python/Pylons web project where it would be highly useful. CSS is, as someone we're all familiar with recently wrote about, clunky in some ...
9
votes
3answers
2k views
How to use OpenID in RESTful API?
I'm building Pylons-based web application with RESTful API, which currently lacks any authentication. So I'm going to implement that and in order to avoid all the trouble and caution with storing user ...
9
votes
7answers
3k views
Debug Pylons application through Eclipse
I have Eclipse setup with PyDev and love being able to debug my scripts/apps. I've just started playing around with Pylons and was wondering if there is a way to start up the paster server through ...
8
votes
4answers
539 views
Getting started with Pylons
I am just starting to use a web framework. I have decided I really like python and started looking at web frameworks. I don't really like django for a few reasons, but from what I have tried so far I ...
8
votes
4answers
2k views
Python Webframework Confusion
Could someone please explain to me how the current python webframworks fit together?
The three I've heard of are CherryPy, TurboGears and Pylons. However I'm confused because TurboGears seems to use ...
8
votes
2answers
1k views
Run Pylons controller as separate app?
I have a Pylons app where I would like to move some of the logic to a separate batch process. I've been running it under the main app for testing, but it is going to be doing a lot of work in the ...
8
votes
10answers
1k views
RDBMS & OOP-friendly Python web app framework?
Suppose your boss told you to choose a Python web application framework, and you would be wedded to it for at least the next 3 years.
What would you recommend?
Ground rules:
Python: Yes, ...
7
votes
5answers
137 views
Scale now or later?
I am looking to start developing a relatively simple web application that will pull data from various sources and normalizing it. A user can also enter the data directly into the site. I anticipate ...
7
votes
4answers
709 views
How to efficiently manage frequent schema changes using sqlalchemy?
I'm programming a web application using sqlalchemy. Everything was smooth during the first phase of development when the site was not in production. I could easily change the database schema by simply ...
7
votes
1answer
222 views
trouble getting pylint to find inherited methods in pylons/SA models
I have a Pylons app that I'm using SqlAlchemy declarative models for. In order to make the code a bit cleaner I add a .query onto the SA Base and inherit all my models from that.
So in my ...
7
votes
3answers
531 views
What is the best way to deploy a Pylons app?
There are many ways to deploy Pylons apps.
- Proxying through apache or nginx to paste
- Embedding the app with mod_wsgi
- using some edgy nginx+uwsgi combo
- and probably more...
I've read a lot ...
7
votes
9answers
3k views
Recommended IDE for developing Pylons apps
I have been reading through this wonderful website regarding the recommended Python IDEs and have narrowed it down to either
WingIDE
KomodoIDE
which you guys will recommend for the purpose of ...
7
votes
9answers
1k views
Pylons is confusing: help!
I'm a long-time PHP developer looking to try out Python for web development. I've used Python in the past a bit, but I'm still quite new at it.
I've taken a look at Pylons, and I have to say that ...
6
votes
2answers
151 views
Connection resets on (large) file upload
So I'm having a rather vexing issue with file uploads in Pylons that I'm hoping someone might be able to assist me with. Originally I posted the issue here thinking this was an issue with Pylons, but ...
6
votes
5answers
477 views
Equivalent of template context in Pyramid (pylons user)
What is the equivalent of template context in Pyramid?
Does the IBeforeRender event in pyramid have anything to with this? I've gone through the official documentation but diffcult to understand what ...
6
votes
2answers
467 views
How to connect to Cassandra inside a Pylons app?
I created a new Pylons project, and would like to use Cassandra as my database server. I plan on using Pycassa to be able to use cassandra 0.7beta.
Unfortunately, I don't know where to instantiate the ...
6
votes
2answers
410 views
Pylons and NodeJS / Comet
I'm building Pylons web applications that use a lot of jQuery and AJAX/JSON to make these apps more Web 2.0'ie. I've been looking at the server push technologies and have questions about how to do ...
6
votes
2answers
1k views
Handle mysql restart in SQLAlchemy
My Pylons app uses local MySQL server via SQLAlchemy and python-MySQLdb. When the server is restarted, open pooled connections are apparently closed, but the application doesn't know about this and ...
6
votes
2answers
2k views
Set AUTO_INCREMENT using SqlAlchemy with MySQL on Columns with non-primary keys?
I can't figure out how to set AUTO_INCREMENT on a UNIQUE column using SqlAlchemy 0.6.0 with MySQL 5.
I know this can be done in MySQL, but I don't want to have to distribute extra .sql scripts in ...
6
votes
1answer
322 views
How to create and restore a backup from SqlAlchemy?
I'm writing a Pylons app, and am trying to create a simple backup system where every table is serialized and tarred up into a single file for an administrator to download, and use to restore the app ...
6
votes
3answers
1k views
Trailing slashes in Pylons Routes
What is the best way to make trailing slashes not matter in the latest version of Routes (1.10)? I currently am using the clearly non-DRY:
map.connect('/logs/', controller='logs', action='logs')
...
5
votes
1answer
92 views
How to register a Pylons translator object?
I've got an application that runs in several processes (one webserver and few processes that are used for heavy calculations). The goal is to make these calculation processes return localized errors. ...
5
votes
1answer
225 views
Can I use paster on production site?
I am trying to set up Mediacore (which is a Pylons app) on a production server. The docs suggest either apache mod_fastcgi or mod_wsgi as webserver but I try to avoid apache at any cost because of its ...
5
votes
2answers
1k views
SQLAlchemy, clear database content but don't drop the schema
I'm developing a Pylons app which is based on exisitng database, so I'm using reflection. I have an SQL file with the schema that I used to create my test database. That's why I can't simply use ...
5
votes
3answers
345 views
PHP framework similar to Python Pylons
What is most similar PHP framework to Pylons?
I mean mostly ideology of programming.
5
votes
2answers
284 views
Getting a PasteScript error when I try to serve an existing Pylons app
I'm trying to serve an existing Python 2.5 Pylons application on OS X Snow Leopard.
I've already installed Python 2.5 and set it as the default Python installation, installed paster, and installed ...
5
votes
1answer
520 views
Where can I find good examples or tutorials for sqlalchemy-migrate
In this thread someone pointed me to use sqlalchemy-migrate to help with a fast-changing web application using sqlalchemy.
However a Do It Yourself method was also recommended consisting in manually ...
5
votes
5answers
641 views
Selecting a Python Web Framework
This may seem like a subjective question. But it is not (that's not the idea, at least).
I'm developing an Advertising software (like AdWords, AdBrite, etc) and i've decide to use Python. And would ...
5
votes
3answers
509 views
Django Pylons myths
I'm just starting with web frameworks and web development (I work only a little with PHP CI) and decided to move to python (I need language for general programing not only limited to web apps). I did ...
5
votes
3answers
250 views
Monitor Multiple Pylons Application
Are there any tools that I can run on my server to monitor multiple Pylons applications?
I need to monitor the number of requests each application receives, how much memory each application is using, ...
5
votes
2answers
258 views
Should I use Pylon's Paste to host my Pylons website? Or can I use Apache?
I'm looking into Pylons and was wondering, should I use Paste as the webserver or can I use Apache?
Are there advantages to using Paste?
Would you recommend against using Apache?
How should I host ...
5
votes
6answers
1k views
Pylons authentication?
Is there a one and true way to add authentication in Pylons? I've seen so many different ways, but most of them are either outdated or too complex. Is there a tutorial somewhere that explains how to ...
5
votes
1answer
331 views
How to set cookies with redirect in Pylons
In light of the cookie-handling bugs affecting Safari and Chrome (see this thread), and Pylons implementation of redirect_to as an exception, is it possible to reliably set a tracking cookie and ...
5
votes
1answer
312 views
Who's Online in Pylons
I currently have a Pylons application running with a basic user system set-up. I want to try and create a widget that shows the users that are currently logged on to the website. I'm not sure how I ...
5
votes
3answers
1k views
Python Image Uploading with AjaxUpload
I'm trying to use AjaxUpload with Python:
http://valums.com/ajax-upload/
I would like to know how to access the uploaded file with Python. On the web site, it says:
* PHP: $_FILES['userfile']
* ...
5
votes
4answers
519 views
Should my python web app use unicode for all strings?
I see some frameworks like Django using unicode all over the place so it seems like it might be a good idea.
On the other hand, it seems like a big pain to have all these extra 'u's floating around ...
5
votes
2answers
795 views
Pylons with Elixir
I would like to use Pylons with Elixir, however, I am not sure what is the best way to get about doing this. There are several blog posts (cleverdevil, beachcoder, adam hoscilo) and even an entire new ...
5
votes
3answers
2k views
Pylons error - 'MySQL server has gone away'
[I hope this isn't too obscure… I'll ask the newsgroup if nobody knows here]
I'm using Pylons (a python framework) to serve a simple web application, but it seems to die from time to time, ...
4
votes
2answers
476 views
Help improve my file upload method (Pyramid framework)
Currently, I am using the following method for uploading files (via HTML form) in Pyramid.
if request.params.get('form.submitted'):
upload_directory = os.getcwd() + '/myapp/static/uploads/'
...
4
votes
1answer
197 views
How to make file upload facultative with Deform and Colander?
I would like to render a form containing a sequence of files, representing different images of a product. Providing files should be facultative, so the form should validate even in the absence of ...
4
votes
2answers
240 views
Turbomail Integration with Pyramid
I am in need of a method to send an email from a Pyramid application. I know of the Pyramid_Mailer http://docs.pylonsproject.org/projects/pyramid_mailer/dev/ however it seems to have a fairly limited ...
4
votes
5answers
553 views
Python Web Framework for Small Team
I have 4 days off and I will use this time to rewrite our RoR (Ruby on Rails) Application in a python web framework just for fun ;-] (and why not make the switch, RoR is great but keep changing all ...
4
votes
1answer
162 views
Pylons REPL reevaluate code in running web server
I'm programming in python on a pre-existing pylons project (the okfn's ckan), but I'm a lisper by trade and used to that way of doing things.
Please correct me if I make false statements:
In pylons ...