f-cell 0.3.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- f_cell-0.3.7.dist-info/METADATA +97 -0
- f_cell-0.3.7.dist-info/RECORD +1872 -0
- f_cell-0.3.7.dist-info/WHEEL +5 -0
- f_cell-0.3.7.dist-info/licenses/LICENSE.md +675 -0
- f_cell-0.3.7.dist-info/top_level.txt +1 -0
- ocvl/__init__.py +6 -0
- ocvl/dist/__init__.py +0 -0
- ocvl/dist/_internal/IPython/__init__.py +0 -0
- ocvl/dist/_internal/IPython/extensions/__init__.py +2 -0
- ocvl/dist/_internal/IPython/extensions/autoreload.py +911 -0
- ocvl/dist/_internal/IPython/extensions/deduperreload/__init__.py +0 -0
- ocvl/dist/_internal/IPython/extensions/deduperreload/deduperreload.py +620 -0
- ocvl/dist/_internal/IPython/extensions/deduperreload/deduperreload_patching.py +148 -0
- ocvl/dist/_internal/IPython/extensions/storemagic.py +236 -0
- ocvl/dist/_internal/IPython/py.typed +0 -0
- ocvl/dist/_internal/__init__.py +0 -0
- ocvl/dist/_internal/certifi/py.typed +0 -0
- ocvl/dist/_internal/cv2/__init__.py +181 -0
- ocvl/dist/_internal/cv2/config-3.py +24 -0
- ocvl/dist/_internal/cv2/config.py +5 -0
- ocvl/dist/_internal/cv2/data/__init__.py +3 -0
- ocvl/dist/_internal/cv2/gapi/__init__.py +323 -0
- ocvl/dist/_internal/cv2/load_config_py3.py +9 -0
- ocvl/dist/_internal/cv2/mat_wrapper/__init__.py +40 -0
- ocvl/dist/_internal/cv2/misc/__init__.py +1 -0
- ocvl/dist/_internal/cv2/misc/version.py +5 -0
- ocvl/dist/_internal/cv2/typing/__init__.py +180 -0
- ocvl/dist/_internal/cv2/utils/__init__.py +14 -0
- ocvl/dist/_internal/cv2/version.py +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/__init__.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/apps/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/apps/config.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/apps/registry.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/conf/__init__.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/conf/global_settings.pyi +504 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/conf/locale/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/conf/urls/__init__.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/conf/urls/i18n.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/conf/urls/static.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/__init__.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/actions.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/apps.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/checks.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/decorators.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/filters.pyi +110 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/forms.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/helpers.pyi +155 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/models.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/options.pyi +275 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/sites.pyi +75 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_list.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_modify.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_static.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_urls.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/base.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/log.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/tests.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/utils.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/autocomplete.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/decorators.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/main.pyi +89 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admin/widgets.pyi +102 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/middleware.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/urls.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/utils.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/views.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/__init__.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/admin.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/apps.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/backends.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/base_user.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/checks.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/context_processors.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/decorators.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/forms.pyi +91 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/handlers/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/handlers/modwsgi.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/hashers.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/__init__.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/commands/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/commands/changepassword.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/commands/createsuperuser.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/middleware.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/mixins.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/models.pyi +117 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/password_validation.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/signals.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/tokens.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/urls.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/validators.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/auth/views.pyi +72 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/admin.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/apps.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/checks.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/fields.pyi +95 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/forms.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/management/__init__.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/management/commands/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/management/commands/remove_stale_contenttypes.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/models.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/views.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/forms.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/middleware.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/models.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/sitemaps.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/templatetags/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/templatetags/flatpages.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/urls.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/views.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/gis/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/gis/db/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/gis/db/models/__init__.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/gis/db/models/fields.pyi +91 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/humanize/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/humanize/templatetags/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/humanize/templatetags/humanize.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/__init__.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/api.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/constants.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/context_processors.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/middleware.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/base.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/cookie.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/fallback.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/session.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/utils.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/messages/views.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/__init__.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/general.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/mixins.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/statistics.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/constraints.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/__init__.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/array.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/citext.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/hstore.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/jsonb.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/mixins.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/ranges.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/functions.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/indexes.pyi +82 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/lookups.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/operations.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/search.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/signals.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/postgres/validators.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/redirects/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/redirects/middleware.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/redirects/models.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/base.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/cache.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/cached_db.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/db.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/file.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/signed_cookies.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/base_session.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/exceptions.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/management/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/management/commands/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/management/commands/clearsessions.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/middleware.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/models.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sessions/serializers.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/__init__.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/management/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/management/commands/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/management/commands/ping_google.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/views.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/apps.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/management.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/managers.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/middleware.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/models.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/requests.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/sites/shortcuts.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/apps.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/checks.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/finders.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/handlers.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/collectstatic.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/findstatic.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/runserver.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/storage.pyi +55 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/templatetags/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/templatetags/staticfiles.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/testing.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/urls.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/utils.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/views.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/syndication/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/contrib/syndication/views.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/__init__.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/base.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/db.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/dummy.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/filebased.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/locmem.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/backends/memcached.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/cache/utils.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/__init__.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/caches.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/database.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/messages.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/model_checks.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/registry.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/security/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/security/base.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/security/csrf.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/security/sessions.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/templates.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/translation.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/checks/urls.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/exceptions.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/base.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/images.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/locks.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/move.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/storage.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/temp.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/uploadedfile.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/uploadhandler.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/files/utils.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/handlers/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/handlers/base.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/handlers/exception.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/handlers/wsgi.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/__init__.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/base.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/console.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/dummy.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/filebased.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/locmem.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/backends/smtp.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/message.pyi +110 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/mail/utils.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/__init__.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/base.pyi +78 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/color.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/commands/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/commands/dumpdata.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/commands/loaddata.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/commands/makemessages.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/commands/runserver.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/commands/testserver.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/sql.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/templates.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/management/utils.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/paginator.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/serializers/__init__.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/serializers/base.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/serializers/json.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/serializers/python.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/servers/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/servers/basehttp.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/signals.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/signing.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/validators.pyi +121 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/core/wsgi.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/__init__.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/base.pyi +102 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/client.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/creation.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/features.pyi +100 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/introspection.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/operations.pyi +104 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/schema.pyi +77 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/base/validation.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/ddl_references.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/dummy/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/dummy/base.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/mysql/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/mysql/client.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/base.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/client.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/creation.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/operations.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/signals.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/base.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/creation.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/features.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/introspection.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/operations.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/schema.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/backends/utils.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/autodetector.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/exceptions.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/executor.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/graph.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/loader.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/migration.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/__init__.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/base.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/fields.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/models.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/special.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/utils.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/optimizer.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/questioner.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/recorder.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/serializer.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/state.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/topological_sort.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/utils.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/migrations/writer.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/__init__.pyi +136 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/aggregates.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/base.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/constraints.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/deletion.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/enums.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/expressions.pyi +219 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/__init__.pyi +409 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/files.pyi +101 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/mixins.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/proxy.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/related.pyi +243 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/related_descriptors.pyi +70 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/related_lookups.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/fields/reverse_related.pyi +110 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/__init__.pyi +93 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/comparison.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/datetime.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/math.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/mixins.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/text.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/functions/window.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/indexes.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/lookups.pyi +104 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/manager.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/options.pyi +123 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/query.pyi +213 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/query_utils.pyi +79 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/signals.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/__init__.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/compiler.pyi +109 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/constants.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/datastructures.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/query.pyi +194 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/subqueries.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/sql/where.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/models/utils.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/transaction.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/db/utils.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/dispatch/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/dispatch/dispatcher.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/__init__.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/boundfield.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/fields.pyi +394 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/forms.pyi +78 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/formsets.pyi +89 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/models.pyi +289 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/renderers.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/utils.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/forms/widgets.pyi +172 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/http/__init__.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/http/cookie.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/http/multipartparser.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/http/request.pyi +111 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/http/response.pyi +137 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/cache.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/clickjacking.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/common.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/csrf.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/gzip.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/http.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/locale.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/middleware/security.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/shortcuts.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/__init__.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/backends/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/backends/base.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/backends/django.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/backends/dummy.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/backends/jinja2.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/backends/utils.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/base.pyi +174 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/context.pyi +76 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/context_processors.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/defaultfilters.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/defaulttags.pyi +204 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/engine.pyi +53 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/exceptions.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/library.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loader.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loader_tags.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loaders/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loaders/app_directories.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loaders/base.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loaders/cached.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loaders/filesystem.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/loaders/locmem.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/response.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/smartif.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/template/utils.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/templatetags/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/templatetags/cache.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/templatetags/i18n.pyi +83 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/templatetags/l10n.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/templatetags/static.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/templatetags/tz.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/__init__.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/client.pyi +132 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/html.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/runner.pyi +133 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/selenium.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/signals.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/testcases.pyi +229 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/test/utils.pyi +155 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/__init__.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/base.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/conf.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/converters.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/exceptions.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/resolvers.pyi +110 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/urls/utils.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/_os.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/archive.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/autoreload.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/baseconv.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/cache.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/crypto.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/datastructures.pyi +75 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/dateformat.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/dateparse.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/dates.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/datetime_safe.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/deconstruct.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/decorators.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/deprecation.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/duration.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/encoding.pyi +59 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/feedgenerator.pyi +76 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/formats.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/functional.pyi +59 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/hashable.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/html.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/http.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/inspect.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/ipv6.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/itercompat.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/jslex.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/log.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/lorem_ipsum.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/module_loading.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/numberformat.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/regex_helper.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/safestring.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/six.pyi +106 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/termcolors.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/text.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/timesince.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/timezone.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/topological_sort.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/translation/__init__.pyi +72 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/translation/reloader.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/translation/template.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/translation/trans_null.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/translation/trans_real.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/tree.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/version.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/utils/xmlutils.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/csrf.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/debug.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/cache.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/clickjacking.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/csrf.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/debug.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/gzip.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/http.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/decorators/vary.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/defaults.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/generic/__init__.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/generic/base.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/generic/dates.pyi +82 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/generic/detail.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/generic/edit.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/generic/list.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/i18n.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/django-stubs/django-stubs/views/static.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/BaseHTTPServer.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/CGIHTTPServer.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/ConfigParser.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/Cookie.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/HTMLParser.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/Queue.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/SimpleHTTPServer.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/SocketServer.pyi +115 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/StringIO.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/UserDict.pyi +53 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/UserList.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/UserString.pyi +75 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/__builtin__.pyi +1195 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_ast.pyi +303 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_collections.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_functools.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_hotshot.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_io.pyi +184 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_json.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_md5.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_sha.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_sha256.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_sha512.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_socket.pyi +281 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_sre.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_struct.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_symtable.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_threading_local.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/_winreg.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/abc.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/ast.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/atexit.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/builtins.pyi +1195 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/cPickle.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/cStringIO.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/collections.pyi +129 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/commands.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/compileall.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/cookielib.pyi +142 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/copy_reg.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/dircache.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/archive_util.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/bcppcompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/ccompiler.pyi +150 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/cmd.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_dumb.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_msi.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_packager.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_rpm.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_wininst.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/build.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/build_clib.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/build_ext.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/build_py.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/build_scripts.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/check.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/clean.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/config.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/install.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/install_data.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/install_egg_info.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/install_headers.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/install_lib.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/install_scripts.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/register.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/sdist.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/command/upload.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/config.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/core.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/cygwinccompiler.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/debug.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/dep_util.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/dir_util.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/dist.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/emxccompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/errors.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/extension.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/fancy_getopt.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/file_util.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/filelist.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/log.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/msvccompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/spawn.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/sysconfig.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/text_file.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/unixccompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/util.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/distutils/version.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/dummy_thread.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/MIMEText.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/_parseaddr.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/base64mime.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/charset.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/encoders.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/feedparser.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/generator.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/header.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/iterators.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/message.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/application.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/audio.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/base.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/image.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/message.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/multipart.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/nonmultipart.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/mime/text.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/parser.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/quoprimime.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/email/utils.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/encodings/__init__.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/encodings/utf_8.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/exceptions.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/fcntl.pyi +82 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/fnmatch.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/functools.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/future_builtins.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/gc.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/getopt.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/getpass.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/gettext.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/glob.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/gzip.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/hashlib.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/heapq.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/htmlentitydefs.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/httplib.pyi +218 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/imp.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/importlib.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/inspect.pyi +129 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/io.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/itertools.pyi +164 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/json.pyi +93 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/markupbase.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/md5.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/mimetools.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/multiprocessing/__init__.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/multiprocessing/dummy/__init__.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/multiprocessing/dummy/connection.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/multiprocessing/pool.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/multiprocessing/process.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/multiprocessing/util.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/mutex.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/ntpath.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/nturl2path.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/os/__init__.pyi +385 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/os/path.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/os2emxpath.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/pipes.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/platform.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/popen2.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/posix.pyi +201 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/posixpath.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/random.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/re.pyi +108 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/repr.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/resource.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/rfc822.pyi +75 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/robotparser.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/runpy.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/sets.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/sha.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/shelve.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/shlex.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/signal.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/smtplib.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/spwd.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/sre_constants.pyi +93 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/sre_parse.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/stat.pyi +58 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/string.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/stringold.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/strop.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/subprocess.pyi +115 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/symbol.pyi +89 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/sys.pyi +130 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/tempfile.pyi +102 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/textwrap.pyi +61 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/thread.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/toaiff.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/tokenize.pyi +133 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/types.pyi +195 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/typing.pyi +495 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/unittest.pyi +280 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/urllib.pyi +133 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/urllib2.pyi +186 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/urlparse.pyi +61 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/user.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/whichdb.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2/xmlrpclib.pyi +248 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/__future__.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_bisect.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_codecs.pyi +82 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_csv.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_curses.pyi +490 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_dummy_threading.pyi +187 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_heapq.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_msi.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_random.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_typeshed/__init__.pyi +183 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_typeshed/wsgi.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_typeshed/xml.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_warnings.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_weakref.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/_weakrefset.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/aifc.pyi +88 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/antigravity.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/argparse.pyi +487 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/array.pyi +77 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/asynchat.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/asyncore.pyi +119 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/audioop.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/base64.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/bdb.pyi +98 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/binascii.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/binhex.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/bisect.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/bz2.pyi +70 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/cProfile.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/calendar.pyi +123 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/cgi.pyi +162 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/cgitb.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/chunk.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/cmath.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/cmd.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/code.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/codecs.pyi +301 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/codeop.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/colorsys.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/contextlib.pyi +102 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/copy.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/crypt.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/csv.pyi +101 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/ctypes/__init__.pyi +309 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/ctypes/util.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/ctypes/wintypes.pyi +234 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/curses/__init__.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/curses/ascii.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/curses/panel.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/curses/textpad.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/datetime.pyi +373 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/decimal.pyi +339 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/difflib.pyi +153 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/dis.pyi +83 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/doctest.pyi +224 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/dummy_threading.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/ensurepip/__init__.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/errno.pyi +137 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/filecmp.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/fileinput.pyi +78 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/formatter.pyi +103 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/fractions.pyi +159 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/ftplib.pyi +165 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/genericpath.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/grp.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/hmac.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/imaplib.pyi +172 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/imghdr.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/keyword.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi +71 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pygram.pyi +113 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pytree.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/linecache.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/locale.pyi +111 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/logging/__init__.pyi +918 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/logging/config.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/logging/handlers.pyi +258 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/macpath.pyi +132 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/mailbox.pyi +207 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/mailcap.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/marshal.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/math.pyi +121 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/mimetypes.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/mmap.pyi +107 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/modulefinder.pyi +76 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/msilib/__init__.pyi +196 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/msilib/schema.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/msilib/sequence.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/msilib/text.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/msvcrt.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/netrc.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/nis.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/numbers.pyi +140 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/opcode.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/operator.pyi +206 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/optparse.pyi +232 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/parser.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pdb.pyi +250 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pickle.pyi +186 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pickletools.pyi +179 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pkgutil.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/plistlib.pyi +72 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/poplib.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pprint.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/profile.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pstats.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pty.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pwd.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/py_compile.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pyclbr.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pydoc.pyi +273 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pydoc_data/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pydoc_data/topics.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pyexpat/__init__.pyi +79 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pyexpat/errors.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/pyexpat/model.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/quopri.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/readline.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/rlcompleter.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sched.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/select.pyi +152 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/shutil.pyi +166 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/site.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/smtpd.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sndhdr.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/socket.pyi +803 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sqlite3/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sqlite3/dbapi2.pyi +300 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sre_compile.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/ssl.pyi +429 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/stringprep.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/struct.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sunau.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/symtable.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/sysconfig.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/syslog.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/tabnanny.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/tarfile.pyi +246 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/telnetlib.pyi +114 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/termios.pyi +246 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/this.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/threading.pyi +187 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/time.pyi +116 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/timeit.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/token.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/trace.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/traceback.pyi +140 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/tty.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/turtle.pyi +558 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/unicodedata.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/uu.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/uuid.pyi +111 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/warnings.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wave.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/weakref.pyi +119 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/webbrowser.pyi +105 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/winsound.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/handlers.pyi +93 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/headers.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/simple_server.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/types.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/util.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/wsgiref/validate.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xdrlib.pyi +55 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/NodeFilter.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/__init__.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/domreg.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/expatbuilder.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/minicompat.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/minidom.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/pulldom.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/dom/xmlbuilder.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementPath.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementTree.pyi +376 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/etree/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/etree/cElementTree.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/errors.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/model.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/sax/__init__.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/sax/handler.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/sax/saxutils.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/xml/sax/xmlreader.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/zipfile.pyi +220 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/zipimport.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/2and3/zlib.pyi +59 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_ast.pyi +376 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_bootlocale.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_compat_pickle.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_compression.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_decimal.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_dummy_thread.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_imp.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_importlib_modulespec.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_json.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_markupbase.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_operator.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_osx_support.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_posixsubprocess.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_pydecimal.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_sitebuiltins.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_stat.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_thread.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_threading_local.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_tkinter.pyi +93 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_tracemalloc.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/_winapi.pyi +134 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/abc.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/ast.pyi +207 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/__init__.pyi +116 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/base_events.pyi +354 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/base_futures.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/base_subprocess.pyi +72 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/base_tasks.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/compat.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/constants.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/coroutines.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/events.pyi +502 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/exceptions.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/format_helpers.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/futures.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/locks.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/log.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/proactor_events.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/protocols.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/queues.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/runners.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/selector_events.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/sslproto.pyi +133 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/staggered.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/streams.pyi +104 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/subprocess.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/tasks.pyi +204 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/threads.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/transports.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/trsock.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/unix_events.pyi +57 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/windows_events.pyi +76 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/asyncio/windows_utils.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/atexit.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/builtins.pyi +1387 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/collections/__init__.pyi +327 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/collections/abc.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/compileall.pyi +108 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/concurrent/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/concurrent/futures/__init__.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/concurrent/futures/_base.pyi +133 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/concurrent/futures/process.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/concurrent/futures/thread.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/configparser.pyi +252 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/copyreg.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/dbm/__init__.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/dbm/dumb.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/dbm/gnu.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/dbm/ndbm.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/archive_util.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/bcppcompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/ccompiler.pyi +150 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/cmd.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_dumb.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_msi.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_packager.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_rpm.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_wininst.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/build.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/build_clib.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/build_ext.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/build_py.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/build_scripts.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/check.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/clean.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/config.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/install.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/install_data.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/install_egg_info.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/install_headers.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/install_lib.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/install_scripts.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/register.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/sdist.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/command/upload.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/config.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/core.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/cygwinccompiler.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/debug.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/dep_util.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/dir_util.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/dist.pyi +58 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/errors.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/extension.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/fancy_getopt.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/file_util.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/filelist.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/log.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/msvccompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/spawn.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/sysconfig.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/text_file.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/unixccompiler.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/util.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/distutils/version.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/__init__.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/charset.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/contentmanager.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/encoders.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/errors.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/feedparser.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/generator.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/header.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/headerregistry.pyi +90 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/iterators.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/message.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/application.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/audio.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/base.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/image.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/message.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/multipart.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/nonmultipart.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/mime/text.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/parser.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/policy.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/email/utils.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/encodings/__init__.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/encodings/utf_8.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/enum.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/faulthandler.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/fcntl.pyi +99 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/fnmatch.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/functools.pyi +123 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/gc.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/getopt.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/getpass.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/gettext.pyi +80 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/glob.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/gzip.pyi +94 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/hashlib.pyi +123 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/heapq.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/html/__init__.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/html/entities.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/html/parser.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/http/__init__.pyi +74 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/http/client.pyi +211 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/http/cookiejar.pyi +129 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/http/cookies.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/http/server.pyi +72 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/imp.pyi +64 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/importlib/__init__.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/importlib/abc.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/importlib/machinery.pyi +98 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/importlib/metadata.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/importlib/resources.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/importlib/util.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/inspect.pyi +309 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/io.pyi +186 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/ipaddress.pyi +152 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/itertools.pyi +109 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/json/__init__.pyi +57 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/json/decoder.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/json/encoder.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/json/tool.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/lzma.pyi +164 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/macurl2path.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/__init__.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/connection.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/context.pyi +151 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/dummy/__init__.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/dummy/connection.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/managers.pyi +137 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/pool.pyi +84 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/process.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/queues.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/shared_memory.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/sharedctypes.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/spawn.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/multiprocessing/synchronize.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/nntplib.pyi +113 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/ntpath.pyi +144 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/nturl2path.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/os/__init__.pyi +831 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/os/path.pyi +144 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/pathlib.pyi +178 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/pipes.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/platform.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/posix.pyi +165 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/posixpath.pyi +144 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/queue.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/random.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/re.pyi +123 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/reprlib.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/resource.pyi +55 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/runpy.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/secrets.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/selectors.pyi +69 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/shelve.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/shlex.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/signal.pyi +194 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/smtplib.pyi +159 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/socketserver.pyi +133 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/spwd.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/sre_constants.pyi +111 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/sre_parse.pyi +101 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/stat.pyi +91 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/statistics.pyi +72 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/string.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/subprocess.pyi +1054 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/symbol.pyi +90 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/sys.pyi +235 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tempfile.pyi +304 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/textwrap.pyi +100 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/__init__.pyi +3276 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/commondialog.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/constants.pyi +80 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/dialog.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/filedialog.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/font.pyi +96 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/messagebox.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tkinter/ttk.pyi +1232 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tokenize.pyi +116 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/tracemalloc.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/types.pyi +334 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/typing.pyi +687 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/__init__.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/async_case.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/case.pyi +285 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/loader.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/main.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/mock.pyi +441 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/result.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/runner.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/signals.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/suite.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/unittest/util.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/urllib/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/urllib/error.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/urllib/parse.pyi +152 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/urllib/request.pyi +341 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/urllib/response.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/urllib/robotparser.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/venv/__init__.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/winreg.pyi +100 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/xmlrpc/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/xmlrpc/client.pyi +308 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/xmlrpc/server.pyi +160 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/xxlimited.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/stdlib/3/zipapp.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/OpenSSL/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/OpenSSL/crypto.pyi +191 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/concurrent/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/concurrent/futures/__init__.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/concurrent/futures/_base.pyi +92 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/concurrent/futures/process.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/concurrent/futures/thread.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/enum.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/fb303/FacebookService.pyi +298 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/fb303/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/ipaddress.pyi +148 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/kazoo/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/kazoo/client.pyi +109 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/kazoo/exceptions.pyi +58 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/kazoo/recipe/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/kazoo/recipe/watchers.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/pathlib2.pyi +103 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/pymssql.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/routes/__init__.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/routes/mapper.pyi +77 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/routes/util.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/scribe/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/scribe/scribe.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/scribe/ttypes.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/__init__.pyi +130 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/BaseHTTPServer.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/CGIHTTPServer.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/SimpleHTTPServer.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/__init__.pyi +78 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/_dummy_thread.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/_thread.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/cPickle.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/collections_abc.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/configparser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_base.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_multipart.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_nonmultipart.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_text.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/html_entities.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/html_parser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/http_client.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/http_cookiejar.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/http_cookies.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/queue.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/reprlib.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/socketserver.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib/__init__.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib/error.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib/parse.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib/request.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib/response.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib/robotparser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib_error.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib_parse.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib_request.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib_response.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/urllib_robotparser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/six/moves/xmlrpc_client.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/concurrent.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/gen.pyi +110 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/httpclient.pyi +127 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/httpserver.pyi +57 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/httputil.pyi +99 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/ioloop.pyi +85 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/locks.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/netutil.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/process.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/tcpserver.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/testing.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/util.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2/tornado/web.pyi +266 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/atomicwrites/__init__.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/attr/__init__.pyi +257 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/attr/_version_info.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/attr/converters.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/attr/exceptions.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/attr/filters.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/attr/validators.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/backports/__init__.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/backports/ssl_match_hostname.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/backports_abc.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/bleach/__init__.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/bleach/callbacks.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/bleach/linkifier.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/bleach/sanitizer.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/bleach/utils.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/__init__.pyi +109 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/auth.pyi +109 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/auth_handler.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/compat.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/connection.pyi +174 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/ec2/__init__.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/elb/__init__.pyi +59 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/exception.pyi +147 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/kms/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/kms/exceptions.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/kms/layer1.pyi +82 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/plugin.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/regioninfo.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/__init__.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/acl.pyi +48 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucket.pyi +187 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucketlistresultset.pyi +80 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucketlogging.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/connection.pyi +128 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/cors.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/deletemarker.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/key.pyi +233 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/keyfile.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/lifecycle.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/multidelete.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/multipart.pyi +70 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/prefix.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/tagging.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/user.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/s3/website.pyi +82 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/boto/utils.pyi +175 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/abc.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/cache.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/decorators.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/func.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/lfu.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/lru.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/rr.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cachetools/ttl.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/certifi.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/characteristic/__init__.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/__init__.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/enums.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langbulgarianmodel.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langcyrillicmodel.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langgreekmodel.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langhebrewmodel.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langhungarianmodel.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langthaimodel.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/langturkishmodel.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/universaldetector.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/chardet/version.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/__init__.pyi +84 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/_termui_impl.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/core.pyi +285 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/decorators.pyi +293 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/exceptions.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/formatting.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/globals.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/parser.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/termui.pyi +103 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/testing.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/types.pyi +125 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/click/utils.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/croniter.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/exceptions.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/fernet.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/interfaces.pyi +196 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/binding.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dh.pyi +79 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dsa.pyi +79 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ec.pyi +196 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed25519.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed448.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/padding.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/rsa.pyi +83 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/utils.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x25519.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x448.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/__init__.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/aead.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi +76 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/modes.pyi +94 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/cmac.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/constant_time.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hashes.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hmac.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/__init__.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/concatkdf.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/hkdf.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/kbkdf.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/pbkdf2.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/scrypt.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/x963kdf.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/keywrap.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/padding.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/poly1305.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/__init__.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/pkcs12.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/hotp.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/totp.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/__init__.pyi +420 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/extensions.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/oid.pyi +106 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateparser.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/datetimerange/__init__.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/_common.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/easter.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/parser.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/relativedelta.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/rrule.pyi +105 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/__init__.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/_common.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/tz.pyi +101 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/dateutil/utils.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/decorator.pyi +81 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/deprecated/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/deprecated/classic.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/deprecated/sphinx.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/emoji/__init__.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/emoji/core.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/emoji/unicode_codes.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/first.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/__init__.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/app.pyi +195 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/blueprints.pyi +80 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/cli.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/config.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/ctx.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/debughelpers.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/globals.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/helpers.pyi +55 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/json/__init__.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/json/tag.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/logging.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/sessions.pyi +57 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/signals.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/templating.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/testing.pyi +56 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/views.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/flask/wrappers.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/geoip2/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/geoip2/database.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/geoip2/errors.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/geoip2/mixins.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/geoip2/models.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/geoip2/records.pyi +83 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/gflags.pyi +312 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/any_pb2.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/api_pb2.pyi +114 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/plugin_pb2.pyi +136 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor.pyi +330 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pb2.pyi +734 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pool.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/duration_pb2.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/field_mask_pb2.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/containers.pyi +90 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/decoder.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/encoder.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/enum_type_wrapper.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/extension_dict.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/message_listener.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/python_message.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/well_known_types.pyi +94 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/wire_format.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/json_format.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message.pyi +56 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message_factory.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/reflection.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/service.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/source_context_pb2.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/struct_pb2.pyi +126 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/symbol_database.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/timestamp_pb2.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/type_pb2.pyi +237 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/util/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/google/protobuf/wrappers_pb2.pyi +129 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/itsdangerous.pyi +184 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/__init__.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/_compat.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/_stringdefs.pyi +40 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/bccache.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/compiler.pyi +177 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/constants.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/debug.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/defaults.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/environment.pyi +224 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/exceptions.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/ext.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/filters.pyi +56 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/lexer.pyi +117 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/loaders.pyi +80 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/meta.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/nodes.pyi +255 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/optimizer.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/parser.pyi +68 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/runtime.pyi +132 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/sandbox.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/tests.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/utils.pyi +87 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/jinja2/visitor.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/__init__.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/__meta__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/blockparser.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/blockprocessors.pyi +59 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/core.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/__init__.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/abbr.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/admonition.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/attr_list.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/codehilite.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/def_list.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/extra.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/fenced_code.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/footnotes.pyi +57 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/legacy_attrs.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/legacy_em.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/md_in_html.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/meta.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/nl2br.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/sane_lists.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/smarty.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/tables.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/toc.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/wikilinks.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/inlinepatterns.pyi +103 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/pep562.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/postprocessors.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/preprocessors.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/serializers.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/treeprocessors.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markdown/util.pyi +56 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markupsafe/__init__.pyi +55 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markupsafe/_compat.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markupsafe/_constants.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markupsafe/_native.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/markupsafe/_speedups.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/__init__.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/compat.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/const.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/decoder.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/errors.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/extension.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/maxminddb/reader.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/mock.pyi +441 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/mypy_extensions.pyi +46 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/nmap/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/nmap/nmap.pyi +122 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/__init__.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/_version.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/_winapi.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/agent.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/auth_handler.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/ber.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/buffered_pipe.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/channel.pyi +99 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/client.pyi +74 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/common.pyi +139 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/compress.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/config.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/dsskey.pyi +34 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/ecdsakey.pyi +53 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/ed25519key.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/file.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/hostkeys.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_curve25519.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_ecdh_nist.pyi +37 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_gex.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_group1.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_group14.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_group16.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_gss.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/message.pyi +42 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/packet.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/pipe.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/pkey.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/primes.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/proxy.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/py3compat.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/rsakey.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/server.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp.pyi +61 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_attr.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_client.pyi +67 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_file.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_handle.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_server.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_si.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/ssh_exception.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/ssh_gss.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/transport.pyi +194 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/util.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/paramiko/win_pageant.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/polib.pyi +156 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/__init__.pyi +69 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/event.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/fault.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/option.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/view.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/__init__.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/fault.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/query.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pycurl.pyi +644 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/__init__.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/charset.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/connections.pyi +172 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/CLIENT.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/COMMAND.pyi +22 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/ER.pyi +471 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/FIELD_TYPE.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/FLAG.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/SERVER_STATUS.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/converters.pyi +47 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/cursors.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/err.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/times.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pymysql/util.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/attributes.pyi +118 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/base.pyi +158 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/table.pyi +108 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/util.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/constants.pyi +166 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/exceptions.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/indexes.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/models.pyi +159 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/settings.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/throttle.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pynamodb/types.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pyre_extensions.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/pytz/__init__.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/redis/__init__.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/redis/client.pyi +633 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/redis/connection.pyi +177 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/redis/exceptions.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/redis/utils.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/__init__.pyi +36 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/adapters.pyi +73 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/api.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/auth.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/compat.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/cookies.pyi +64 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/exceptions.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/hooks.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/models.pyi +129 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/__init__.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/__init__.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/_collections.pyi +52 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/connection.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/connectionpool.pyi +121 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/contrib/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/exceptions.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/fields.pyi +13 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/filepost.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/poolmanager.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/request.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/response.pyi +66 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/__init__.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/connection.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/request.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/response.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/retry.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/ssl_.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/timeout.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/url.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/sessions.pyi +101 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/status_codes.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/structures.pyi +20 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/requests/utils.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/retry/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/retry/api.pyi +28 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/simplejson/__init__.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/simplejson/decoder.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/simplejson/encoder.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/simplejson/scanner.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/singledispatch.pyi +15 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/slugify/__init__.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/slugify/slugify.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/slugify/special.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/tabulate.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/termcolor.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/toml.pyi +19 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/typing_extensions.pyi +114 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/tzlocal/__init__.pyi +4 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/ujson.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/__init__.pyi +151 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/_compat.pyi +53 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/_internal.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/_reloader.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/atom.pyi +50 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/cache.pyi +92 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/fixers.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/iterio.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/jsrouting.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/limiter.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/lint.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/profiler.pyi +9 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/securecookie.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/sessions.pyi +77 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/testtools.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/wrappers.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/datastructures.pyi +458 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/__init__.pyi +51 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/console.pyi +44 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/repr.pyi +33 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/tbtools.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/exceptions.pyi +183 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/filesystem.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/formparser.pyi +102 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/http.pyi +137 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/local.pyi +100 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/dispatcher.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/http_proxy.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/lint.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/profiler.pyi +14 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi +23 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/shared_data.pyi +29 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/posixemulation.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/routing.pyi +230 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/script.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/security.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/serving.pyi +140 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/test.pyi +175 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/testapp.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/urls.pyi +94 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/useragents.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/utils.pyi +58 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/wrappers.pyi +289 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/werkzeug/wsgi.pyi +74 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/__init__.pyi +275 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/composer.pyi +17 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/constructor.pyi +86 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/cyaml.pyi +63 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/dumper.pyi +61 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/emitter.pyi +109 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/error.pyi +21 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/events.pyi +62 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/loader.pyi +18 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/nodes.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/parser.pyi +45 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/reader.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/representer.pyi +60 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/resolver.pyi +25 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/scanner.pyi +97 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/serializer.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/2and3/yaml/tokens.pyi +93 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/aiofiles/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/aiofiles/base.pyi +35 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/aiofiles/os.pyi +26 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/aiofiles/threadpool/__init__.pyi +91 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/aiofiles/threadpool/binary.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/aiofiles/threadpool/text.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/contextvars.pyi +38 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/dataclasses.pyi +95 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/examples.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/nodes.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/parsers/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/__init__.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/nodes.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/roles.pyi +12 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/states.pyi +6 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/filelock/__init__.pyi +54 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/freezegun/__init__.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/freezegun/api.pyi +56 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/frozendict.pyi +27 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/jwt/__init__.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/jwt/algorithms.pyi +101 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/jwt/contrib/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/py_ecdsa.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/pycrypto.pyi +10 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/orjson.pyi +24 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/pkg_resources/__init__.pyi +271 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/pkg_resources/py31compat.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/pyrfc3339/__init__.pyi +2 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/pyrfc3339/generator.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/pyrfc3339/parser.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/pyrfc3339/utils.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/__init__.pyi +125 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/BaseHTTPServer.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/CGIHTTPServer.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/SimpleHTTPServer.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/__init__.pyi +65 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/_dummy_thread.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/_thread.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/builtins.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/cPickle.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/collections_abc.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/configparser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_base.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_multipart.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_nonmultipart.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_text.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/html_entities.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/html_parser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/http_client.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/http_cookiejar.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/http_cookies.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/queue.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/reprlib.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/socketserver.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_commondialog.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_constants.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_dialog.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_filedialog.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_tkfiledialog.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_ttk.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib/__init__.pyi +5 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib/error.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib/parse.pyi +30 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib/request.pyi +41 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib/response.pyi +8 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib/robotparser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib_error.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib_parse.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib_request.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib_response.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/six/moves/urllib_robotparser.pyi +1 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/typed_ast/__init__.pyi +0 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/typed_ast/ast27.pyi +335 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/typed_ast/ast3.pyi +384 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/typed_ast/conversions.pyi +3 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/__init__.pyi +7 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/adjustments.pyi +61 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/buffers.pyi +57 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/channel.pyi +49 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/compat.pyi +39 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/parser.pyi +43 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/proxy_headers.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/receiver.pyi +32 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/rfc7230.pyi +16 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/runner.pyi +11 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/server.pyi +103 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/task.pyi +69 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/trigger.pyi +31 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/utilities.pyi +76 -0
- ocvl/dist/_internal/jedi/third_party/typeshed/third_party/3/waitress/wasyncore.pyi +94 -0
- ocvl/dist/_internal/lark/py.typed +0 -0
- ocvl/dist/_internal/nbformat/py.typed +0 -0
- ocvl/dist/_internal/parso/py.typed +0 -0
- ocvl/dist/_internal/skimage/__init__.pyi +55 -0
- ocvl/dist/_internal/skimage/color/__init__.pyi +135 -0
- ocvl/dist/_internal/skimage/data/__init__.pyi +88 -0
- ocvl/dist/_internal/skimage/draw/__init__.pyi +45 -0
- ocvl/dist/_internal/skimage/exposure/__init__.pyi +29 -0
- ocvl/dist/_internal/skimage/feature/__init__.pyi +88 -0
- ocvl/dist/_internal/skimage/filters/__init__.pyi +109 -0
- ocvl/dist/_internal/skimage/measure/__init__.pyi +75 -0
- ocvl/dist/_internal/skimage/metrics/__init__.pyi +28 -0
- ocvl/dist/_internal/skimage/restoration/__init__.pyi +38 -0
- ocvl/dist/_internal/skimage/transform/__init__.pyi +86 -0
- ocvl/dist/_internal/sklearn/__check_build/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/_loss/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/cluster/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/cluster/_hdbscan/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/datasets/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/decomposition/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/ensemble/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/ensemble/_hist_gradient_boosting/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/feature_extraction/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/linear_model/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/manifold/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/metrics/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/metrics/_pairwise_distances_reduction/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/metrics/cluster/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/neighbors/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/preprocessing/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/svm/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/tree/__init__.py +0 -0
- ocvl/dist/_internal/sklearn/utils/__init__.py +0 -0
- ocvl/function/__init__.py +5 -0
- ocvl/function/analysis/__init__.py +5 -0
- ocvl/function/analysis/iORG_profile_analyses.py +529 -0
- ocvl/function/analysis/iORG_signal_extraction.py +979 -0
- ocvl/function/display/__init__.py +5 -0
- ocvl/function/display/iORG_data_display.py +425 -0
- ocvl/function/gui/__init__.py +5 -0
- ocvl/function/gui/advancedconfig.py +2562 -0
- ocvl/function/gui/constructors.py +1866 -0
- ocvl/function/gui/import_generation.py +399 -0
- ocvl/function/gui/json_generator.py +15 -0
- ocvl/function/gui/simpleconfig.py +1624 -0
- ocvl/function/gui/wizard_creator.py +1131 -0
- ocvl/function/iORG_summary_and_analysis.py +1336 -0
- ocvl/function/preprocessing/__init__.py +5 -0
- ocvl/function/preprocessing/improc.py +661 -0
- ocvl/function/preprocessing/meao_dewarp_n_reavg.py +236 -0
- ocvl/function/preprocessing/pipeline.py +460 -0
- ocvl/function/utility/__init__.py +7 -0
- ocvl/function/utility/dataset.py +1001 -0
- ocvl/function/utility/desync_fix.py +33 -0
- ocvl/function/utility/json_format_constants.py +180 -0
- ocvl/function/utility/log_formatter.py +32 -0
- ocvl/function/utility/multi_timepoint_alignment.py +81 -0
- ocvl/function/utility/resources.py +215 -0
- ocvl/function/utility/temporal_signal_utils.py +270 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: f-cell
|
|
3
|
+
Version: 0.3.7
|
|
4
|
+
Summary: A software library for reproducible analysis of optoretinograms.
|
|
5
|
+
Author-email: Rob F Cooper <robert.cooper@marquette.edu>, Niko Rios <niko.rios@marquette.edu>
|
|
6
|
+
License-Expression: GPL-3.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/OCVL/F-Cell
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE.md
|
|
13
|
+
Requires-Dist: matplotlib>=3.10.3
|
|
14
|
+
Requires-Dist: scipy>=1.17.0
|
|
15
|
+
Requires-Dist: numba>=0.6.1
|
|
16
|
+
Requires-Dist: numpy>=2.1
|
|
17
|
+
Requires-Dist: pandas>=2.0
|
|
18
|
+
Requires-Dist: SimpleITK>=2.1.1
|
|
19
|
+
Requires-Dist: setuptools>=80.9.0
|
|
20
|
+
Requires-Dist: scikit-learn>=1.0.2
|
|
21
|
+
Requires-Dist: pynufft>=2022.2.3
|
|
22
|
+
Requires-Dist: joblib>=1.1.0
|
|
23
|
+
Requires-Dist: scikit-image>=0.19.2
|
|
24
|
+
Requires-Dist: Pillow>=9.1.1
|
|
25
|
+
Requires-Dist: opencv-contrib-python>=4.3
|
|
26
|
+
Requires-Dist: parse>=1.2.0
|
|
27
|
+
Requires-Dist: parse-type>=0.6.4
|
|
28
|
+
Requires-Dist: colorama>=0.4.6
|
|
29
|
+
Requires-Dist: pymatreader>=1.0.0
|
|
30
|
+
Requires-Dist: parse_type>=0.6.4
|
|
31
|
+
Requires-Dist: tifffile>=2025.5.10
|
|
32
|
+
Requires-Dist: PySide6>=6.9.0
|
|
33
|
+
Requires-Dist: file-tag-parser>=0.2.5.3
|
|
34
|
+
Requires-Dist: tqdm>=4.67.1
|
|
35
|
+
Dynamic: license-file
|
|
36
|
+
|
|
37
|
+
# 𝑓(Cell) - Function of the Cell
|
|
38
|
+
|
|
39
|
+
## Introduction:
|
|
40
|
+
This repository is where the OCVL does most of its optoretinography (abbreviated to ORG) software development. This software will always be open source, and available to any researcher using it for non-profit work. For the moment, the software is designed around intensity-based optoretinography, or iORG processing. That means that it is capable of processing/analyzing data from any en-face device that produces videos (not volumes), such as scanning laser ophthalmoscopes or line-scan ophthalmoscopes, and their adaptive optics variants (e.g. AO-SLO/AO-LSO/AO-FiO).
|
|
41
|
+
|
|
42
|
+
## Using the software:
|
|
43
|
+
Working with optoretinograms often requires supra-normal processing of AOSLO/AOLSO/AOOCT datasets, so we have broken optoretinogram generation into a "pipeline" stage and an "analysis" stage.
|
|
44
|
+
|
|
45
|
+
For quick start information, [please see our wiki](https://github.com/OCVL/F-Cell/wiki/Quick-Start).
|
|
46
|
+
|
|
47
|
+
How these stages work are governed by json-based configuration files that allow you to run the code on your data's particular filename, video, and metadata format. It also allows you to specify the parameters used during the processing and analysis steps, for your specific scientific problem.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### How it works:
|
|
51
|
+
𝑓(Cell) operates in the following stages, which are detailed in our [wiki](https://github.com/OCVL/F-Cell/wiki).
|
|
52
|
+
|
|
53
|
+
The basic steps in the pre-analysis pipeline and analysis stages are as follows:
|
|
54
|
+
```mermaid
|
|
55
|
+
flowchart LR
|
|
56
|
+
|
|
57
|
+
subgraph preanalysis["Pre-Analysis Pipeline"]
|
|
58
|
+
direction TB
|
|
59
|
+
AA(Load Dataset) --> BB([Parse Tags/Metadata])
|
|
60
|
+
BB([Parse Tags/Metadata]) --> HH([Intra-Video Torsion Removal])
|
|
61
|
+
HH([Intra-Video Torsion Removal]) --> II(Data Output and Sorting)
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
preanalysis --> analysis
|
|
65
|
+
|
|
66
|
+
subgraph analysis["Analysis"]
|
|
67
|
+
direction TB
|
|
68
|
+
A(Load Dataset) --> B([Parse Tags/Metadata])
|
|
69
|
+
B([Parse Tags/Metadata]) --> D([Segment Query Points / Extract ORGs])
|
|
70
|
+
D([Segment Query Points / Extract ORG]) --> E([Standardize ORGs])
|
|
71
|
+
E([Standardize ORGs]) --> F([Summarize ORGs])
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
click BB "https://github.com/OCVL/F-Cell/wiki/Advanced:-Tag-Parsing" "Tag Parsing"
|
|
75
|
+
click CC "https://github.com/OCVL/F-Cell/wiki/Advanced:-Pre%E2%80%90Analysis-Pipeline#general-parameters" "Custom Steps"
|
|
76
|
+
click DD "https://github.com/OCVL/F-Cell/wiki/Advanced:-Pre%E2%80%90Analysis-Pipeline#trimming" "Trim Video"
|
|
77
|
+
click EE "https://github.com/OCVL/F-Cell/wiki/Advanced:-Pre%E2%80%90Analysis-Pipeline#flat-fielding" "Flat Field"
|
|
78
|
+
click FF "https://github.com/OCVL/F-Cell/wiki/Advanced:-Pre%E2%80%90Analysis-Pipeline#blurring" "Blurring"
|
|
79
|
+
click GG "https://github.com/OCVL/F-Cell/wiki/Advanced:-Pre%E2%80%90Analysis-Pipeline#roi-masking" "Crop Video"
|
|
80
|
+
click HH "https://github.com/OCVL/F-Cell/wiki/Advanced:-Pre%E2%80%90Analysis-Pipeline#torsion-correction" "Intra-Video Torsion Removal"
|
|
81
|
+
|
|
82
|
+
click B "https://github.com/OCVL/F-Cell/wiki/Advanced:-Tag-Parsing" "Tag Parsing"
|
|
83
|
+
click C "https://github.com/OCVL/F-Cell/wiki/Advanced:-Analysis-Parameters#data-normalization" "Normalize Data"
|
|
84
|
+
click D "https://github.com/OCVL/F-Cell/wiki/Advanced:-Analysis-Parameters#query-point-segmentation" "Query Point Segmentation"
|
|
85
|
+
click E "https://github.com/OCVL/F-Cell/wiki/Advanced:-Analysis-Parameters#signal-standardization" "Standardization"
|
|
86
|
+
click F "https://github.com/OCVL/F-Cell/wiki/Advanced:-Analysis-Parameters#org-summary" "Summarization"
|
|
87
|
+
click G "https://github.com/OCVL/F-Cell/wiki/Advanced:-Analysis-Metrics" "Metrics"
|
|
88
|
+
click H "https://github.com/OCVL/F-Cell/wiki/Advanced:-Analysis-Display-Parameters" "Display Results"
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Configuration files:
|
|
92
|
+
The configuration file uses a json file format. At the moment, its creation is manual, though we will be developing a GUI tool for easy creation/updating of parameters in the coming months. **Note: Examples can be found in the config_files directory.**
|
|
93
|
+
|
|
94
|
+
The [wiki](https://github.com/OCVL/F-Cell/wiki) containing instructions on how to use the pipeline as well as how to write a configuration file is currently under construction, but keep an eye for more instructions in March.
|
|
95
|
+
|
|
96
|
+
### Attribution:
|
|
97
|
+
In the future, if you use this software you will be able to cite a paper referring to this repository. In the meantime, please cite Gaffney et. al., "Intensity-based optoretinography reveals sub-clinical deficits in cone function in retinitis pigmentosa", 2024 - the algorithms and software used in that paper encapsulate those seen here, and this software was used for that paper.
|