Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/praneethkarnena/pandas-django-rest-framework

A Django API project built using Django Rest Framework for demonstrating basic usage of Pandas.
https://github.com/praneethkarnena/pandas-django-rest-framework

dataset django django-rest-framework pandas python python3 rest-api

Last synced: about 2 months ago
JSON representation

A Django API project built using Django Rest Framework for demonstrating basic usage of Pandas.

Awesome Lists containing this project

README

        

# Pandas - Django Rest Framework

A Django API project built using Django Rest Framework for demonstrating basic usage of Pandas.

## Features:

- Upload a dataset
- Extract dataset details
- Export dataframe as excel
- Export stats
- Plot histogram

## Run:

This project depends on Celery and RabbitMQ. Please follow the links below for configuration:

- http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
- http://docs.celeryproject.org/en/latest/getting-started/brokers/rabbitmq.html

* Clone - `git clone`

* Set environment variables from `ENV_VARS.txt` file

* Install requirements - `pip install -r requirements.txt`

* Run database ops:
- `python manage.py makemigrations`
- `python manage.py migrate`

* Run the server: `python manage.py runserver`