|
| 1 | +# Stubs for werkzeug (Python 2) |
| 2 | +# |
| 3 | +# NOTE: This dynamically typed stub was automatically generated by stubgen. |
| 4 | + |
| 5 | +from types import ModuleType |
| 6 | + |
| 7 | +from typing import Any |
| 8 | + |
| 9 | +from werkzeug import _internal |
| 10 | +from werkzeug import datastructures |
| 11 | +from werkzeug import debug |
| 12 | +from werkzeug import exceptions |
| 13 | +from werkzeug import formparser |
| 14 | +from werkzeug import http |
| 15 | +from werkzeug import local |
| 16 | +from werkzeug import security |
| 17 | +from werkzeug import serving |
| 18 | +from werkzeug import test |
| 19 | +from werkzeug import testapp |
| 20 | +from werkzeug import urls |
| 21 | +from werkzeug import useragents |
| 22 | +from werkzeug import utils |
| 23 | +from werkzeug import wsgi |
| 24 | + |
| 25 | +class module(ModuleType): |
| 26 | + def __getattr__(self, name): ... |
| 27 | + def __dir__(self): ... |
| 28 | + |
| 29 | + |
| 30 | +__version__ = ... # type: Any |
| 31 | + |
| 32 | +run_simple = serving.run_simple |
| 33 | +test_app = testapp.test_app |
| 34 | +UserAgent = useragents.UserAgent |
| 35 | +_easteregg = _internal._easteregg |
| 36 | +DebuggedApplication = debug.DebuggedApplication |
| 37 | +MultiDict = datastructures.MultiDict |
| 38 | +CombinedMultiDict = datastructures.CombinedMultiDict |
| 39 | +Headers = datastructures.Headers |
| 40 | +EnvironHeaders = datastructures.EnvironHeaders |
| 41 | +ImmutableList = datastructures.ImmutableList |
| 42 | +ImmutableDict = datastructures.ImmutableDict |
| 43 | +ImmutableMultiDict = datastructures.ImmutableMultiDict |
| 44 | +TypeConversionDict = datastructures.TypeConversionDict |
| 45 | +ImmutableTypeConversionDict = datastructures.ImmutableTypeConversionDict |
| 46 | +Accept = datastructures.Accept |
| 47 | +MIMEAccept = datastructures.MIMEAccept |
| 48 | +CharsetAccept = datastructures.CharsetAccept |
| 49 | +LanguageAccept = datastructures.LanguageAccept |
| 50 | +RequestCacheControl = datastructures.RequestCacheControl |
| 51 | +ResponseCacheControl = datastructures.ResponseCacheControl |
| 52 | +ETags = datastructures.ETags |
| 53 | +HeaderSet = datastructures.HeaderSet |
| 54 | +WWWAuthenticate = datastructures.WWWAuthenticate |
| 55 | +Authorization = datastructures.Authorization |
| 56 | +FileMultiDict = datastructures.FileMultiDict |
| 57 | +CallbackDict = datastructures.CallbackDict |
| 58 | +FileStorage = datastructures.FileStorage |
| 59 | +OrderedMultiDict = datastructures.OrderedMultiDict |
| 60 | +ImmutableOrderedMultiDict = datastructures.ImmutableOrderedMultiDict |
| 61 | +escape = utils.escape |
| 62 | +environ_property = utils.environ_property |
| 63 | +append_slash_redirect = utils.append_slash_redirect |
| 64 | +redirect = utils.redirect |
| 65 | +cached_property = utils.cached_property |
| 66 | +import_string = utils.import_string |
| 67 | +dump_cookie = http.dump_cookie |
| 68 | +parse_cookie = http.parse_cookie |
| 69 | +unescape = utils.unescape |
| 70 | +format_string = utils.format_string |
| 71 | +find_modules = utils.find_modules |
| 72 | +header_property = utils.header_property |
| 73 | +html = utils.html |
| 74 | +xhtml = utils.xhtml |
| 75 | +HTMLBuilder = utils.HTMLBuilder |
| 76 | +validate_arguments = utils.validate_arguments |
| 77 | +ArgumentValidationError = utils.ArgumentValidationError |
| 78 | +bind_arguments = utils.bind_arguments |
| 79 | +secure_filename = utils.secure_filename |
| 80 | +BaseResponse = wrappers.BaseResponse |
| 81 | +BaseRequest = wrappers.BaseRequest |
| 82 | +Request = wrappers.Request |
| 83 | +Response = wrappers.Response |
| 84 | +AcceptMixin = wrappers.AcceptMixin |
| 85 | +ETagRequestMixin = wrappers.ETagRequestMixin |
| 86 | +ETagResponseMixin = wrappers.ETagResponseMixin |
| 87 | +ResponseStreamMixin = wrappers.ResponseStreamMixin |
| 88 | +CommonResponseDescriptorsMixin = wrappers.CommonResponseDescriptorsMixin |
| 89 | +UserAgentMixin = wrappers.UserAgentMixin |
| 90 | +AuthorizationMixin = wrappers.AuthorizationMixin |
| 91 | +WWWAuthenticateMixin = wrappers.WWWAuthenticateMixin |
| 92 | +CommonRequestDescriptorsMixin = wrappers.CommonRequestDescriptorsMixin |
| 93 | +Local = local.Local |
| 94 | +LocalManager = local.LocalManager |
| 95 | +LocalProxy = local.LocalProxy |
| 96 | +LocalStack = local.LocalStack |
| 97 | +release_local = local.release_local |
| 98 | +generate_password_hash = security.generate_password_hash |
| 99 | +check_password_hash = security.check_password_hash |
| 100 | +Client = test.Client |
| 101 | +EnvironBuilder = test.EnvironBuilder |
| 102 | +create_environ = test.create_environ |
| 103 | +run_wsgi_app = test.run_wsgi_app |
| 104 | +get_current_url = wsgi.get_current_url |
| 105 | +get_host = wsgi.get_host |
| 106 | +pop_path_info = wsgi.pop_path_info |
| 107 | +peek_path_info = wsgi.peek_path_info |
| 108 | +SharedDataMiddleware = wsgi.SharedDataMiddleware |
| 109 | +DispatcherMiddleware = wsgi.DispatcherMiddleware |
| 110 | +ClosingIterator = wsgi.ClosingIterator |
| 111 | +FileWrapper = wsgi.FileWrapper |
| 112 | +make_line_iter = wsgi.make_line_iter |
| 113 | +LimitedStream = wsgi.LimitedStream |
| 114 | +responder = wsgi.responder |
| 115 | +wrap_file = wsgi.wrap_file |
| 116 | +extract_path_info = wsgi.extract_path_info |
| 117 | +parse_etags = http.parse_etags |
| 118 | +parse_date = http.parse_date |
| 119 | +http_date = http.http_date |
| 120 | +cookie_date = http.cookie_date |
| 121 | +parse_cache_control_header = http.parse_cache_control_header |
| 122 | +is_resource_modified = http.is_resource_modified |
| 123 | +parse_accept_header = http.parse_accept_header |
| 124 | +parse_set_header = http.parse_set_header |
| 125 | +quote_etag = http.quote_etag |
| 126 | +unquote_etag = http.unquote_etag |
| 127 | +generate_etag = http.generate_etag |
| 128 | +dump_header = http.dump_header |
| 129 | +parse_list_header = http.parse_list_header |
| 130 | +parse_dict_header = http.parse_dict_header |
| 131 | +parse_authorization_header = http.parse_authorization_header |
| 132 | +parse_www_authenticate_header = http.parse_www_authenticate_header |
| 133 | +remove_entity_headers = http.remove_entity_headers |
| 134 | +is_entity_header = http.is_entity_header |
| 135 | +remove_hop_by_hop_headers = http.remove_hop_by_hop_headers |
| 136 | +parse_options_header = http.parse_options_header |
| 137 | +dump_options_header = http.dump_options_header |
| 138 | +is_hop_by_hop_header = http.is_hop_by_hop_header |
| 139 | +unquote_header_value = http.unquote_header_value |
| 140 | +quote_header_value = http.quote_header_value |
| 141 | +HTTP_STATUS_CODES = http.HTTP_STATUS_CODES |
| 142 | +url_decode = urls.url_decode |
| 143 | +url_encode = urls.url_encode |
| 144 | +url_quote = urls.url_quote |
| 145 | +url_quote_plus = urls.url_quote_plus |
| 146 | +url_unquote = urls.url_unquote |
| 147 | +url_unquote_plus = urls.url_unquote_plus |
| 148 | +url_fix = urls.url_fix |
| 149 | +Href = urls.Href |
| 150 | +iri_to_uri = urls.iri_to_uri |
| 151 | +uri_to_iri = urls.uri_to_iri |
| 152 | +parse_form_data = formparser.parse_form_data |
| 153 | +abort = exceptions.Aborter |
| 154 | +Aborter = exceptions.Aborter |
0 commit comments