A Python-based web framework provided by the Pylons Project

learn more… | top users | synonyms

-3
votes
0answers
32 views

Dynamic subdomains with Python [closed]

What would be the shortest path, technically, to create a website, using python, with a lot of dynamically created subdomains, for different users etc. I am currently working with django, however it ...
0
votes
1answer
29 views

Why am I getting “ImportError: No module named pyramid.config”

I am using python 2.7.5 on windows and I have followed these directions for the windows python 2 section to the letter. I found 2 other questions on SO with the same problem but they were both on ...
0
votes
1answer
19 views

Logging not working when running pyramid app under uWSGI in emperor mode

First, a little background. I'm running an app under uWSGI in emperor mode. The uWSGI command line: uwsgi --master --emperor /etc/uwsgi --die-on-term --uid uwsgi --gid uwsgi The INI file for my app ...
0
votes
1answer
21 views

Import Configurator Error for Python Pyramid

i'm trying to learn python pyramid for linux and following the pylonsproject documentation in doing so.I'm also new to linux. I've installed everything correctly(I'm pretty sure), but when i invoke ...
2
votes
0answers
27 views

Implementing BigPipe in Pyramid

Recently, I read an article by Facebook about their new page pipelining system. Currently, there are several Github projects with similar implementations, but they are all written in Php. I'm trying ...
0
votes
1answer
15 views

How to run celery and celerybeat from the same command

I have a project which has two tasks.py files. The strucutre looks like something like this root/ webproject __init__.py models.py views.pu celerytasks/ ...
0
votes
1answer
20 views

Not able to import ZopeTransactionExtension from command line

I have a pyramid application and it has this line from zope.sqlalchemy import ZopeTransactionExtension It works without any issues But if I try the same with command line I get Traceback (most ...
0
votes
1answer
33 views

Pyramid - How do I create a route that avoids authentication

So I have a pyramid web app and authentication is working great. If a user has not logged in and tries to visit a certain route, then are redirected to the login page. Now, however, I have a route ...
1
vote
1answer
31 views

Occasionally disabling Pyramid middleware

Note: If it's any help, I'm using Pyramid 1.3.2. I know it's a little out of date, I would prefer not to update right away, but I might be able to force an update if the latest version provides ...
1
vote
0answers
53 views

Pyramid Python: nonetype error in urldispatch

pyramid/url.py seems to have a bug. Here is the code import os from wsgiref.simple_server import make_server from pyramid.config import Configurator from pyramid.response import Response from ...
-2
votes
0answers
31 views

Pyramid: Can you use add_static_view to serve up a directory listing with links to the contents in a directory? [closed]

I'm currently working through the "Getting Started with Pyramid" Tutorial. The question in the title comes up in the extra credit of Lesson 8. So, can you? Edit: I have read the relevant docs ...
1
vote
1answer
37 views

SQLAlchemy PostgreSQL Pyramid update issue

I have the following model: class Employee (Base): __tablename__ = 'employees' id = Column(Integer, primary_key=True, autoincrement=True) name = Column(String(300), ...
0
votes
2answers
48 views

FOSS solution for storing web sessions

Context I am developing a simple web application (written in python/pyramid) with an underlying http service as data store and with a partner integration by using backend http communication. This web ...
2
votes
2answers
57 views

Implementing a “one vote per day” system in pyramid based on cookies

Background: I have the core functionality of a very simple vote-based site setup and working well in pyramid utilizing a sqlite database. The last requirement for this application is to allow only ...
1
vote
1answer
28 views

Pyramid application using OpenID

I would like to use OpenID authentication in a small Pyramid web application. Most projects I found are old and/or their status is unclear. My requirements are quite simple: I want to protect access ...
1
vote
2answers
44 views

Pyramid with Jinja2 running Python 3.3

I can't make Jinja2 2.8 work with Pyramid 1.4.2 and Python 3.3.2. I got this error: File ...
0
votes
1answer
46 views

Create pyramid request for testing, so that events are triggered

I would like to test a pyramid view like the following one: def index(request): data = request.some_custom_property.do_something() return {'some':data} some_custom_property is added to the ...
1
vote
2answers
54 views

In Pyramid how can I redirect from http to https?

If you don't have access to the webserver, and the only way you have is to intercept the request and then do a redirect from http to https, what is the best approach to redirect? I tried looking at ...
0
votes
1answer
41 views

Pyramid apex/ pyramid_rpc conflict

I've run into an issue trying to combine Apex and pyramid_rpc in a pyramid app. I'm running: pyramid 1.4, pyramid_rpc 0.5.1, apex 0.9.10dev on python 2.7.3 All my jsonrpc requests were returning ...
2
votes
0answers
62 views

SQLAlchemy session issues with celery

I have scheduled a few recurring tasks with celery beat for our web app The app itself is build using pyramid web framework. Using the zopetransaction extension to manage session In celery, I am ...
0
votes
2answers
37 views

Redirecting to other url in Pyramid?

I am laying down a 2 way SMS service. User will be sending an SMS to a virtual number provided by SMS server platform (www.sms.com). That SMS server platform will pass on user SMS data to my my url ...
1
vote
0answers
70 views

Python workflow engine for multiple MapReduce steps

Fabulous people at SO, I need to process a (bulky) set of data thru various steps; each step can involve mapReduce (using Disco), general distributed processing (using Celery) or some simple ...
1
vote
0answers
32 views

Gunicorn + pyramid 'OPTIONS' method has stopped working

I have an app server and api server running with gunicorn. Both servers are pyramid apps. Browser loads html and static files from app server and then talks to api server directly. Browser needs to ...
0
votes
1answer
53 views

retain data in form even after submitting or error in validation

I am currently into python and jinja2 right now. Is there a way to retain the data in the form(with validation) even after submitting it without using session? Because in my case, I have to ...
0
votes
1answer
33 views

Writing doctests for pyramid web app which depend on settings in ini file

I would like to write doctests for my pyramid web app, using the webtest module. I tried it like this: from my_webapp import main from webtest import TestApp app = TestApp(main({})) result = ...
1
vote
1answer
64 views

Pyramid: Is it possible to use Authorization without Authentication?

My organization uses OpenAM SSO for authentication and my app is written in Pyramid. The user id will be passed in HTTP header. I can also configure it to pass groups and permissions as well which I ...
0
votes
1answer
26 views

Pyramid + github + pip: install problems

I need to install a Pyramid project from a private repo from github. The project has a structure something like this: project_name project_name models/ views/ templates/ ...
0
votes
1answer
50 views

should SQLAlchemy session.begin_nested() be committed with transaction.commit() when using pyramid_tm?

I'm developing a pyramid application and currently in the process of moving from sqlite to postgresql. I've found postgresql more restrictive transaction management is giving me a bad time. I am ...
1
vote
1answer
59 views

mod_wsgi loading python script from wrong Pyramid app directory

I have two apps with nearly identical code base (same functionality, just different branding) that I am trying to do virtual hosting with using mod_wsgi and apache. the virtual host settings for both ...
1
vote
0answers
77 views

Using Websocket in Pyramid using Python3

Is there a way to use Websockets in Pyramid using Python 3. I want to use it for live-updating tables when there are data changes on the server. I already thought of using long-polling, but I don't ...
0
votes
0answers
29 views

Freezing a Pyramid project with py2exe

As part of a proof-of-concept I'm doing, I made a "Hello, World" Pyramid application and then I tried freezing it with py2exe. I'm using a virtualenv environment, into which I installed Pyramid. My ...
0
votes
1answer
84 views

Learning Material For the Pyramid Web Framework? [closed]

I have started to learn the Pyramid Framework and i find it outstanding, but i need to indulge more and more in the Pyramid, as i started to love the Framework, Anybody has some Learning Resource like ...
0
votes
2answers
40 views

Optimizing Python logging code

I have a Python application written on the Pyramid framework. We really take advantage of logging on this ( for debugging ) , using the standard import library. As we profile stuff on production, it ...
2
votes
1answer
42 views

parsing rST to HTML on the fly using Docutils

I want to parse .rst files to .html files on the fly to display as a webpage. I'm using pyramid, and I haven't found any quick help on how to use docutils inside python code and make it write to a ...
1
vote
1answer
60 views

dynamicly fill table using zpt and ajax as update

I'm creating a webproject in pyramid where I'd like to update a table every few secondes. I already decided to use ajax, but I'm stuck on something. On the client side I'm using the following code: ...
-1
votes
1answer
516 views

Pyramid or Django? [closed]

I am an intermediate Python Developer and had developed few Python apps and now i want to jump to the framework for the rapid development, as plain Python will be very tedious, so i found two big ...
0
votes
0answers
72 views

sqlalchemy.exc.ProgrammingError: (ProgrammingError) relation does not exist

I'm trying Pyramid by creating the new project. I choose PostgreSQL and sqlalchemy. For now I have a table "photo" created manually and a model for it: class Photo(Base): """ The SQLAlchemy ...
0
votes
1answer
56 views

In a jinja2 template, how do i check if an element in a mongo database is one of three possible strings?

My template has if/else functionality to handle displaying buttons on a page, I've managed to add an elif statement that displays the buttons only if an element in a mongo database is not one of three ...
0
votes
1answer
51 views

nose runs test on function in setUp when no suite specified

I have a tests file in one of my Pyramid projects. It has one suite with six tests in it: ... from .scripts import populate_test_data class FunctionalTests(unittest.TestCase): def setUp(self): ...
0
votes
1answer
49 views

Sharing Pyramid's Database Session with Celery Task

What is the best way to share the SQLAlchemy session between my Pyramid application and Celery tasks while only instantiating the database engine once? I looked at this answer here, however, I don't ...
0
votes
1answer
54 views

How do I write a query to get sqlalchemy objects from relationship?

I am learning python and using the framework pyramid with sqlalchemy as the orm. I can not figure out how relationships work. I have 2 tables, offices and users. the foreign key is on the users table ...
0
votes
1answer
45 views

Is there a way to print out output in a pyramid view callable?

I am new to python and pyramid and I am trying to figure out a way to print out some object values that I am using in a view callable to get a better idea of how things are working. More specifically, ...
2
votes
2answers
82 views

In the Pyramid web framework, how do I source sensitive settings into development.ini / production.ini from an external file?

I'd like to keep development.ini and production.ini under version control, but for security reason would not want the sqlalchemy.url connection string to be stored, as this would contain the username ...
0
votes
1answer
50 views

Why does PIP convert underscores to dashes

I am trying to install a Pyramid app -- let's say test_app. inside a virtual environment and it is getting installed as test-app (pip freeze output shows it test-app==0.0). Because of this, I can not ...
0
votes
1answer
38 views

Cannot response a pdf file in circus

I have done to implement a print pdf function. I use pyramid, wkhtmltopdf and jinja2 to generate pdf. It works fine in gunicorn. However, when I deploy it to production (I use circusd to run in ...
1
vote
1answer
93 views

Setup uWSGI as webserver with pyramid (no NGINX)

Most of the available tutorials show how to set up uWSGI with an upstream HTTP server (like NGINX). But uWSGI alone can act beautifully as router/proxy/load-balancer - refer this For my project, I ...
0
votes
1answer
66 views

“ResourceClosedError: The transaction is closed” error with celery beat and sqlalchemy + pyramid app

I have a pyramid app called mainsite. The site works in a pretty asynchronous manner mostly through threads being launched from the view to carry out the backend operations. It connects to mysql ...
2
votes
1answer
91 views

Pyramid mongodb scaffold failing on Python 3 due to Paste

Environment: Python 3.2.3 (using virtualenv) Pyramid 1.4 pyramid_mongodb scaffold After installing myproject using pyramid_mongodb scaffold I ran python setup.py test -q and it's failing with ...
0
votes
1answer
63 views

How to prevent user to set the value of the session id cookie used by pyramid_beaker?

I have a pyramid application using pyramid_beaker. Here is my configuration: # Options For Sessions and Caching: session.type = file session.data_dir = %(here)s/../../data/sessions/data ...
0
votes
1answer
52 views

pyramid is slow with big in-memory object

In the pyramid web framework in __init__.py I put a 100 MB object into settings. In views.py I scan that object. But now it's so slow. I put prints in my view, and my scan is fast ... the delay is ...

1 2 3 4 5 18