Tagged Questions

TurboGears, another open source MVC-style Web application framework based on Python.

learn more… | top users | synonyms

31
votes
12answers
13k views

Django vs other Python web frameworks?

I've pretty much tried every Python web framework that exists, and it took me a long time to realize there wasn't a silver bullet framework, each had its own advantages and disadvantages. I started ...
10
votes
6answers
10k views

Turbogears 2 vs Django - any advice on choosing replacement for Turbogears 1?

I have been using Turbogears 1 for prototyping small sites for the last couple of years and it is getting a little long in the tooth. Any suggestions on making the call between upgrading to Turbogears ...
9
votes
6answers
2k views

Django, Turbo Gears, Web2Py, which is better for what?

I got a project in mind that makes it worth to finally take the plunge into programming. After reading a lot of stuff, here and elsewhere, I'm set on making Python the one I learn for now, over C# or ...
8
votes
8answers
2k views

Can anyone point out the pros and cons of TG2 over Django?

Django is my favorite python web framework. I've tried out others like pylons, web2py, nevow and others. But I've never looked into TurboGears with much enthusiasm. Now with TG2 out of beta I may ...
8
votes
4answers
2k views

Python Webframework Confusion

Could someone please explain to me how the current python webframworks fit together? The three I've heard of are CherryPy, TurboGears and Pylons. However I'm confused because TurboGears seems to use ...
6
votes
4answers
1k views

Good interview questions for a Python/TurboGears web developer? [closed]

If you were looking to hire a web developer who would primarily be working with TurboGears/Python - what sort of questions should you ask them?
4
votes
2answers
240 views

Turbomail Integration with Pyramid

I am in need of a method to send an email from a Pyramid application. I know of the Pyramid_Mailer http://docs.pylonsproject.org/projects/pyramid_mailer/dev/ however it seems to have a fairly limited ...
4
votes
8answers
2k views

How do Python and PHP compare for ecommerce?

If I were to start an ecommerce store, which language would you suggest I start with? Python or PHP? And would it be wise to use Python for an ecommerce site in favor of PHP? PHP has lots of ...
3
votes
2answers
616 views

How to extend the Turbogears 2.1 login functionality

I'm using Turbogears 2.1 and repoze.who/what and am having trouble figuring out how to extend the basic authentication functionality. I am essentially attempting to require users to activate their ...
3
votes
2answers
439 views

What's the equivalent of Rails' Migrations or Django's South in Pylons and TG2?

Does anyone know how Pylons and TG2 projects handle database migrations? I'm looking for something similar to Rails' Migrations and Django's South.
3
votes
1answer
939 views

Turbogears 2 Tutorials?

Anyone know of a good beginners tutorial for Turbogears 2? I'm particularly interested in one that would have some details on working with existing database schema rather than creating from scratch. ...
3
votes
1answer
1k views

Form Initialization with ToscaWidgets

Question: How do I prefill a CheckBoxTable from ToscaWidgets with values. Background: I've looked everywhere and I can't seem to figure out how to initialize a particular form field with ...
2
votes
1answer
116 views

Installing turbogears 2.1 on Windows 7 x86 error “The system cannot find the file specified”

I created enviroment in C:\Projects2010\Python\Environments: C:\Python27\Scripts\virtualenv.exe myenv Then ran activate.bat: C:\Projects2010\Python\Environments\myenv\Scripts\activate.bat Then ...
2
votes
1answer
212 views

Can Core Data be used on Linux?

This might be a stupid question, but I was wondering whether or not you can use the Core Data libraries on Linux at all? I'm planning how to build the server side of an iPhone app that I'm working ...
2
votes
1answer
156 views

how to save data in a many to many relationship using turbogears and sqlalchemy

hi i have a many to many relationship between a user and a group.and i will like to add a user with many groups in my database.how do i do that if my database is as follows user_group_table = ...
2
votes
1answer
255 views

Turbogears, mako form displaying as plain text

Hi I'm generating a sprox form with Turbogears 2.1 and trying to display it in a mako template. Here is my code: To define the form: class NewUserForm(AddRecordForm): model = User newuserform = ...
2
votes
3answers
336 views

python/genshi newline to html <p> paragraphs

I'm trying to output the content of a comment with genshi, but I can't figure out how to transform the newlines into HTML paragraphs. Here's a test case of what it should look like: input: ...
2
votes
2answers
1k views

Example Facebook Application using TurboGears — pyFacebook

I have a TurboGears application I'd like to run through Facebook, and am looking for an example TurboGears project using pyFacebook or minifb.py. pyFacebook is Django-centric, and I can probably ...
1
vote
0answers
8 views

Exposing an HTTP proxy through a Turbogears controller

I have a webapp implemented in TurboGears 1.1 that's kind of a front-end for a REST API. I'm trying to expose a URL path on my webapp that's a proxy to the original REST API, so I can access ...
1
vote
0answers
38 views

How to set the 'value' parameter for a hidden field in runtime in Turbogears

In order to set the value for a HiddenField in toscawidget, the only parameter I've found useful is 'default' (surprisingly, parameter 'value' in toscawidgets doesn't represent 'value' in html). ...
1
vote
0answers
83 views

i can't run tg-admin in python2.7, how can i do that?

I was trying to run tg-admin in ubuntu 11.04 on python 2.7 but I keep having an error shown below, but later I was able to run it using python 2.6 like this : #!/usr/bin/python # ...
1
vote
0answers
63 views

Integrating TurboGears/repoze with JanRain

I am trying to figure out how to use the Janrain Engage one click login system to authenticate users on my TurboGears application in a similar manner to how it works in Web2Py. I have got as far as ...
1
vote
2answers
1k views

Python web framework with CRUD powered by AJAX

I am looking for a Python web framework which will allow me to rapidly build a CRUD application with automatic AJAX support. The framework should be able to generate a nice table which is sortable ...
1
vote
1answer
93 views

How to let actions support more parameters?

I'm using pylons, and my action of controller is: class UserController(BaseController): def create(self): name = request.POST['name'] email = request.POST['email'] ...
1
vote
5answers
683 views

Simple ascii url encoding with python

look at that: import urllib print urllib.urlencode(dict(bla='Ã')) the output is bla=%C3%BC what I want is simple, I want the output in ascii instead of utf-8, so I need the output: bla=%C3 if ...
1
vote
1answer
203 views

Returning Database Blobs in TurboGears 2.x / FCGI / Lighttpd extremely slow

I am running a TG2 App on lighttpd via flup/fastcgi. We are reading images (~30kb each) from BlobFields in a MySQL database and return those images with a custom mime type via a controller method. ...
1
vote
0answers
303 views

good beginner tutorial for turbogears 2 [closed]

I find myself struggling to do simple things that would normally take me about 5 minutes to do in PHP. At the moment, I'm trying to create a basic form which will print the details on another page ...
1
vote
1answer
77 views

TG2.1: Proper location to store a database session instance?

I am using a custom database (MongoDB) with TG 2.1 and i am wondering where the proper place to store the PyMongo connection/database instances would be? Eg, at the moment they are getting created ...
1
vote
0answers
147 views

Problem in creating new objects while using sqlalchemy with database sharding

I am using sqlalchemy(version-0.4.5) with turbogears(version - 1.0) as its orm layer, with sharded multiple databases instances at the backend. While sqlalchemy seems to support passing ...
1
vote
1answer
109 views

How do I add content before </body> in extended page? (KID templates)

I've got master.kid (simplified): <html> <head py:match="item.tag == 'head'"> <title>My Site</title> </head> <body py:match="item.tag == 'body'"> <h1>My ...
1
vote
1answer
188 views

TurboGears2/SQLAlchemy: Inserting a new row into a table with an autoincrement Primary Key

I am a noob and am trying to get my head around TG2 and SQLAlchemy. The specific problem I am wrestling with at the moment is how to insert a new row into a table when the PK field is configured as ...
1
vote
3answers
107 views

Switching databases in TG2 during runtime

I am doing an application which will use multiple sqlite3 databases, prepopuldated with data from an external application. Each database will have the exact same tables, but with different data. I ...
1
vote
2answers
297 views

How can i use TurboMail 3 together with TurboGears 2

Hy, I want to use TurboMail3 (website) together with a TurboGears 2(website) project. Which files to I have to modify to include TurboMail into my TurboGears project? Everything I find on the web is ...
1
vote
1answer
140 views

How best to pass database objects to a turbogears WidgetList?

I am trying to set up form widgets for adding some objects to the database but I'm getting stuck because it seems impossible to pass any arguments to Widgets contained within a WidgetList. To clarify ...
1
vote
1answer
263 views

How to create a controller method in Turbogears that can be called from within the controller, or rendered with a template

If you have a controller method like so: @expose("json") def artists(self, action="view",artist_id=None): artists=session.query(model.Artist).all() return dict(artists=artists) How can you ...
1
vote
2answers
709 views

Does anyone know of a python based web ui for snmp monitoring?

Comparable to cacti or mrtg.
1
vote
4answers
485 views

How to update turbogears application production database

I am having a postgres production database in production (which contains a lot of Data). now I need to modify the model of the tg-app to add couple of new tables to the database. How do i do this? I ...
1
vote
5answers
822 views

How can I download python .egg files, when behind a firewall

I'm going to try out turbogears however I'm on windows vista. however due to firewall proxy problems, it seems i can't download .egg files which is required for setup turbogears to get installed in my ...
1
vote
4answers
925 views

Doing CRUD in Turbogears

Are there any good packages or methods for doing extensive CRUD (create-retrieve-update-delete) interfaces in the Turbogears framework. The FastDataGrid widget is too much of a black box to be useful ...
0
votes
1answer
22 views

sqlachemy declarative defining triggers and indexs (Postgres 9)

Is there a way in the sqlalchemy class of a table to define/create triggers and indexes for that table? For instance if i had a basic table like ... class Customer(DeclarativeBase): ...
0
votes
1answer
50 views

Turbogears2: analog of django context processors

Is there any analog of django context processors in turbogears2? In tg1 was stdvars, but not in tg2 anymore. Explaining: I need to have some template tags, avaible on each page, without obvious ...
0
votes
1answer
31 views

How to access a static file in controller in turbogears

I have an XML file in /my_project/public/xml/file.xml, that I want to read and parse it in one method in controller. The file can be easily accessed through a template, but I have no experience with ...
0
votes
1answer
37 views

Mixing cython and turbogears 2.1

Is it possible to integrate Cython and TG2? I have one computation (written in python) which is heavily numerical and would largly benefit from rewriting into C or cython.
0
votes
2answers
127 views

Logging queries with sqlalchemy 0.6

With turbogears 2.1 and sqlalchemy 0.7 the queries from console were logged out to stdout. However I needed to downgred to 0.6 and they no longer appear. Documentation of logging seems to be identical ...
0
votes
0answers
196 views

Run OpenERP web interface via mod_python over TurboGears deamon

We are trying to make OpenERP work via two reverse proxies (Web VPN setup), but Turbo Gears doesn't seem to be playing well when being proxied. It seems that Turbogears apps are quite OK if its being ...
0
votes
0answers
18 views

can turbogears configure file support scribe configure?

I want to configure scribe logging in turbogears configure file and use it just like a common logger. Is it possible? How?
0
votes
1answer
75 views

TG2.1- select a row from HTML table and edit/delete it

I have created a html table (using TG2.1 with mako) for a file from MySQL db. Now I would like to provide for "Edit / Delete" a particular row (record), by selecting that row in table. I am NOT using ...
0
votes
1answer
64 views

jQuery encodes my data in a different way on server than on locahost?

i've a function like this: function flush_changes() { jQuery('#save-changes').replaceWith('<span id="save-changes">Saving..</span>'); var changes = new Array(); ...
0
votes
3answers
94 views

sqlautocode : primary key required in tables?

This relates to primary key constraint in SQLAlchemy & sqlautocode. I have SA 0.5.1 & sqlautocode 0.6b1 I have a MySQL table without primary key. sqlautocode spits traceback that "could not ...
0
votes
1answer
92 views

Using kajiki in TG2.1

the recently released turbogears 2.1 mentioned about the support of kajiki, a genshi-like templating engine, but i cant find any resource on how to get started to use tg2.1 with kajiki. any ideas?

1 2