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.
- Clone project
git clone https://github.com/pvamshi/pandas-web
- Create virtual environment inside the project
cd pandas-web
virtualenv -p `which python3` venv
- Run virtualenv
source venv/bin/activate
- Build client code
cd client
npm install
npm build
cd ..
- Run server
python app/main.py
You can check the API swagger at http://localhost:5000/api
Application at http://localhost:5000