#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