Metadata-Version: 2.1
Name: db_generator
Version: 1.0.2
Summary: A package which will create sqlite3 database code by configuring them in json file
Author: Ganesh Yatesh Joshi
Author-email: ganesh.22110724@viit.ac.in
Keywords: python,database,json configuration for database,json,sqlite3,mobile database
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown



#Use for

This project allows user to define json structure for creating sqlite3 
database as defined in the json file.

#Use the following code


import os
from src.main import main

def generator():
    To generate the schema for us
    sr = input('Enter your source of json file> ')
    dis = input('Enter your destination for .db file> ')
    main(sr, dis)

if __name__ == '__main__':
    generator()

# make sure

that the json structure is same as the given structure.
Have following project structure

your project
    |
    |json_folder
        |
        |json_files
    main.py 


