Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.33 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.33 KB

deck-PyCon2017

My presentation slides and source code for PyCon 2017.

The slides for this deck is an Apple Keynote file.

Running the Potatolist Stack

  1. Bob's DB Wrapper

    Make sure you have the awesome Pipenv installed!

    $ cd src/python
    $ pipenv install        # pipenv sets up a virtualenv and installs dependencies
    $ pipenv shell          # launch a shell session inside the virtualenv
    $ python server.py      # run the zerorpc server
  2. Carding's ExpressJS Web Server

    $ brew install zeromq   # for mac only. zeromq C headers are required for zerorpc
    $ cd src/javascript
    $ npm install           # install dependencies
    $ node index.js         # run the expressjs server
  3. Dodong's Pie Chart "Analytics"

    $ cd src/python3
    $ pipenv install
    $ pipenv shell          # same procedure as above, but this time runs a sanic server
    $ python analytics.py   # and a zerorpc client

License

MIT License. See LICENSE.

Additional Reading