Giter Site home page Giter Site logo

joedb's Introduction

joedb

A simple database in python that is built on python dictionary and stored using json

This is a simple Database implementation built on top of json The idea behind was found at https://medium.freecodecamp.org/how-to-write-a-simple-toy-database-in-python/ by Palash Bauri

The implementation is simple
A database here is treated nothing more than a python dictionary.
But after every change in the in memory dictionary database, the database is written to a file specified
when creating an instance of the database object.
This file can then be loaded back in memory when the database is called again after it has been deleted.

Methods to be used are
load(self, location)
        this loads the database file into a memory as dictionary

get(self, key)
        this returns the value stored in memory with the key provided

delete(self, key)
        This removes the key and related value from the database

flush(self)
        This clears the entire database content

dumpdb(self)
        This writes the dictionary in memory database to a file

_load(self)
        An internal method that loads the database from file

variables used are

self.location
        This is the path and filename of the database file

Example


mydb = joedb.JoeDb("mydb.db") mydb.set("Hello", "World") mydb.get("Hello")

outputs: "World"

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.