File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed
Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 5050 'django.contrib.staticfiles' ,
5151 'rest_framework' ,
5252 'rest_framework.authtoken' ,
53+ 'rest_framework_swagger' ,
5354 'api'
5455]
5556
Original file line number Diff line number Diff line change 1515"""
1616from django .contrib import admin
1717from django .urls import path , include
18+ from django .conf .urls import url
19+ from rest_framework_swagger .views import get_swagger_view
20+
21+ schema_view = get_swagger_view (title = 'SKF-VideoEditorAPI' )
1822
1923urlpatterns = [
24+ url (r'^$' , schema_view ),
2025 path ('admin/' , admin .site .urls ),
2126 path ('api/' , include ('api.urls' ))
2227]
Original file line number Diff line number Diff line change @@ -10,39 +10,51 @@ boto3==1.21.13
1010botocore == 1.24.13
1111certifi == 2021.10.8
1212cffi == 1.15.0
13- charset-normalizer == 2.0.8
13+ charset-normalizer == 2.0.12
14+ coreapi == 2.3.3
15+ coreschema == 0.0.4
1416cryptography == 35.0.0
1517Django == 2.2.27
1618django-appconf == 1.0.5
1719django-base64field == 1.0
1820django-cors-headers == 3.10.1
1921django-cryptography == 1.0
22+ django-rest-swagger == 2.2.0
2023django-storages == 1.11.1
2124djangorestframework == 3.9.2
2225et-xmlfile == 1.1.0
26+ flake8 == 4.0.1
2327idna == 3.3
2428install == 1.3.4
2529isodate == 0.6.0
30+ itypes == 1.2.0
31+ Jinja2 == 3.1.1
2632jmespath == 0.10.0
2733jsonfield == 3.1.0
34+ MarkupSafe == 2.1.1
35+ mccabe == 0.6.1
2836msrest == 0.6.21
2937mysqlclient == 2.1.0
30- numpy == 1.21 .3
38+ numpy == 1.22 .3
3139oauthlib == 3.1.1
40+ openapi-codec == 1.3.2
3241openpyxl == 3.0.9
3342pandas == 1.3.4
3443protobuf == 3.17.3
3544pycodestyle == 2.8.0
36- pycparser == 2.20
45+ pycparser == 2.21
46+ pyflakes == 2.4.0
3747python-dateutil == 2.8.2
3848pytz == 2021.1
3949pytz-deprecation-shim == 0.1.0.post0
4050requests == 2.26.0
4151requests-oauthlib == 1.3.0
4252s3transfer == 0.5.0
53+ simplejson == 3.17.6
4354six == 1.16.0
4455sqlparse == 0.4.1
4556toml == 0.10.2
4657tzdata == 2022.1
4758tzlocal == 4.2
59+ uritemplate == 4.1.1
4860urllib3 == 1.26.7
You can’t perform that action at this time.
0 commit comments