Git Product home page Git Product logo

data-migration's Introduction

Moving data

Table of contents

  1. Introduction
  2. Implementation
  3. How to run

Introduction

We are provided with a zip file containing JSON documents listing orders. We have to put these JSON documents in a PostgreSQL database.

Implementation

I used the Python library psycopg2 to interface with PostgreSQL.

Here is the logic of the main() function:

open zip file
for each JSON document
    convert document to Python objects (list of dictionaries)
    for each "order" element in the list of dictionaries
        collect list of "line_items"
        insert "order" in a PostgreSQL "orders" table
        for each item in the "line_items" list
            insert item in the "items" table

To prevent SQL injection with dynamically generated SQL executable strings, I use either the sql.Identifier for table names or direct string composition in the cursor.execute() function argument.

How to run

Place input zip files in the input folder at the root of the repository, and execute run.sh.

data-migration's People

Contributors

jschnab avatar

Watchers

 avatar

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.