GithubHelp home page GithubHelp logo

sirithink / curd.py Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hit9/skylark

0.0 2.0 0.0 2.27 MB

Tiny Python ORM for MySQL

Home Page: http://curdpy.readthedocs.org

License: BSD 2-Clause "Simplified" License

curd.py's Introduction

CURD.py

Tiny Python ORM for MySQL.

Latest version: v0.4.1

Development status: 3 - Alpha

Only support C, U, R, D, responsing to its name:

  • Create

  • Update

  • Read

  • Delete

NOTE: CURD.py may not be stable before version v1.0

Sample Code

>>> from models import User
>>> user = User(name='Tom', email='[email protected]')
>>> user.save()  # insert
1L
>>> user.email = '[email protected]'
>>> user.save()  # update
1L
>>> [user.name for user in User.select()]  # select
[u'Tom']
>>> query = User.where(name='Tom').delete()
>>> query.execute()  # delete
1L
>>> user = User.create(name='Kate', email='[email protected]')  # another insert
>>> user.data
{'email': '[email protected]', 'name': 'Kate', 'id': 2L}
>>> user.destroy()  # another delete
1L

More examples: docs/sample/.

Install

$ pip install CURD.py

Documentation

Sample App

A simple message board built with CURD.py and Flask: examples/messageboard

FAQ

Tests

License

LICENSE-BSD

Changes

CHANGES

curd.py's People

Contributors

2shou avatar hit9 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.