Skip to main content

A networked standard template library and ORM for python

Project description

Python StdNet
===================

A networked standard template library for python. It includes a lightweight ORM.


Backends
====================

* local memory
* memcached (not fully supported)
* redis


Installing and Running
================================
To install::

python setup.py install
pip install python-stdnet
easy_install python-stdnet


Object-relational mapping
================================
The module ``stdnet.orm`` is a lightweight ORM.
For example::

from stdnet import orm


class Group(orm.StdModel):
name = orm.AtomField(unique=True)


class User(orm.StdModel):
username = orm.AtomField(unique=True)
password = orm.AtomField()
group = orm.ForeignKey(Group)

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

python-stdnet-0.2.1.zip (48.5 kB view hashes)

Uploaded Source

Supported by

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