a set of utilities for web development in Python described as "a framework for web frameworks"
2
votes
2answers
118 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
...
2
votes
0answers
32 views
How to prevent gunicorn access log from getting on to the console and reload properly?
I have a pyramid application and I wanted to serve it using gunicorn instead of the default waitress. But the biggest problem I have is that there is not enough documentation on the subject anywhere.
...
0
votes
1answer
13 views
PasteWSGI server is not accepting POST data properly.
I have a PasteWSGI server running.
Here is the sample curl request,
curl -vX POST http://127.0.0.1:5000/save_topology --data '{"topo" : {"A": "asdasdasd"}, "house_id" : "2"}'
server side code ...
1
vote
1answer
67 views
How to create your own commands in Pyramid 1.4
OK, before 1.4 release we had paster where we can add our own commands, for example for drop cache or load database initial data. Right now, how I understand, pyramid deal with Console Scripts but ...
1
vote
1answer
256 views
How to force rhodecode to invalidate cache after push via ssh
I am running a rhodecode instance for code review etc. however when I push via ssh, the rhodecode does not see the changeset (unless I do a manual pull from hgweb).
Do I need a incoming hook in the ...
1
vote
3answers
166 views
How do I access ${buildout:directory} from Python code?
I have a Pyramid web application managed with zc.buildout. In it, I need to read a file on disk, which is located in a sub-directory of buildout directory.
The problem is with determining the path to ...
0
votes
1answer
207 views
Can't access Ubuntu web server from local machine
I'm running python paste http server on port 8087 on Ubuntu 11.10
nmap says 8087/tcp is open
ufw firewall is inactive
But if I pull its local ip up (192.168.1.50:8087) on another local network ...
6
votes
2answers
428 views
Global paster command not found in virtualenv
I created a custom paster command as described in http://pythonpaste.org/script/developer.html#what-do-commands-look-like. In my setup.py I have defined the entry point like this:
entry_points={
...
0
votes
1answer
28 views
TurboGears2.2.0 install/run error when nosetests and paster setup-app development.ini
I encountered a problem after I finished all process of installing TurboGear2 on my OS X 10.8.2.
Using Python2.7, TurboGear2.2.0
The installing process was based on tutorial of official website: ...
0
votes
1answer
101 views
Translating cookies from localhost serving wsgi server to nginx reverse proxy
I have nginx setup to front a python paste instance. They are on the same box with paste serving from 127.0.0.1 and nginx serving to outside world.
The problem comes when my python app sets cookies, ...
2
votes
1answer
125 views
Python Paste and auto-restart on non Python source file change
paster serve has --reload option to auto-restart serving wsgi application when any of Python source files or the CONFIG_FILE changes.
How to make paster initiate auto-restart also when some other file ...
0
votes
0answers
52 views
Python Eye - Disable restriction to local network interface
I'd like to use the eye object browser: http://pypi.python.org/pypi/eye to view hierarchies not on my local machine, when trying to connect from a remote computer the connection fails as per defined ...
0
votes
1answer
114 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 ...
2
votes
1answer
109 views
Missing local commands after running zopeskel on windows
I try to create an archetype with zopskel/paster on my newly installed plone 4.2. I have adjusted the buildout.cfg (see below) to get zopeskel.exe and paster.exe generated in the bin folder.
Howerver ...
1
vote
2answers
119 views
How would I pass variables to a SQLAlchemy ORM definition at runtime?
I've defined a new Column type called File, which should let me store only the file name in the database. Then I would store the actual file in the file system at root+subfolder+name.
File(root, ...
0
votes
2answers
186 views
What makes “paster addcontent” fail for a package created with Zopeskel template “archetype”?
Here is the situation:
fresh Plone 4.2 buildout
a fresh package created using Zopeskel 2.21.1 with template 'archetype'
and configured in my buildout using mr.developer
Trying to add some content ...
0
votes
1answer
80 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 ...
1
vote
1answer
64 views
python: is it possible to detect whether I am in the paster shell?
I'm using Python + ZOPE/ZODB/Repoze BFG (the acronyms all get quite confusing) + paster.
I have a paster shell that I can run by doing:
paster --plugin repoze.bfg bfgshell site.ini zodb
...
1
vote
1answer
547 views
nginx not forwarding upstream
I have a paster server that is set up to host multiple applications with nginx proxying. For some reason, it appears that requests aren't being sent upstream from nginx. I'm getting 404 errors back in ...
0
votes
2answers
490 views
Deploying a Flask application using Paste
I'm building a web service using Flask and I'm trying to deploy a simple "Hello, World" app using Paster. I'm having trouble get everything configured to work together though. I've seen the Google hit ...
3
votes
1answer
126 views
After running paster, I have a few eggs in my product
I just ran
bin/paster create -t dexterity my.example
After running it, I have the following:
bootstrap.py
docs
my.example.egg-info
PasteDeploy-1.5.0-py2.6.egg
plone.cfg
setup.cfg
...
1
vote
1answer
45 views
TurboGears 2.x app-layer config namespacing
Coming from a Django background, I'm accustomed to the framework providing a configuration mechanism which is suitable (and intended) for app-layer configuration rather than framework configuration ...
1
vote
2answers
111 views
Paster vs. ArchGenXML
I questionning myself : is it better to use Paster for creating content types, browser view, portlet, etc... or ArchGenXML ?
Which one of those two create the better source code ?
Is there an ...
2
votes
2answers
992 views
How to deploy a Pyramid app using pserve without installation?
I'm a beginner for Pyramid.
I want to deploy Pyramid to my production server.
I have a deploy script using Capistrano to do this.
set :pid_path, "/var/lib/#{application}"
set :log_path, ...
2
votes
2answers
335 views
Get Dreamweaver to highlight .mako files as .html
Ideally, I would like to be able to treat a site built using Mako templates in Dreamweaver, as I'm merely working on the design aspect. I imagine the work will go much faster if I could edit .mako ...
2
votes
2answers
332 views
Plone buildout error when using a package created with paster
I'm new to Plone (4.1) and following Martin Aspeli's Professional Plone 4 development book. While following the book to create a custom theme, named optilux.theme (chapter 8), I encounter the ...
0
votes
2answers
77 views
Grok DistributionNotFound: grokcore.startup
Used grokproject Sample as in the grok homepage tutorial to simultaneously create a new project and install the grok framework.
cd Sample then ran bin/paster serve parts/etc/deploy.ini as in tutorial ...
0
votes
1answer
377 views
Pyramid-debugging a resource cannot be found error
What are possible causes of "The resource could not be found" error in Pyramid?
From my limited exeperiece debugging my Pyramid app, errors with routes and Python syntax error trigger a more explicit ...
1
vote
1answer
515 views
inheriting config file settings in pyramid
Is a setup like this not possible?
production.ini file:
[app:main]
use = egg:my_project
... various settings ...
[server:main]
...
development.ini file:
[app:main]
use = ...
0
votes
1answer
455 views
paster quickstart not an option
I am just installing TurboGears2 on Windows 7 running a virtual environment (python 2.7). I am not seeing the paster quickstart option when I run
paster --help
Instead, here's that output:
...
0
votes
2answers
187 views
How do I create a project without the project folder?
I'm new to pyramid and paster, just reading the docs for now. I use virtualenv and inside the virtualenv dir I want to start a pyramid project. The problem is that I would like for paster to not ...
6
votes
2answers
344 views
Connection resets on (large) file upload
So I'm having a rather vexing issue with file uploads in Pylons that I'm hoping someone might be able to assist me with. Originally I posted the issue here thinking this was an issue with Pylons, but ...
1
vote
1answer
162 views
any way to composite configuration/.ini files in pylons?
We're running a pylons app with multiple ini files (production, staging, development, etc). When a new setting is added that can be the same in all environments, it would be great to be able to set ...
0
votes
0answers
300 views
Connection time out with large file uploads in Pylons
I'm working on a pylons (1.0) project in which there exists a form containing a file field. This file is to be uploaded to the server. The form code is something like:
<form ...
1
vote
1answer
74 views
how to manage pylons/paster config file in a cluster?
I have 4 nodes running paster app, once I change the config, I need to change config files on the 4 nodes. It will be a headache if the nodes number growing.
I believe it should be a common problem ...
5
votes
1answer
867 views
How to debug long running python scripts or services remotely?
Pretty much what the title says, I would like to be able to connect to a python process running under paster or uwsgi and utilize pdb functionality.
0
votes
1answer
337 views
Automatically Generate Python Egg from Python PasteScript
So I'm using PasteScript's paster, and I'm trying to automate egg creation. My first step is to get a template of a Python egg. I noticed that PasteScript's paster has one built in, so I've been ...
0
votes
1answer
349 views
Syntax Error When Running paster?
No idea what happened, but all of a sudden, paster stopped working on my server (working with virtualenv and pyramid). Tried reinstalling everything but didn't work - same error again:
Traceback ...
0
votes
1answer
561 views
Avoid session expires after transaction.commit in pyramind paster pshell
Seems tansaction.commit() is the only way I have to make a commit in pyramid paster pshell.
I understand it's good in serving webpages but in shell, after that, on next SQLAlchemy MyModel.my_attribute ...
3
votes
1answer
541 views
Paster daemon won't shut down because can't read own pid file
TL;DR version: When I ask Paster to stop-daemon, it fails to read its own file that it uses to track its process id.
Longer version:
I am running Paster (pastescript 1.7.3) on Python 2.7.1 on ...
4
votes
2answers
742 views
Upgrading Pyramid/SQLAlchemy web apps
I've got a standard run of the mill Pylons Pyramid application, that uses SQLAlchemy for its database persistence.
I have set up an SQLAlchemy-migrate repo and have it functioning, but I really want ...
2
votes
1answer
607 views
Base path in paster configuration
I'm trying to deploy some Pyramid code to dotcloud. Unfortunately some paths are not mapped in the same way as in local paster deployment. When I'm running the development configuration with local ...
1
vote
1answer
235 views
Pylons Paster not reloading code [duplicate]
Possible Duplicate:
Paste (Python) Web Server - Autoreload Problem
I have a pylons app in development. I start the app with paster serve --reload --daemon development.ini. I have apache in ...
1
vote
2answers
1k views
Pylons helloworld - “Expected version spec in…” error
I'm trying to start new project using this doc: http://pylonshq.com/docs/en/1.0/gettingstarted/ (download go-pylons, make virtualenv with it, etc).
But when I'm trying to start helloworld app it ...
0
votes
1answer
118 views
how to serve downloadable PDF using pylons and paste server
I have a directory of .pdf files and I want a user to click on name of a file and have it downloaded.
How can I do that with paste server in pylons?
6
votes
1answer
382 views
Can I use paster on production site?
I am trying to set up Mediacore (which is a Pylons app) on a production server. The docs suggest either apache mod_fastcgi or mod_wsgi as webserver but I try to avoid apache at any cost because of its ...
0
votes
1answer
124 views
Problems running paster shell example.ini in Ubuntu while trying to install reddit
When I try to run paster shell example.ini, I run into:
connection failure: TLEngine(postgres://reddit/password@127.0.0.1/reddit)
followed by a laundry list of traceback.
At the end, I get:
...
5
votes
2answers
820 views
Getting a PasteScript error when I try to serve an existing Pylons app
I'm trying to serve an existing Python 2.5 Pylons application on OS X Snow Leopard.
I've already installed Python 2.5 and set it as the default Python installation, installed paster, and installed ...
0
votes
2answers
407 views
How should I host multiple Pylons websites on the one server?
I currently have one Pylons website running on my server that is setup using nginx as a proxy to Paster. In the near future, I plan to host another Pylons site on the same server.
If I were to go the ...
0
votes
1answer
87 views
Modifying The Template For New Pylons Controllers
I'm at a point in my Pylons projects where I end up creating and deleting controllers often (probably more often than I should). I grow tired of adding my own imports and tweaks to the top of every ...