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