You cannot post messages because only members can post, and you are not currently a member.
Description:
Pylons is a Python Web Framework aimed at making development, distribution, and deployment faster and easier.
|
|
|
statsd profiling
|
| |
i decided to integrate some profiling with statsd, and it was really easy. i use it for timing and profiling certain logical things, but also use it for some lightweight analytics based on the matched route i use a ContextFound event to start a timer, and then send a payload using `add_finished_callback`... more »
|
|
Trouble storing Suds SOAP client in Configurator registry
|
| |
Are objects modified when they are saved in the Configurator
registry.settings dictionary?
I am trying to store a Suds SOAP Client in the registry which can be cloned
in my view-callables so I can avoid re-parsing that WSDL document. When I
am trying to clone the Suds Client that has been stored in the registry, my... more »
|
|
Multiple questions about i18n / pluralization in Pyramid
|
| |
Hello list,
I'm in the process of internationalizing a Pyramid application, and I'm
currently stumbling on a few problems.
Basic setup as per the tutorial works fine: I can extract message
strings to catalog files using Babel+Lingua, fill-in the PO files,
compile them to MO files and display the result.... more »
|
|
Custom Error Reporting via NewResponse ?
|
| |
Has anyone tried to accomplish this before? If so, could you share any details ? I was hoping to create some error logging , outside of the traditional `logging` facility, where I could drop some error reports and other info into the database for profiling. Instead of hacking on a logging configuration, a NewRepsonse subscriber seemed like it would give me full... more »
|
|
making before_render events conditional ?
|
| |
I've got a subscriber to before_render that does some "tweaking" of objects and priming of an object cache for Mako/Jinja/etc templates.
The problem that I've run into – json calls to the api trigger this.
The following code works, just wondering if anyone has a better idea , that would let me escape not out of '/api' calls, but anything matching a... more »
|
|
Pyramid authentication and rest api
|
| |
Hi,
one of our web applications based on pyramid is actually handling
authentication through the SessionAuthenticationPolicy.
We've built a rest API that's reached by ajax calls.
We'd like to use the same one from a kivy based application.
Any idea how we could cleanly implement the authentication part ?... more »
|
|
Pylons DeprecationWarnings
|
| |
Whenever I run my pylons app I am seeing a couple of warnings I know the warnings aren't hurting my application, but I'd prefer they didn't appear at all. Pylons is in maintenance only mode now, and this seems like something which needs to be "maintained".. is there any plans to fix this? spaz@devbox:~/spaz$ ~/env/bin/paster serve development.ini --reload... more »
|
|
pyramid_persona and unexpected logout behavior
|
| |
I'm fairly new to pyramid and mozilla persona and I would greatly appreciate some assistance with a problem I'm having. Following the pyramid_persona documentation, I did manage to get persona working (or so I thought). I then tried customizing my login process as discussed on [link].... more »
|
|
|