GNXSOFT.COM

This commit is contained in:
Iliyan Angelov
2025-09-26 00:15:37 +03:00
commit fe26b7cca4
16323 changed files with 2011881 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
.. |br| raw:: html
<br />
#######
License
#######
********************
BSD 3-Clause License
********************
Copyright (c) 2017 - 2019, Cristian V. <cristi@cvjd.me> |br|\ All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -0,0 +1,437 @@
Metadata-Version: 2.1
Name: drf-yasg
Version: 1.21.7
Summary: Automated generation of real Swagger/OpenAPI 2.0 schemas from Django Rest Framework code.
Home-page: https://github.com/axnsan12/drf-yasg
Author: Cristi V.
Author-email: cristi@cvjd.me
License: BSD License
Keywords: drf django django-rest-framework schema swagger openapi codegen swagger-codegen documentation drf-yasg django-rest-swagger drf-openapi
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Environment :: Web Environment
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Code Generators
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Requires-Dist: djangorestframework (>=3.10.3)
Requires-Dist: django (>=2.2.16)
Requires-Dist: pyyaml (>=5.1)
Requires-Dist: inflection (>=0.3.1)
Requires-Dist: packaging (>=21.0)
Requires-Dist: pytz (>=2021.1)
Requires-Dist: uritemplate (>=3.0.0)
Provides-Extra: coreapi
Requires-Dist: coreapi (>=2.3.3) ; extra == 'coreapi'
Requires-Dist: coreschema (>=0.0.4) ; extra == 'coreapi'
Provides-Extra: validation
Requires-Dist: swagger-spec-validator (>=2.1.0) ; extra == 'validation'
.. role:: python(code)
:language: python
########################################
drf-yasg - Yet another Swagger generator
########################################
|actions| |nbsp| |codecov| |nbsp| |rtd-badge| |nbsp| |pypi-version|
Generate **real** Swagger/OpenAPI 2.0 specifications from a Django Rest Framework API.
Compatible with
- **Django Rest Framework**: 3.10, 3.11, 3.12, 3.13, 3.14
- **Django**: 2.2, 3.0, 3.1, 3.2, 4.0, 4.1
- **Python**: 3.6, 3.7, 3.8, 3.9, 3.10, 3.11
Only the latest patch version of each ``major.minor`` series of Python, Django and Django REST Framework is supported.
**Only the latest version of drf-yasg is supported.** Support of old versions is dropped immediately with the release
of a new version. Please do not create issues before upgrading to the latest release available at the time. Regression
reports are accepted and will be resolved with a new release as quickly as possible. Removed features will usually go
through a deprecation cycle of a few minor releases.
Resources:
* **Source**: https://github.com/axnsan12/drf-yasg/
* **Documentation**: https://drf-yasg.readthedocs.io/
* **Changelog**: https://drf-yasg.readthedocs.io/en/stable/changelog.html
* **Live demo**: https://drf-yasg-demo.herokuapp.com/
|heroku-button|
****************
OpenAPI 3.0 note
****************
If you are looking to add Swagger/OpenAPI support to a new project you might want to take a look at
`drf-spectacular <https://github.com/tfranzel/drf-spectacular>`_, which is an actively maintained new library that
shares most of the goals of this project, while working with OpenAPI 3.0 schemas.
OpenAPI 3.0 provides a lot more flexibility than 2.0 in the types of API that can be described.
``drf-yasg`` is unlikely to soon, if ever, get support for OpenAPI 3.0.
********
Features
********
- full support for nested Serializers and Schemas
- response schemas and descriptions
- model definitions compatible with codegen tools
- customization hooks at all points in the spec generation process
- JSON and YAML format for spec
- bundles latest version of
`swagger-ui <https://github.com/swagger-api/swagger-ui>`_ and
`redoc <https://github.com/Rebilly/ReDoc>`_ for viewing the generated documentation
- schema view is cacheable out of the box
- generated Swagger schema can be automatically validated by
`swagger-spec-validator <https://github.com/Yelp/swagger_spec_validator>`_
- supports Django REST Framework API versioning with ``URLPathVersioning`` and ``NamespaceVersioning``; other DRF
or custom versioning schemes are not currently supported
.. figure:: https://raw.githubusercontent.com/axnsan12/drf-yasg/1.0.2/screenshots/redoc-nested-response.png
:width: 100%
:figwidth: image
:alt: redoc screenshot
**Fully nested request and response schemas.**
.. figure:: https://raw.githubusercontent.com/axnsan12/drf-yasg/1.0.2/screenshots/swagger-ui-list.png
:width: 100%
:figwidth: image
:alt: swagger-ui screenshot
**Choose between redoc and swagger-ui.**
.. figure:: https://raw.githubusercontent.com/axnsan12/drf-yasg/1.0.2/screenshots/swagger-ui-models.png
:width: 100%
:figwidth: image
:alt: model definitions screenshot
**Real Model definitions.**
*****************
Table of contents
*****************
.. contents::
:depth: 4
*****
Usage
*****
0. Installation
===============
The preferred installation method is directly from pypi:
.. code:: console
pip install -U drf-yasg
Additionally, if you want to use the built-in validation mechanisms (see `4. Validation`_), you need to install
some extra requirements:
.. code:: console
pip install -U drf-yasg[validation]
.. _readme-quickstart:
1. Quickstart
=============
In ``settings.py``:
.. code:: python
INSTALLED_APPS = [
...
'django.contrib.staticfiles', # required for serving swagger ui's css/js files
'drf_yasg',
...
]
In ``urls.py``:
.. code:: python
...
from django.urls import re_path
from rest_framework import permissions
from drf_yasg.views import get_schema_view
from drf_yasg import openapi
...
schema_view = get_schema_view(
openapi.Info(
title="Snippets API",
default_version='v1',
description="Test description",
terms_of_service="https://www.google.com/policies/terms/",
contact=openapi.Contact(email="contact@snippets.local"),
license=openapi.License(name="BSD License"),
),
public=True,
permission_classes=(permissions.AllowAny,),
)
urlpatterns = [
path('swagger<format>/', schema_view.without_ui(cache_timeout=0), name='schema-json'),
path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
path('redoc/', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
...
]
This exposes 4 endpoints:
* A JSON view of your API specification at ``/swagger.json``
* A YAML view of your API specification at ``/swagger.yaml``
* A swagger-ui view of your API specification at ``/swagger/``
* A ReDoc view of your API specification at ``/redoc/``
2. Configuration
================
---------------------------------
a. ``get_schema_view`` parameters
---------------------------------
- ``info`` - Swagger API Info object; if omitted, defaults to ``DEFAULT_INFO``
- ``url`` - API base url; if left blank will be deduced from the location the view is served at
- ``patterns`` - passed to SchemaGenerator
- ``urlconf`` - passed to SchemaGenerator
- ``public`` - if False, includes only endpoints the current user has access to
- ``validators`` - a list of validator names to apply on the generated schema; only ``ssv`` is currently supported
- ``generator_class`` - schema generator class to use; should be a subclass of ``OpenAPISchemaGenerator``
- ``authentication_classes`` - authentication classes for the schema view itself
- ``permission_classes`` - permission classes for the schema view itself
-------------------------------
b. ``SchemaView`` options
-------------------------------
- :python:`SchemaView.with_ui(renderer, cache_timeout, cache_kwargs)` - get a view instance using the
specified UI renderer; one of ``swagger``, ``redoc``
- :python:`SchemaView.without_ui(cache_timeout, cache_kwargs)` - get a view instance with no UI renderer;
same as ``as_cached_view`` with no kwargs
- :python:`SchemaView.as_cached_view(cache_timeout, cache_kwargs, **initkwargs)` - same as ``as_view``,
but with optional caching
- you can, of course, call :python:`as_view` as usual
All of the first 3 methods take two optional arguments, ``cache_timeout`` and ``cache_kwargs``; if present,
these are passed on to Djangos :python:`cached_page` decorator in order to enable caching on the resulting view.
See `3. Caching`_.
----------------------------------------------
c. ``SWAGGER_SETTINGS`` and ``REDOC_SETTINGS``
----------------------------------------------
Additionally, you can include some more settings in your ``settings.py`` file.
See https://drf-yasg.readthedocs.io/en/stable/settings.html for details.
3. Caching
==========
Since the schema does not usually change during the lifetime of the django process, there is out of the box support for
caching the schema view in-memory, with some sane defaults:
* caching is enabled by the `cache_page <https://docs.djangoproject.com/en/1.11/topics/cache/#the-per-view-cache>`__
decorator, using the default Django cache backend, can be changed using the ``cache_kwargs`` argument
* HTTP caching of the response is blocked to avoid confusing situations caused by being shown stale schemas
* the cached schema varies on the ``Cookie`` and ``Authorization`` HTTP headers to enable filtering of visible endpoints
according to the authentication credentials of each user; note that this means that every user accessing the schema
will have a separate schema cached in memory.
4. Validation
=============
Given the numerous methods to manually customize the generated schema, it makes sense to validate the result to ensure
it still conforms to OpenAPI 2.0. To this end, validation is provided at the generation point using python swagger
libraries, and can be activated by passing :python:`validators=['ssv']` to ``get_schema_view``; if the generated
schema is not valid, a :python:`SwaggerValidationError` is raised by the handling codec.
**Warning:** This internal validation can slow down your server.
Caching can mitigate the speed impact of validation.
The provided validation will catch syntactic errors, but more subtle violations of the spec might slip by them. To
ensure compatibility with code generation tools, it is recommended to also employ one or more of the following methods:
-------------------------------
``swagger-ui`` validation badge
-------------------------------
Online
^^^^^^
If your schema is publicly accessible, `swagger-ui` will automatically validate it against the official swagger
online validator and display the result in the bottom-right validation badge.
Offline
^^^^^^^
If your schema is not accessible from the internet, you can run a local copy of
`swagger-validator <https://hub.docker.com/r/swaggerapi/swagger-validator/>`_ and set the ``VALIDATOR_URL`` accordingly:
.. code:: python
SWAGGER_SETTINGS = {
...
'VALIDATOR_URL': 'http://localhost:8189',
...
}
.. code:: console
$ docker run --name swagger-validator -d -p 8189:8080 --add-host test.local:10.0.75.1 swaggerapi/swagger-validator
84dabd52ba967c32ae6b660934fa6a429ca6bc9e594d56e822a858b57039c8a2
$ curl http://localhost:8189/debug?url=http://test.local:8002/swagger/?format=openapi
{}
---------------------
Using ``swagger-cli``
---------------------
https://www.npmjs.com/package/swagger-cli
.. code:: console
$ npm install -g swagger-cli
[...]
$ swagger-cli validate http://test.local:8002/swagger.yaml
http://test.local:8002/swagger.yaml is valid
--------------------------------------------------------------
Manually on `editor.swagger.io <https://editor.swagger.io/>`__
--------------------------------------------------------------
Importing the generated spec into https://editor.swagger.io/ will automatically trigger validation on it.
This method is currently the only way to get both syntactic and semantic validation on your specification.
The other validators only provide JSON schema-level validation, but miss things like duplicate operation names,
improper content types, etc
5. Code generation
==================
You can use the specification outputted by this library together with
`swagger-codegen <https://github.com/swagger-api/swagger-codegen>`_ to generate client code in your language of choice:
.. code:: console
$ docker run --rm -v ${PWD}:/local swaggerapi/swagger-codegen-cli generate -i /local/tests/reference.yaml -l javascript -o /local/.codegen/js
See the github page linked above for more details.
.. _readme-testproj:
6. Example project
==================
For additional usage examples, you can take a look at the test project in the ``testproj`` directory:
.. code:: console
$ git clone https://github.com/axnsan12/drf-yasg.git
$ cd drf-yasg
$ virtualenv venv
$ source venv/bin/activate
(venv) $ cd testproj
(venv) $ python -m pip install -U pip setuptools
(venv) $ pip install -U -r requirements.txt
(venv) $ python manage.py migrate
(venv) $ python manage.py runserver
(venv) $ firefox localhost:8000/swagger/
************************
Third-party integrations
************************
djangorestframework-camel-case
===============================
Integration with `djangorestframework-camel-case <https://github.com/vbabiy/djangorestframework-camel-case>`_ is
provided out of the box - if you have ``djangorestframework-camel-case`` installed and your ``APIView`` uses
``CamelCaseJSONParser`` or ``CamelCaseJSONRenderer``, all property names will be converted to *camelCase* by default.
djangorestframework-recursive
===============================
Integration with `djangorestframework-recursive <https://github.com/heywbj/django-rest-framework-recursive>`_ is
provided out of the box - if you have ``djangorestframework-recursive`` installed.
.. |actions| image:: https://img.shields.io/github/workflow/status/axnsan12/drf-yasg/Review
:target: https://github.com/axnsan12/drf-yasg/actions
:alt: GitHub Workflow Status
.. |codecov| image:: https://img.shields.io/codecov/c/github/axnsan12/drf-yasg/master.svg
:target: https://codecov.io/gh/axnsan12/drf-yasg
:alt: Codecov
.. |pypi-version| image:: https://img.shields.io/pypi/v/drf-yasg.svg
:target: https://pypi.org/project/drf-yasg/
:alt: PyPI
.. |rtd-badge| image:: https://img.shields.io/readthedocs/drf-yasg.svg
:target: https://drf-yasg.readthedocs.io/
:alt: ReadTheDocs
.. |heroku-button| image:: https://www.herokucdn.com/deploy/button.svg
:target: https://heroku.com/deploy?template=https://github.com/axnsan12/drf-yasg
:alt: Heroku deploy button
.. |nbsp| unicode:: 0xA0
:trim:
drf-extra-fields
=================
Integration with `drf-extra-fields <https://github.com/Hipo/drf-extra-fields>`_ has a problem with Base64 fields.
The drf-yasg will generate Base64 file or image fields as Readonly and not required. Here is a workaround code
for display the Base64 fields correctly.
.. code:: python
class PDFBase64FileField(Base64FileField):
ALLOWED_TYPES = ['pdf']
class Meta:
swagger_schema_fields = {
'type': 'string',
'title': 'File Content',
'description': 'Content of the file base64 encoded',
'read_only': False # <-- FIX
}
def get_file_extension(self, filename, decoded_file):
try:
PyPDF2.PdfFileReader(io.BytesIO(decoded_file))
except PyPDF2.utils.PdfReadError as e:
logger.warning(e)
else:
return 'pdf'

View File

@@ -0,0 +1,80 @@
drf_yasg-1.21.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
drf_yasg-1.21.7.dist-info/LICENSE.rst,sha256=UzGd4V_BWMNqAFaICyjIs1I5w3g0Snr-hNWw6YL-TWY,1639
drf_yasg-1.21.7.dist-info/METADATA,sha256=7HoFKIQp0WdpRCYvWavnOg2a574ULG9AyGt3SlWaY3Y,16007
drf_yasg-1.21.7.dist-info/RECORD,,
drf_yasg-1.21.7.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
drf_yasg-1.21.7.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
drf_yasg-1.21.7.dist-info/top_level.txt,sha256=GzwSSUdnwQRQ8b_CyQvPz0yYEhaZV8Hme8BrlYhkkug,9
drf_yasg/__init__.py,sha256=ydQ7DqAOm38dXniI0dK4GVFkd-ubGq7BB3rbgtzfxY4,287
drf_yasg/__pycache__/__init__.cpython-312.pyc,,
drf_yasg/__pycache__/app_settings.cpython-312.pyc,,
drf_yasg/__pycache__/codecs.cpython-312.pyc,,
drf_yasg/__pycache__/errors.cpython-312.pyc,,
drf_yasg/__pycache__/generators.cpython-312.pyc,,
drf_yasg/__pycache__/middleware.cpython-312.pyc,,
drf_yasg/__pycache__/openapi.cpython-312.pyc,,
drf_yasg/__pycache__/renderers.cpython-312.pyc,,
drf_yasg/__pycache__/utils.cpython-312.pyc,,
drf_yasg/__pycache__/views.cpython-312.pyc,,
drf_yasg/app_settings.py,sha256=YFHfREt8eA-WobudHHV5BIitdgwVqgqd3ZunXzxx0hI,4251
drf_yasg/codecs.py,sha256=kJs-DuV66ecZxD1igt7XGDf1ZfKLtobsEfi6cFNVMBM,7802
drf_yasg/errors.py,sha256=sfDVvNLqKGkmDuoDViQDve4R3xhYDsf75gU6R2EP1ms,380
drf_yasg/generators.py,sha256=vcf3BFJxYvEb54lQha1GwuCnmURjzEi61XkmPtGmC8s,26364
drf_yasg/inspectors/__init__.py,sha256=nCkGGzt_itIz38OqgyLtdGwNRR8KqQrYyvs0-mTpNV8,1769
drf_yasg/inspectors/__pycache__/__init__.cpython-312.pyc,,
drf_yasg/inspectors/__pycache__/base.cpython-312.pyc,,
drf_yasg/inspectors/__pycache__/field.cpython-312.pyc,,
drf_yasg/inspectors/__pycache__/query.cpython-312.pyc,,
drf_yasg/inspectors/__pycache__/view.cpython-312.pyc,,
drf_yasg/inspectors/base.py,sha256=YISM68P55QQaT7rOxNZvbhxQ_-0Kt3EYgbuDbrK8iDg,21217
drf_yasg/inspectors/field.py,sha256=UnOJc2VQGN9bl4O9lP_27pDuguLZDdDUpaYvUBh6vZ0,35003
drf_yasg/inspectors/query.py,sha256=WRdCOZ4Altfl1sPUwLab5MtJUkjGPA93Ohyba88Tq_c,4924
drf_yasg/inspectors/view.py,sha256=HGWIWMl1mZkp2tgD4PM3RyLYuGl_L_4EzTJkVXVGdxw,17639
drf_yasg/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
drf_yasg/management/__pycache__/__init__.cpython-312.pyc,,
drf_yasg/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
drf_yasg/management/commands/__pycache__/__init__.cpython-312.pyc,,
drf_yasg/management/commands/__pycache__/generate_swagger.cpython-312.pyc,,
drf_yasg/management/commands/generate_swagger.py,sha256=7XoTMZw0QF2QcjmPonc-Lm-43ANg1GFMj9M53bmpjsI,6523
drf_yasg/middleware.py,sha256=DUyfMffwybsZU5i7YlMPS9iy-6VXZA9J-I3bT57afzs,799
drf_yasg/openapi.py,sha256=HwTb08RfIGcyozbK4tuvadBkH9t-1mFrfWHJ2NuR7uY,31035
drf_yasg/renderers.py,sha256=N2v2iMruaC-E5AW6UcPkDQCpxTc28IbzhWBsI19vhVw,8107
drf_yasg/static/drf-yasg/README,sha256=6Maug8UcMmmohB2DFyqbkKMpteUUW-k8SbC1XDyZw3c,520
drf_yasg/static/drf-yasg/immutable.js,sha256=m1Jds09_KiSf-55aQe2m8SzLRdHVAdJmAMhDEHI2ATY,142352
drf_yasg/static/drf-yasg/immutable.min.js,sha256=-0IwgnFxUKpHZPXBhTQkuv-Dqy0eDno7myZB6OOjORA,56904
drf_yasg/static/drf-yasg/insQ.js,sha256=nMNt_dbXWmgQAdHKh7OYifaNxZRRC-BKGIK6A4i_NTk,5385
drf_yasg/static/drf-yasg/insQ.min.js,sha256=goOeFIiGBjKD9OShiPHvQA9PrpIuwudKdtoXMemU57M,2093
drf_yasg/static/drf-yasg/redoc-init.js,sha256=MvRPUOuXz2eV_2_O39uLb2N0lpaHJR2AQi8SDnUiAss,2566
drf_yasg/static/drf-yasg/redoc-old/LICENSE,sha256=NRmBHSmhjCoU0p8732B2AW36CWwrXiP2tefzOI_8wZs,1083
drf_yasg/static/drf-yasg/redoc-old/redoc.min.js,sha256=wFpw8VgF1S34iabKNstYR78fsTR-xR0w3lJMBH-nxpc,1091688
drf_yasg/static/drf-yasg/redoc-old/redoc.min.js.map,sha256=gN5VfNJbHBLFZ4B0JkCXxYV7fe1AS3UncYljhTMzTZY,595
drf_yasg/static/drf-yasg/redoc/LICENSE,sha256=0wJtVJz2irc1W8-oWHe_j4RbMzSn77_cY5NkMvs0_w4,1091
drf_yasg/static/drf-yasg/redoc/redoc-logo.png,sha256=JxbXY3RrLP-a2ZAanabdNsWnZsp8nohLr1ASu4Bx_uc,4969
drf_yasg/static/drf-yasg/redoc/redoc.min.js,sha256=x_EH9SWUhuwp9ybbJeMaRqVjsJ9SCf2QwDcWd-V20xE,1042511
drf_yasg/static/drf-yasg/redoc/redoc.standalone.js.map,sha256=rlTAExk99x_goY3d3yDoiTscDIC0o93NipadrgP98Zg,3726289
drf_yasg/static/drf-yasg/style.css,sha256=q1PfO1f5nV7TkDBiC3kw7F1Q_YvG2XE1bFOxQYiRMG0,1047
drf_yasg/static/drf-yasg/swagger-ui-dist/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
drf_yasg/static/drf-yasg/swagger-ui-dist/NOTICE,sha256=DSDRre8YruP0DdJYFyFVUhznAqxEXLX3t9YO0y2tL7I,55
drf_yasg/static/drf-yasg/swagger-ui-dist/absolute-path.js,sha256=ea8ShA1xYDJWjpiTtL4Uo6sAS8VLFcdQ88sPl90KT6o,530
drf_yasg/static/drf-yasg/swagger-ui-dist/favicon-32x32.png,sha256=PtYS9B4FDKXnAAytbxy-fn2jn2X8qZwC6Z5lkQVuWDc,628
drf_yasg/static/drf-yasg/swagger-ui-dist/index.css,sha256=kySAfUJFZaFjm7KfN1TI1NRcEAnGdnTpluMzVfaSnOc,202
drf_yasg/static/drf-yasg/swagger-ui-dist/index.js,sha256=4npk7A2xIqCxAJ5UAW07QKFC_JqODYBgmDfp35Anyd8,813
drf_yasg/static/drf-yasg/swagger-ui-dist/oauth2-redirect.html,sha256=OX_TCiSZzSxfNBGt4Mp_vXhtUBFjnKeKBoJNWAuDwSI,2715
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-initializer.js,sha256=qJUDTyTxLXzYHsR8mNpPFXIdnZqNJAXyLyFwSCH4HQI,539
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-bundle.js,sha256=Vx9TXcXcbf0QEIRlteIpx5yr3jzVS5WpYlOH8knnNYQ,1046583
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-bundle.js.map,sha256=TtLvf_sLVMhk9hrMqD9WdHNm2gYdVzY3rrN01IEE4tk,1540070
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-es-bundle-core.js,sha256=18H-8fAyZ9M2GlO_ZsvvnFVa64lwtZgmI7IyJbuW484,368620
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-es-bundle-core.js.map,sha256=yz7XkAamLKhZq69CiGKnG2vuEZrHCiQ_Som3V5Fzd6M,1285354
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-es-bundle.js,sha256=exWfOs9AuE8TDOb-X8CBI5w_bp9WMAOiDMsAYb6Z1Os,1046373
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-es-bundle.js.map,sha256=TlwtdVarrlTgPtCvzT9iE1K52BpT2PeW54j3oR-Rw7w,1535742
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-standalone-preset.js,sha256=ULD-DFLrPxG4eI5OX6FxRaa2ey8Ia7RahwAxFZIi0kk,322863
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui-standalone-preset.js.map,sha256=HF677v-gekWpvCKJQXRZ-uJou44X9W5FDkVJANioWCM,517830
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui.css,sha256=RXm4uga517Y84t07A_Jg2Yo0YRCyZ-jGF00X2jw2YjQ,145206
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui.css.map,sha256=VH4Fk6LbhMDyFx5JPt1N9FcPMqO7MfWIcZwBX0q307s,251096
drf_yasg/static/drf-yasg/swagger-ui-dist/swagger-ui.js.map,sha256=_RT15uSIUcwaFC2JWKETu81WyFSCKHLOzhQO6x0vIdI,304572
drf_yasg/static/drf-yasg/swagger-ui-init.js,sha256=-SmJClN1g33RwVx4h_NSf6G3QyACZGUsk_0Bcaevlss,14964
drf_yasg/templates/drf-yasg/redoc-old.html,sha256=3UhYrp8OnIitnSUPu0siNqfiIS8QiEiW6zxQex2CNyo,598
drf_yasg/templates/drf-yasg/redoc.html,sha256=43jrmXeRxhjOqqvlsTEiZySHNdzshgXm1K-o5-W5roU,1515
drf_yasg/templates/drf-yasg/swagger-ui.html,sha256=oaBGwOqZSCTn-o-WUPNQDc5GW78MFybFV6oMTp5z64E,3349
drf_yasg/utils.py,sha256=2vvNPJP5xBTiWG5teQyJnj8BWww5T7ZYUMgGTg3efhQ,23681
drf_yasg/views.py,sha256=SJy-NjDW0khcP8QJBhOjNv0Btd79fd60lailJvxiIhs,7068

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.40.0)
Root-Is-Purelib: true
Tag: py3-none-any