Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hijal/youtube-search
https://github.com/hijal/youtube-search
css3 django html5 javascript python3
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hijal/youtube-search
- Owner: hijal
- License: other
- Created: 2019-07-31T02:09:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:57:16.000Z (about 2 years ago)
- Last Synced: 2023-03-07T20:21:40.363Z (almost 2 years ago)
- Topics: css3, django, html5, javascript, python3
- Language: Python
- Size: 14.6 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Django Youtube Search Demo
![Screenshot](screenshot/screenshot.png)
## AboutIt was made using **Python 3.7** + **Django** and database is **SQLite**.
**Bootstrap** was used for styling.Anyone can search and play video and also able to view that video in youtube.
## Prerequisites
Install virtual environment:
```bash
$ virtualenv .
```Activate virtual environment:
On Windows:
```bash
$ .\Scripts\activate
```Install dependencies:
```bash
$ pip install -r requirements.txt
```## How to run
### Default
You can run the application from the command line with manage.py.
Go to the root folder of the application.Run migrations:
```bash
$ python manage.py migrate
```Initialize data:
```bash
$ python manage.py loaddata users posts comments
```Run server on port 8000:
```bash
$ python manage.py runserver 8000
```