Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ptyadana/django-web-video-rental
Video rental application and API using django 3 and Tastypie REST framework
https://github.com/ptyadana/django-web-video-rental
bootstrap3 django-application django-project django3 djnago heroku-deployment herokuapp python3 tastypie webapp webapplication
Last synced: about 1 month ago
JSON representation
Video rental application and API using django 3 and Tastypie REST framework
- Host: GitHub
- URL: https://github.com/ptyadana/django-web-video-rental
- Owner: ptyadana
- License: mit
- Created: 2020-04-10T13:28:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T04:01:18.000Z (about 2 years ago)
- Last Synced: 2024-11-15T07:20:41.894Z (3 months ago)
- Topics: bootstrap3, django-application, django-project, django3, djnago, heroku-deployment, herokuapp, python3, tastypie, webapp, webapplication
- Language: Python
- Homepage: https://vidly-movie-rental-by-ptyadana.herokuapp.com/
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Vidly Video Rental Application and API
Vidly Video Rental Application which displays the list of movie information, details movie information in both as App or JSON for API integration.
+ Python 3
+ Django 3
+ Tastypie for REST framework
+ bootstrap 4[Visit Vidly Video Rental App on heroku](https://vidly-movie-rental-by-ptyadana.herokuapp.com/)
-----
[For Videly API end points](https://vidly-movie-rental-by-ptyadana.herokuapp.com/api/movies/)
#### Sample JSON
```javascript
{
"meta": {
"limit": 20,
"next": null,
"offset": 0,
"previous": null,
"total_count": 3
},
"objects": [
{
"daily_rental_rate": 2.5,
"id": 1,
"number_in_stock": 30,
"released_year": 2019,
"resource_uri": "/api/movies/1/",
"title": "Spiderman Far From Home"
},
{
"daily_rental_rate": 1.5,
"id": 2,
"number_in_stock": 10,
"released_year": 2012,
"resource_uri": "/api/movies/2/",
"title": "Man In Black 3"
},
{
"daily_rental_rate": 2.5,
"id": 3,
"number_in_stock": 15,
"released_year": 1990,
"resource_uri": "/api/movies/3/",
"title": "Home Alone"
}
]
}