Skip to content
This repository has been archived by the owner on Jan 6, 2020. It is now read-only.

rmed/breezedb_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

breezedb

Build Status

A simple file-based database engine.

This repository contains the Python implementation of breezedb. Documentation is available from source or online

This code is written for Python 2.7

Licensed under GPLv2

Main features

  • breezedb aims to be a simple way of storing data in files, avoiding the need for a database server to be installed and running in the machine.
  • Stores data in a single file
  • It is meant to store small amounts of data.
  • All operations are done on the local file system.
  • There is no need to redistribute a database with your application, as it can be created on the go.
  • JSON structure for organizing the data.

Installation

You can install the library from source by running:

python setup.py install

with the required permissions. You can also install it from PyPI by running:

pip install breezedb

For more information, including structures and organization, please visit the documentation.