Giter Club home page Giter Club logo

bfpd-sql's Introduction

bfpd-sql

Simple command line utility for loading Branded Food Products csv into a MySQL/MariaDB database.

What's here

  • ./config -- go type definitions for configuring the app.
  • ./ds -- datasource interface implemented for mariadb. Feel free to implement a ds for your favorite database like postgres.
  • ./ingest -- interface implemented for branded foods, where the csv gets translated into the model
  • ./model -- go type definitions for loading the csv data
  • ./schema -- schema for the mariadb database

How to run

  1. Install go v 13 or greater and a recent version of mariadb
  2. Download the branded foods and 'Supporting data for Downloads' csv from Food Data Central and unzip into a directory of your choice.
  3. Clone this repo into a directory of your choice and build the program: go build -o bfpdloader main.go
  4. Create a schema: mysql -u your-user -pyour-password -e'create schema bfpd'
  5. Install the schema using the one provided in the ./schema directory: mysql -u your-user -pyour-password bfpd < bfpd-schema.sql
  6. In the build directory, create a config.yaml which matches the schema you just created:
    url: 127.0.0.1
    db: bfpd
    pwd: your-password
    user: your-user
  7. Load the nutrients table: ./bfpdloader -t NUT -i /your-csv-install-path/nutrient.csv
  8. Load the derivations table: ./bfpdloader -t DERV -i /your-csv-install-path/food_nutrient_derivation.csv
  9. Load the branded foods database ./bfpdloader -t BFPD -i /your-csv-install-path/bfpd/

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.