Metadata-Version: 2.1
Name: ersciyt
Version: 1.87
Summary: Youtube Downloader
Home-page: https://github.com/epg900/yt.git
Author: epg
Author-email: epg900@gmail.com
License: GNU GENERAL PUBLIC LICENSE
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

Erscipcard
=========

Quick start
-----------
1.Add "ersciyt" to your INSTALLED_APPS in your project setting.py file:
```
INSTALLED_APPS = [
...,
'ersciyt',
]
```

2.Include the erscipcard URLconf in your project urls.py like this:

```
path('yt/', include('ersciyt.urls')),
```

3.Visit http://127.0.0.1:8000/yt/ to create users and its cards.

add this line to your project setting.py
```
ALLOWED_HOSTS = ['*']
CSRF_TRUSTED_ORIGINS = ['https://*.cloudshell.dev','https://*.127.0.0.1']
```
