Pylons is a lightweight web framework emphasizing flexibility and rapid development.
0
votes
0answers
3 views
pybabel text extraction from mako templates
By default pybabel is extacting ${_("mystr")} strings just fine from my mako templates, but when I try to use ${pgettext("myctx", "mystr")} for contextual translations, it doesn't seem to find and ...
1
vote
0answers
34 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
10 views
How can i use render to render a page in pylons with a named anchor?
I need to render a page after a formencode validation.
html = render('/billing_errors/index.mako')
This page contains tabs that are anchored.
<ul id="tabs" class="tabs">
...
0
votes
0answers
25 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
0answers
74 views
pyramid mod_wsgi/apache setup help needed
The application is not loading when visiting localhost/modwsgi_app as expected. Firstly thanks kindly for any help, I am a bit of a newb, this is my first python web app. This is what I have so far:
...
1
vote
2answers
74 views
geting data out of a html table and send it to a view in pyramid
We use pyramid and chameleon template.
Currently we have a page where users can fill in a table.
This table has a variable lenght because rows are added dynamically.
We want to get all the content of ...
0
votes
0answers
243 views
Python add/delete/update by sqlalchemy [closed]
I am currently making my way through Python and SQLAlchemy since I was shifted from java. I was able to select, delete, update and add to the DB, I am using Sqlyog and Python Pyramid as environment ...
2
votes
1answer
61 views
Getting 500 internal server error while using fileConfig in python
I am new to python, and started to work on it for web application development. So after taking the full code from SVN, I have configured it on my local (Windows 7). After configuring vhost for apache ...
1
vote
3answers
59 views
Mako Filter in Chameleon?
Is there any possibility to use template filters in Chameleon as I'm used to in Mako? In Mako one could do something like
${s | filter}
where filter is a function mapping strings to strings and ...
0
votes
0answers
93 views
@jsonify not handling quotes in HTML returned as JSON from Pylons/Mako
I have an old app running Pylons 0.9.7 and using Mako templates. To reuse the server-side templates via AJAX, I call render_def() and return the generated HTML in a JSON object.
The problem is that ...
2
votes
2answers
175 views
How to get multiple parameters with same name from a URL in Pylons?
So unfortunately I find myself in the situation where I need to modify an existing Pylons application to handle URLs that provide multiple parameters with the same name. Something like the ...
1
vote
1answer
136 views
What does this error mean: ValueError: renderer was passed non-dictionary as value
Right now I have a pyramid (python) app with a home page that is reached via this route in the init.py file:
config.add_route('home_page', '/')
in my views.py file I have:
...
0
votes
0answers
16 views
How do you display members or developers with Allura on Sourceforge?
I'm working with a Sourceforge project and Sourceforge has been upgraded to Allura. How would I add a macro or something to display project developers and members to the project page? It doesn't ...
0
votes
1answer
42 views
parsing json (from pylons) using jquery
I have set up a pylons server to accept requests of the form "/searcher?q=blahblah". This returns some nice json of the form:
[{"name":"onefish","type":"one"},{"name":"twofish",type:"two"}]
I get ...
0
votes
4answers
211 views
Python framework to create pure backend project
Some details about the project:
pure backend project, no front
expose a rest api (maybe custom routes?)
connect to other rest apis
query MySQL & MongoDB using an ORM
have unit tests
What ...
1
vote
2answers
181 views
ImportError: Cannot re-init internal module __main__, when using Pyramid and Mako with Google App Engine
My Pyramid app works fine when run inside the paste httpserver, but throws an exception in google app engine.
The /hello/{name} url works fine in both paste server and in app engine
The /test url ...
1
vote
2answers
159 views
Pyramid HTTP Redirect After Post
Is it possible to redirect to another page after a jquery post to the server? Once the user logs in, I want to return a json response or redirect to another page. I know the correct view callable is ...
0
votes
0answers
37 views
Domain routing with routes package in Python
I am using the routes package with pylons for my application. Recently, I have another domain which I want to use for some parts of my application.
Can I setup routing.py with domain conditions as ...
0
votes
0answers
94 views
Formencode validators Set and NotEmpty don't mix
I've been trying to using the Set validator to validate some checkboxes. I would also like to make sure that at least one of the checkboxes is ticked. For the schema, I've tried
checkbox_field = ...
0
votes
0answers
51 views
Does Pyramid run on IronPython? [closed]
I've been successfully running Pyramid 1.1 with Jython. Now I want to play with some .net specific libs and was wondering if anyone had gotten Pyramid (any 1.0+ version) to run on IronPython? I ...
0
votes
1answer
125 views
How do I install reddit on a local OS X machine?
They have provided a install script for Ubutu. But how do I install reddit on a Mac OS X machine ? [Mountain Lion]
The dependencies are listed here : ...
0
votes
0answers
53 views
Video uploading to a server?
I am trying to build an application where the user can upload videos that he has stored in his local machine or from a URL such as one uploads or shares a video on facebook through a URL, I will be ...
2
votes
0answers
89 views
Test Pylons server using Behave BDD - how to start and use server?
I've been looking around all week and can't wrap my head around how to get an instance of our pylons server started for use with the Behave BDD. Can any of you point me to an example or offer one of ...
0
votes
1answer
112 views
About the add_static_view and static_url in Pyramid
I add the static view like this:
config.add_static_view('CF_static', 'cistromeprimerscanner:templates/static', cache_max_age=604800)
When I want to use a file in static directory in template file, ...
1
vote
0answers
43 views
How to use a view function on different configurations in Pyramid? [closed]
get_result produces a dictionary that is shown differently in result_view1 and result_view2.
This will work, but code duplicates the two dictionary two times:
...
0
votes
0answers
81 views
Web app with lots of text - architecture and layout options
I am working on a web application with lots of pages that are text heavy. The back-end uses pylons framework and the front-end use uses twitter bootstrap and some Javascript libraries. I am currently ...
2
votes
1answer
75 views
Pyramid ignoring csrf validation for certain views
I'm looking for something like Django's csrf_ignore decorator.
I have defined my csrf validation in the usual way, via subscriber:
@subscriber(NewRequest)
def csrf_validation(event):
...
Then ...
2
votes
1answer
291 views
GAE - get_uploads: self.request.POST does not exist but self.request.request.POST does. get_uploads returns empty array
Trying to upload to my local host. Here's the HTML bit:
<form enctype="multipart/form-data" method="POST" ...
5
votes
1answer
178 views
Issue with nosetests and file uploads
I've been searching the web for the last two days trying to understand the problem I'm having with WebTest. However, I have had no joy, and was wondering if anyone here might be able to help.
I'm ...
0
votes
1answer
113 views
Paster requires to be run from program directory?
Im running a solaris server which uses supervisor to monitor some Python applications.
Previously, I could run the command:
paster serve /opt/pyapps/menuadmin/prod.ini
from any directory on the ...
0
votes
2answers
186 views
How do I set a session variable to a value in my database?
newb to python and pyramid/pylons. After a user logs in, I want to grab some data in my database and store it in a session variable. I've been able to store the user's login id with remember(). Using ...
3
votes
1answer
162 views
How do I link to a static image inside a css file?
newb to pyramid and python. I've been able to link to my static files successfully in any of my jinja2 templates, ie:
<link rel="stylesheet" type="text/css" ...
1
vote
2answers
338 views
how do I json encode this view?
New to python and Pyramid.
I have a view that does pagination. How do I json encode it? I get an error "object at 0x2d16d90> is not JSON serializable" when I try this:
...
2
votes
2answers
104 views
How to get the permission attached to the called view in Pyramid?
In my forbidden view, I want to redirect all members to their dashboard if they visit a page for guests, and I want to redirect all guests to the login page if they visit a page for members. This is ...
1
vote
1answer
87 views
Streaming POST large request in Pylons
I am working on a Pylons 1.0 project using apache with mod_wsgi. Ineed it to work with large POST and GET requests. For the GET requests I can just take the data source (file on disk usually) and ...
2
votes
1answer
189 views
Pyramid.security questions: Double cookies? Insecure cookies? Expiration?
I'm taking my first foray into the Pyramid security module. I'm using this login code to set the auth_tkt:
@view_config(route_name='LoginForm', request_method='POST', renderer='string')
class ...
2
votes
1answer
67 views
Get request URI in jinja2?
I'm working on a Pylons project using Jinja2 templating. I want to test for the request URI and/or controller inside the Jinja2 templates - is there an equivalent to a getRequestUri() call? I can set ...
0
votes
2answers
64 views
Update web page whilst processing data
Im not really sure what to search for on this subject.
I have a Pylons back end which loops over a list of email addresses in a database and then displays them on a web page. What I would like to do ...
0
votes
2answers
159 views
PyDev project's PYTHONPATH automatically renamed. How do I properly configure this?
I'm new to PyDev and fairly rusty in Python. Trying to get back into it with a simple reddit app first. So here's my setup:
I have 2 PyDev projects: reddit and pylons (reddit api.py imports from ...
0
votes
1answer
174 views
pylons mongoengine type object 'Section' has no attribute _data
In the model I define :
section.py:
class Section(Document):
section_name = StringField(required = True)
and, also in the model:
admin_interface.py:
class AdminInterface(DynamicDocument):
...
1
vote
1answer
156 views
Pylons Mako undefined variable
In the controller, I define 2 method:
foobar.py:
class foo(self):
c.help_text = 'help'
return render('/index.html')
class bar(self):
return render('/index.html')
index.html:
...
1
vote
2answers
744 views
pylons mako how to check if variable exist or not
In django, we can do this:
views.py :
def A(request):
context = {test : 'test'}
return render_to_response('index.html', context , context_instance = RequestContext(request))
...
0
votes
2answers
703 views
Python nosetests skip certain Tests
I am working on tests for a web application written in python.
Suppose I have 5 tests in my test_login.py module.
Every single test is a Class.
There is often one, base test that extends TestFlow ...
3
votes
1answer
257 views
Using colander for xml deserialization
How should colander be used for xml deserialization? Docs say that it can even be used for xml deserialization and validation, but I didn't find any good examples for that in docs or on the web!
If ...
0
votes
1answer
34 views
pylons global variable in class
in pylons, how do i use a variable that is considered global in a class, like using self, seems in pylons using self wont work.
suppose i have in controller :
a.py :
class ...
1
vote
0answers
273 views
Pserve Command Not Working [closed]
I'm new to Python, and am developing a test application using the Pyramid Framework.
Today, for reasons unclear, the pserve command used to start the waitress server stopped functioning. Running: ...
0
votes
4answers
300 views
Which Python framework is flexible and similar to CodeIgnitor in PHP? [closed]
The requirement is to develop a HTML based facebook app. It would not be content based like a newspaper site,
but will mostly have user generated data which would be aggregated and presented from ...
0
votes
0answers
71 views
Python Pylons Dependency Error
I'm trying to install reddit which uses pylons and I got the following error:
File "/usr/local/bin/paster", line 9, in <module>
load_entry_point('PasteScript==1.7.3', 'console_scripts', ...
0
votes
1answer
79 views
Pylons 0.9.6 Get Current Server Name
In my Pylons config file, I have:
[server:main1]
port = 9090
...config here...
[server:main2]
port = 9091
...config here...
Which are ran using:
paster serve --server-name=main1 ...(more ...
0
votes
1answer
31 views
How can I move multiple Pylons Applications into a single Composite Application?
We have several single Pylon websites running but would like to make these more easily reusable.
There is a concept of a "Composite Application" inside pylons, but there seems to be limited ...


