Skip to main content

Insert records to relational database from json file

Project description

Json DB Upload: Upload to a database from a JSON file

Module enables a user to insert records into a database from a json file and also enables insertion into tables with foreign keys. Hence, if you need to table A first, then key the primary keys from that to table B, this is possible from JsonDBUpload!

What problem does this solve?

When you have a new application there are times where you need to insert some initial set of records. Or there maybe a time where you need to synchronise data selectively between data stores of sorts. This is where this module can be of use. It can help to insert records in any relational database which has a connection to it via sqlaclchemy

How does it do this?

The module takes in an argument of a json file (or a list-dictionary), and then proceeds to insert records one by one. The json file must contain the table name, and label and foreign keys.

There are two key paramaters:

  1. A database session - this is from Flask SQLAlchemy
  2. An optional logger module (e.g. such as https://pypi.org/project/mclogger/ )

How to install?

JSONDBUpload is avaialble through PyPi or you may use git:

pip install jsondbupoad

Or, through git:

git clone https://github.com/pub12/jsondbupload.git

How to use jsondbupload?

The module is relatively easy to use. All that is required is a file, and a database session. The file format is as follows:

[
	{		
		"table_name":"<table name>", 
		"foreign_keys":[ { "<field name in current table>":"<table name of foreign table>.<field name>"} ],
		"data":[
					{"<field name>":"<field value>", ... },
					....
		]
	}
]

There are three key fields:

  • table_name: the name of the table to update
  • foreign_keys: a list of foreign key lookup from current file - this entry is optional
  • data: data to update

Here's a working example to update 3 tables. Firstly this is the sqlalchmey schema:

class Author(db.Model):
	__tablename__ = 'author' 
	id = db.Column(db.Integer(), primary_key=True)
	name = db.Column(db.Integer() )

class Book(db.Model):
	__tablename__ = 'book' 
	id = db.Column(db.Integer(), primary_key=True)
	name = db.Column(db.Integer() )
	author_id = db.Column( db.Integer()  , db.ForeignKey( 'author.id'  ) )
	_author = db.relationship("Author", backref=db.backref("author" ), lazy='joined')


class Bookset(db.Model):
	__tablename__ = 'bookset' 
	id = db.Column(db.Integer(), primary_key=True)
	name = db.Column(db.Integer() )

And here's the json data to be used, this is in a file called db_upload_file.json (this can be any filename of course):

[
	{		
		"table_name":"author", 
		"data":[
					{"id":"AA_1", "name":"James"  },
					{"id":"AA_2", "name":"Moneypenny" }
		]
	},
	{		
		"table_name":"book", 
		"foreign_keys":[ { "author_id":"author.id"} ],
		"data":[
					{"id":"BB_1", "author_id":"AA_1", "name":"Never say Never"  },
					{"id":"BB_2", "author_id":"AA_2", "name":"Goldeneye" }
		]
	},
	{		
		"table_name":"bookset", 
		"data":[
					{"id":"", "name":"Best of Bond"  }
		]
	}
]

In this example, we have:

  • Updates to table author with two rows. Please note, that in the database schema the field id is a primary key with automatic values so the entries will be ignored.
  • Updates to table book has a foreign key linkage where author_id is supposed to link to table book.id and the temporary values are linked to the table author by the foreign_keys description.
  • Update to table bookset is much simpler where the name field is specified, and the primary key id has no entry as any value given to it will be ignored anyway as it is a primary key.

Finally, this is the code:

from jsondbupload import JsonDBUpload
from flask import Flask
from flask_sqlalchemy import SQLAlchemy, Model

from mclogger import MCLogger

#Define the table methods
class Author(db.Model):
	__tablename__ = 'author' 
	id = db.Column(db.Integer(), primary_key=True)
	name = db.Column(db.Integer() )

class Book(db.Model):
	__tablename__ = 'book' 
	id = db.Column(db.Integer(), primary_key=True)
	name = db.Column(db.Integer() )
	author_id = db.Column( db.Integer()  , db.ForeignKey( 'author.id'  ) )
	_author = db.relationship("Author", backref=db.backref("author" ), lazy='joined')


class Bookset(db.Model):
	__tablename__ = 'bookset' 
	id = db.Column(db.Integer(), primary_key=True)
	name = db.Column(db.Integer() )
	
#Instantiate flask
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///test.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy(app)

#Create logger - this is from https://pypi.org/project/mclogger/
logger = MCLogger( 'test_log.text').getLogger()

#>>>> Two lines to ulaod json data!  It will also do the commit to the database.  The logger is optional and will show on screen what's happening under the hood.
j2db = JsonDBUpload( db, logger )
j2db.update_tables_from_file(  'db_upload_file.json' )
#>>>>>

#After inserts, this will print out the records updated
auth_list = db.session.query( Author ).all()
for item in auth_list:
	print( item.name )

Class JsonDBUpload Methods overview

  • init(db, logger=None)

    Create instance of the JsonDBUpload instance.

    • db: A reference to the SQLAlchemy database object reference with link already open to the database
    • logger: The logger is an optional entry of the module logging or any sub-class of that such as mclogger. If provided, it'll show a color log in the console of all the inserts
  • update_tables_from_file(filename )

    Update the database tables specfied in a given json file

    • filename: A string reference to the filename with relative or absolute path
  • update_tables_from_dict( data )

    Update the database tables specfied in a given list of dictionaries

    • data: A list of dictionaries with table names for each. Format must be as follows:
    
     [
     	{		
     		"table_name":"<table name>", 
     		"foreign_keys":[ { "<field name in current table>":"<table name of foreign table>.<field name>"} ],
     		"data":[
     					{"<field name>":"<field value>", ... },
     					....
     		]
     	}
     ]
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsondbupload-1.0.6.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsondbupload-1.0.6-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file jsondbupload-1.0.6.tar.gz.

File metadata

  • Download URL: jsondbupload-1.0.6.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.9 Linux/5.4.0-120-generic

File hashes

Hashes for jsondbupload-1.0.6.tar.gz
Algorithm Hash digest
SHA256 efa75bad289798e1f2bb25cc448a6407371c8539f845a365f2f5dc5e5db5793e
MD5 8cfa3b77e918e499f4667dc736e3c599
BLAKE2b-256 abf777739dc22bcf68ab1e909362db5206c3fa004a24ee3bac5721a5e0e65936

See more details on using hashes here.

File details

Details for the file jsondbupload-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: jsondbupload-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.9 Linux/5.4.0-120-generic

File hashes

Hashes for jsondbupload-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d4224f39140ca825aa7e4d467d116eccfc712af122fad5c53134306247e7fed8
MD5 0ebfb3e73ce3e08453737a8a44e9d6b8
BLAKE2b-256 af119b4d2e656b757c5858f44cf8c00300b5b550c29ed8a25ff564c2504cf4d1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page