Coder Social home page Coder Social logo

nonsqlite's Introduction

nonsqlite

Non SQL Database over SQLite3

Getting Started

$ pip install nonsqlite

This package install nonsqlite and Object modules

Object Module

Micro ORM Framework

Create a new Object collection

from nonsqlite.Object import Object


class Person(Object):
  def __init__(self):
    self.name = ''
    self.age  = 0

Specify the database to save the collection

Person._db_name = 'db.db'

If the _db_name is omitted, Object use the default database: Object.db in the current directory

Save a new Object in collection

a = Person()
a.name = 'Piter'
a.age  = 21
a.save()

Load the object from a json

a = Person.loads(json)
a.save()

Query Objects in collection

  • Get one object
a = Person.get({'name': 'Piter'})
print a.name
  • Get list of coincidences: filter({}, limit=, sort=), filterAND([{}]), filterOR([{}])
a = Person.filter({'name': 'Piter'}, sort='-age') # Order by age desc
for i in a:
  print i.name
a = Person.filterAND([{'name': 'Piter'}, {'age': 21}])
for i in a:
  print i.name
  • Wildcard $
a = Person.filter({'$': 'Piter'})

Delete an Object in collection

a = Person.get({'name': 'Piter'})
a.delete()

Drop all Objects in collection

Person.drop()

Count Objects with Occurrences

n = Person.count({'name': 'Piter'})

Count all Objects in Collection

n = Person.len()

nonsqlite's People

Contributors

emilianobilli avatar npajoni avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

gulliverinv

nonsqlite's Issues

New Filters

Can we had filter with regexp and the NOT parameter?

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.