Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/praneethkarnena/pandas-django-rest-framework
- Owner: PraneethKarnena
- Created: 2020-01-04T18:36:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:23:21.000Z (about 2 years ago)
- Last Synced: 2024-04-17T00:59:19.643Z (9 months ago)
- Topics: dataset, django, django-rest-framework, pandas, python, python3, rest-api
- Language: Python
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
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`