Python Form Processing Alternatives

django.forms very nice, and almost exactly what I want to do in my current project, but unfortunately the Google App Engine makes most of the rest of Django unusable, so packaging with the application seems kind of silly.

I also discovered FormAlchemy, which is an analogue of SQLAlchemy Django forms, and I intend to fully explore this, but its association with SQLAlchemy suggests that this can also cause some problems.

Is there any HTML form processing library for python that I haven't looked at?

+3
source share
4 answers

WTForms, , . -, Django.

django, imho .

+13

, " Django " " ". ? , ,

import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'

from google.appengine.dist import use_library
use_library('django', '1.1')

django.forms, Django ( Google)?

,

Django 1.0 SDK. Django , Django Django .

Django .

. " "; Google Google . ( , , , , Django, App Engine, ! -).

+3

formencode, , GAE.

+2

, django.forms? .

Aside, there are a few patches that make django sortof work in the application, although I assume you reviewed and discarded them.

+1
source

Source: https://habr.com/ru/post/1722390/


All Articles