A Python-based web framework provided by the Pylons Project

learn more… | top users | synonyms

0
votes
1answer
13 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
23 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
18 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
29 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 ...
0
votes
1answer
37 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
39 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
20 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 ...
-1
votes
1answer
47 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
38 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
21 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
38 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: ...
-2
votes
1answer
162 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
35 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
42 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
41 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
36 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
44 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
34 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
52 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 ...
-1
votes
0answers
17 views

default pyramid page set to a domain [closed]

The server is a CentOS 64 bit. Things I'll need to be in working order: nginx uwsgi pyramid pip/install pillow domain to be used ( princelytreasure.com ), meaning to say if I enter ...
0
votes
1answer
37 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
29 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
61 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
39 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
73 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
51 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
41 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
vote
1answer
90 views

uWSGI Fails with No module named encoding Error

I am trying to setup uWSGI with Pyramid, but I am getting this error, when attempting uwsgi --ini-paste development.ini Python version: 3.2.3 Error message: uwsgi socket 0 bound to UNIX address ...
-1
votes
0answers
23 views

How would I add any text data in zodb using pyramid framework?

I am new to the Pyramid framework. How to add data from pagetemplate pages to the ZODB using a simple request?
0
votes
1answer
36 views

Custom Pyramid Scaffold does not install template folder

After running setup.py for my scaffold. pcreate -l shows the appropriate listing but when I try to run pcreate -s my_project_template SomeProjectName I get that 'no such file or directory ...
-1
votes
0answers
24 views

Pyamid object level authorisation [closed]

I want to have object available authorisation in the Pyramid Framework. I looked at the cookbook tutorial as to how to do it. But there they have defined the models as object whereas I am using ...
0
votes
2answers
56 views

can't include js file in pyramid project

I'm trying to use an external js file to use in my pyramid project. I found this solution but i can't seem to get it work. The js files i want to include are in C:\env\uza\uza\static\js project name = ...
0
votes
1answer
45 views

Knockout not behaving correctly in Pyramid

I'm building a webapp using Pyramid, but Knockout is behaving differently. I have a form: <div data-bind="with: $root.itemToAdd" style="display: none;"> <form ...
0
votes
2answers
49 views

SQLAlchemy / Python / Pyramid Write To Database Issue

The problem: I am working on a bit of code that is meant to create a new record in a linking table. The linking table has a primary key that is an auto number, the other two fields are VARCHAR with a ...
2
votes
0answers
62 views

how to use messaging with pyramid_sockjs?

I'm building a pyramid application using pyramid_sockjs. This app needs to react to incoming messages from redis pub/sub or rabbitmq. Where am I supposed to plug in the logic to listen to the ...
0
votes
1answer
55 views

Pyramid: multiple resource factories — how to

I have a simple root resource factory: class Root: __acl__: [ (Allow, Authenticated, 'edit') ] Now for some "special" routes, I need to create another resource factory ...
2
votes
2answers
119 views

No module named deploy when trying to start pyramid app with mod_wsgi

trying to use mod_wsgi for the first time for my pyramid app, but I keep getting an ImportError: No module named deploy when I try to access the site in my /etc/apache2/sites-available/domain.com ...
1
vote
1answer
46 views

Pyramid read http data

APIURL ='http://localhost:6543/api/patches/alice_8b84090712bce46e15a8107839cefe/e5678' data = { 'patch_id' : 'e5678', 'queue_id' : 'alice_8b84090712bce46e15a8107839cefe', } response = ...
0
votes
1answer
26 views

Is there some sort of way to roll back the initialize_project_db script in pyramid?

I am a rails developer that is learning python and I am doing a project using the pyramid framework. I am used to having some sort of way of rolling back the database changes If I change the models in ...
0
votes
1answer
59 views

How to handle python subprocesses elegantly with Pyramid

I've got some dummy code put together that initiates a process (exist_view) which calls a shell script and then loops through a status page that periodically checks to see if the process has produced ...
1
vote
1answer
73 views

How to get a SQLAlchemy session managed by zope.transaction that has the same scope as a http request but that does not close automatically on commit?

I have a Pyramid web application with some form pages that reads data from database and write to it as well. The application uses SQLAlchemy with a PostgreSQL database and here is how I setup the ...
0
votes
1answer
37 views

Can you set session variables in MAKO files in Pyramid?

So I found this answer regarding setting session variables in a pyramid view file, and then later accessing it in a mako template. ( How to access session variable in Mako template and Pyramid? ) I ...
2
votes
0answers
31 views

Report form post-process error messages in HTML controls with Deform

Deform allows to add validation on different fields of a form. However, it checks that the form is valid in itself but that does not necessarily mean that the form processing will be valid. For ...
0
votes
1answer
64 views

Why can't Pyramid locate this template file?

I just installed the Pyramid framework (following the tutorial. I created a new project starting with the "alchemy" scafffold (pcreate -s alchemy myproject) and ran the setup.py script. For some ...
-1
votes
1answer
41 views

How do you change the name of a pyramid project?

I am just starting out with pyramid and I am doing the tutorial. I would like to use some of the tutorial code as a starting point for the project that I am going to start, but I don't want to keep ...
3
votes
1answer
88 views

How to handle long asynchronous requests with pyramid and celery?

I'm setting up a web service with pyramid. A typical request for a view will be very long, about 15 min to finish. So my idea was to queue jobs with celery and a rabbitmq broker. I would like to know ...
0
votes
0answers
26 views

Colander and Cornice doesn't work properly

I try add schema validation as it describe in official cornice doc and the do that through decorator like service_name.post(schema=SomeSchemaClass) but it's doesn't work import colander class ...
0
votes
1answer
57 views

SQLAlchemy: about self referential relation (error: no attribute '_sa_instance_state')

I want to implement some many to many and self referential mapping kind like the graph of keywords in a keyword net. For example, "apple" is a child of "juicy fruits", at the same time, "apple" is the ...
0
votes
0answers
53 views

What would be the best way to make sure only one worker launches the apscheduler event in a pyramid web app running multiple workers

We have a web app made with pyramid and served through gunicorn+nginx. It works with 8 worker threads/processes We needed to jobs, we have chosen apscheduler. here is how we launch it from ...
0
votes
1answer
38 views

Application modules with Pyramid

I'm creating a workflow app with pyramid and i'm searching how to make the application modulable : meaning create a core app with sqlalchemy models, base forms with wtforms, and some base templates ...

1 2 3 4 5 18