Introduction

This is a tool to help The Good Registry to handle bulk orders. First, it was for Kiwibank. Now it's used in every large amount orders.

Demo

Install Python

  1. Install homebrew
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  1. Install python with homebrew
$ brew install python3

# permissions errors
$ sudo chown -R "$USER":admin /usr/local
$ sudo chown -R "$USER":admin /Library/Caches/Homebrew
  1. check python version
python3 -V

Install Virtualenv (Optional)

  1. Install pip3
$ sudo easy_install pip3
  1. Install pip3 install virtualenv
$ sudo pip3 install virtualenv
  1. Create a new virtualenv
$ virtualenv venv -p python
  1. Activate virtualenv
$ . venv/bin/activate

Install Packages

  1. install poppler
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
$ brew install poppler
  1. install python packages
$ python3 -m pip install -r requirements.txt

Run app

$ python3 app.py

Reference

  1. Install Poppler on Mac OSX
  2. FPDF
  3. xlrd
  4. pdf2image
  5. Gooey