Skip to main content

wtforms integration for peewee

Project description

wtf-peewee

this project, based on the code found in wtforms.ext, provides a bridge between peewee models and wtforms, mapping model fields to form fields.

example usage:

first, create a couple basic models and then use the model_form class factory to create a form for the Entry model:

from peewee import *
from wtfpeewee.orm import model_form
import wtforms

class PasswordField(TextField):
    """ Custom-defined field example. """
    def wtf_field(self, model, **kwargs):
        return wtforms.PasswordField(**kwargs)

class Blog(Model):
    name = CharField()

    def __unicode__(self):
        return self.name

class Entry(Model):
    blog = ForeignKeyField(Blog)
    title = CharField()
    body = TextField()
    protected = PasswordField()

    def __unicode__(self):
        return self.title

# create a form class for use with the Entry model
EntryForm = model_form(Entry)

Example implementation for an "edit" view using Flask:

@app.route('/entries/<int:entry_id>/', methods=['GET', 'POST'])
def edit_entry(entry_id):
    try:
        entry = Entry.get(id=entry_id)
    except Entry.DoesNotExist:
        abort(404)

    if request.method == 'POST':
        form = EntryForm(request.form, obj=entry)
        if form.validate():
            form.populate_obj(entry)
            entry.save()
            flash('Your entry has been saved')
    else:
        form = EntryForm(obj=entry)

    return render_template('blog/entry_edit.html', form=form, entry=entry)

Example template for above view:

{% extends "layout.html" %}
{% block body %}
  <h2>Edit {{ entry.title }}</h2>

  <form method="post" action="">
    {% for field in form %}
      <p>{{ field.label }} {{ field }}</p>
    {% endfor %}
    <p><button type="submit">Submit</button></p>
  </form>
{% endblock %}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wtf_peewee-3.2.1.tar.gz (68.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wtf_peewee-3.2.1-py3-none-any.whl (17.9 kB view details)

Uploaded Python 3

File details

Details for the file wtf_peewee-3.2.1.tar.gz.

File metadata

  • Download URL: wtf_peewee-3.2.1.tar.gz
  • Upload date:
  • Size: 68.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wtf_peewee-3.2.1.tar.gz
Algorithm Hash digest
SHA256 830f94a326a5790c1a17b29bc9944b30de97b6cc66e6f9d06895e3ff3a60b211
MD5 37b6d3f5b12bd026712e5cf57a758774
BLAKE2b-256 18a5fee2253e43cd259f0ea47ff67f4fca15fcf202c04a77db42746300ac8cbf

See more details on using hashes here.

File details

Details for the file wtf_peewee-3.2.1-py3-none-any.whl.

File metadata

  • Download URL: wtf_peewee-3.2.1-py3-none-any.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wtf_peewee-3.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1bf17e8bc38720aa97b6b5cbb709e31cda7fe1cb53623e2d159f40418e83c380
MD5 6938b20a71b92d85257ff18e508a9214
BLAKE2b-256 aedb79702929fd9e3c78b88403c1d5e3c90d02fc72b3fe6ca7e94e8ff37c33bf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page