Pylons Pylons is an cross-platform and an open source web application framework written in Python. It makes extensive use of the Web Server Gateway Interface standard to promote reusability and to separate functionality into distinct modules. It is strongly influenced by Ruby on Rails: two of ...
-4
votes
3answers
251 views
Best book or online tutorial for learning Python (and Pylon) [closed]
I recently got a job where I will need to learn python and the Pylon framework. I have previous RoR and PHP experience, but have never done anything in Python before.
Is there any book or tutorial ...
196
votes
14answers
49k views
Pros/Cons of Django vs Pylons [closed]
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?
4
votes
10answers
10k views
Which is faster, python webpages or php webpages?
Does anyone know how the speed of pylons(or any of the other frameworks) compares to a similar website made with php?
I know that serving a python base webpage via cgi is slower than php because of ...
4
votes
2answers
2k views
SQLAlchemy declarative syntax with autoload (reflection) in Pylons
I would like to use autoload to use an existings database. I know how to do it without declarative syntax (model/_init_.py):
def init_model(engine):
"""Call me before using any of the tables or ...
4
votes
2answers
484 views
Best Practices for Python UnicodeDecodeError
I use Pylons framework, Mako template for a web based application. I wasn't really bother too deep into the way Python handles the unicode strings. I had tense moment when I did see my site crash when ...
7
votes
9answers
4k 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 ...
3
votes
3answers
2k views
Stream a file to the HTTP response in Pylons
I have a Pylons controller action that needs to return a file to the client. (The file is outside the web root, so I can't just link directly to it.) The simplest way is, of course, this:
with ...
15
votes
8answers
2k 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 ...
7
votes
4answers
851 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 ...
3
votes
4answers
4k views
UnicodeEncodeError: 'latin-1' codec can't encode character
What could be causing this error when I try to insert a foreign character into the database?
>>UnicodeEncodeError: 'latin-1' codec can't encode character u'\u201c' in position 0: ordinal not in ...
4
votes
6answers
1k views
Full text search engine for Python
I'm searching for a Python full text search engine.
I took a look at PyLucense, but I think that using a Java-based library in a Python project is not good. As I understand, Sphinx does not have a ...
3
votes
2answers
1k views
Interactive debugging with nosetests in PyDev
I'm using PyDev ( with Aptana ) to write and debug a Python Pylons app, and I'd like to step through the tests in the debugger.
Is it possible to launch nosetests through PyDev and stop at ...
2
votes
3answers
1k views
How can I set a custom response header for pylons static (public) files?
How do I add a custom header to files pylons is serving from public?
2
votes
2answers
2k views
benchmarking PHP vs Pylons
I want to benchmark PHP vs Pylons. I want my comparison of both to be as even as possible, so here is what I came up with:
PHP 5.1.6 with APC, using a smarty template connecting to a MySQL database
...
1
vote
1answer
187 views
Pylons - Changing the regular 404 Not Found page to a custom one
How do I change the regular 404 page generated by Pylons to my own custom-made 404 page?
Thanks in advance,
John
1
vote
1answer
411 views
Paster cannot stop daemon
I'm using the following command in my pylons app in an attempt to stop the daemon on the server:
paster serve --daemon dev.ini stop
This is the error I get:
No PID file exists in paster.pid
Could ...
3
votes
1answer
374 views
Routing subdomains in Pyramid
In Pylons 1.0 I could go into config/routing.py and add
map.connect('/', controller='index', conditions=dict(sub_domain=False))
map.connect('/', controller='mobileindex', ...
3
votes
3answers
437 views
Error handling with Python + Pylons
What is the proper way to handle errors with Python + Pylons?
Say a user sets a password via a form that, when passed to a model class via the controller, throws an error because it's too short. How ...
2
votes
1answer
295 views
Pylons: How to write a custom 404 page?
So this question has been asked before, but not answered in great detail.
I want to override the default Pylons error page to make a nicer, custom one. I've got as far as overwriting the controller ...
2
votes
4answers
860 views
Why do I get an error on the last line of installing Pylons 1.0 with easy_install and Python 2.7 in Windows Vista 64?
I tried to install Pylons 1.0 with Python 2.7 using the easy_install command in Windows Vista 64 but got the error:
raise ValueError(str(list(result.keys())))
ValueError: [u'path']
Here is the ...
2
votes
2answers
620 views
Content-Length header not returned from Pylons response
I'm still struggling to Stream a file to the HTTP response in Pylons. In addition to the original problem, I'm finding that I cannot return the Content-Length header, so that for large files the ...
1
vote
1answer
118 views
The difference between 'from pylons import config' and 'import pylons.config'
Im trying to import a company module into my software and I get the error:
ImportError: No module named config
from:
from pylons.config import config
So obviously, the module that im importing ...
1
vote
1answer
109 views
How to let actions support more parameters?
I'm using pylons, and my action of controller is:
class UserController(BaseController):
def create(self):
name = request.POST['name']
email = request.POST['email']
...
0
votes
2answers
105 views
Using Pylons global variables with JavaScript (escaping brackets)
I am trying to access a result in a dictionary held in a Python global variable within JavaScript.
var selected = jQuery('.target option:selected').text()
var list = ...
9
votes
7answers
4k 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 ...
7
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 ...
2
votes
3answers
2k views
Pylons FormEncode with an array of form elements
I have a Pylons app and am using FormEncode and HtmlFill to handle my forms. I have an array of text fields in my template (Mako)
<tr>
<td>Yardage</td>
...
33
votes
4answers
9k views
Should I use Pylons or Pyramid?
I was planning to move from Django to Pylons, but then I bumped into Pyramid.
What are the differences between Pylons and Pyramid and what should I start with?
I read some text in PylonsBook, which ...
11
votes
4answers
3k 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 ...
2
votes
2answers
2k views
Pylons and Memcached
Anyone happen to use this combination in their web application? I'm having a bit of trouble finding some sort of tutorial or guideline for configuring this. Also seeing as how I started using Pylons ...
23
votes
4answers
8k 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 ...
10
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 ...
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 ...
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, ...
7
votes
3answers
610 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 ...
5
votes
3answers
388 views
PHP framework similar to Python Pylons
What is most similar PHP framework to Pylons?
I mean mostly ideology of programming.
3
votes
3answers
3k views
Deploying Pylons with uWSGI
We're trying to move our intranet to Pylons. My boss is trying to set up Pylons to use uWSGI behind Apache so he can set up multiple, independent applications. However, he's having a difficult time ...
2
votes
3answers
465 views
How can I strip whitespace and newlines with Mako templates? My 12362 line HTML file is killing IE
I'm using the Mako template system in my Pylons website and am having some issues with stripping whitespace.
My reasoning for stripping whitespace is the generated HTML file comes out as 12363 lines ...
2
votes
5answers
591 views
Searching across multiple tables (best practices)
I have property management application consisting of tables:
tenants
landlords
units
properties
vendors-contacts
Basically I want one search field to search them all rather than having to select ...
1
vote
1answer
605 views
Python pyramid - How to use checkboxes and radio buttons
I've been trying to make a form with checkboxes and radio button using Pyramid framework but I can't figure out how to do it properly.
I'm using the pyramid_simpleform. So far I've been able to put ...
1
vote
4answers
566 views
Strip whitespace from Mako template output (Pylons)
I'm using Mako + Pylons and I've noticed a horrendous amount of whitespace in my HTML output.
How would I go about getting rid of it? Reddit manage to do it.
5
votes
1answer
694 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
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
393 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
328 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 ...
4
votes
2answers
351 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
701 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
3answers
745 views
Using Parallels to test Web applications in IE
I am developing a Web application in Pylons on the Mac. My development server serves pages to http://127.0.0.1:5000/. Is there any way that I can access this page from Parallels for testing with IE ...
3
votes
4answers
535 views
Running scripts within Pyramid framework (ie without a server)
I have a fair bit of experience with PHP frameworks and Python for scripting so am now taking the step to Pyramid.
I'd like to know what is the 'correct' way to run a script in Pyramid. That is, how ...
3
votes
2answers
525 views
Storing UUIDs in sqlite using Pylons and SQLalchemy
I'm working on my first Pylons project using SQLalchemy and sqlite.
I'd like to use UUIDs as the primary key for one of my tables. I found the question below and I used the code to add a custom UUID() ...