/pandas-web

Web based Pandas API

Primary LanguageJavaScriptApache License 2.0Apache-2.0

pandas-web

Web based Pandas API

An attempt to create a web based Pandas application where user can drag and drop data files and starts working on them visually.

  1. Clone project

git clone https://github.com/pvamshi/pandas-web

  1. Create virtual environment inside the project

cd pandas-web

virtualenv -p `which python3` venv

  1. Run virtualenv

source venv/bin/activate

  1. Build client code

cd client

npm install

npm build

cd ..

  1. Run server

python app/main.py

You can check the API swagger at http://localhost:5000/api

Application at http://localhost:5000