fields
RequestField
Bases: object
A data container for request body parameters.
:param name: The name of this request field. Must be unicode. :param data: The data/value body. :param filename: An optional filename of the request field. Must be unicode. :param headers: An optional dict-like object of headers to initially use for the field. :param header_formatter: An optional callable that is used to encode and format the headers. By default, this is :func:format_header_param_html5
.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
from_tuples(fieldname, value, header_formatter=format_header_param_html5)
classmethod
A :class:~urllib3.fields.RequestField
factory from old-style tuple parameters.
Supports constructing :class:~urllib3.fields.RequestField
from parameter of key/value strings AND key/filetuple. A filetuple is a (filename, data, MIME type) tuple where the MIME type is optional. For example::
'foo': 'bar',
'fakefile': ('foofile.txt', 'contents of foofile'),
'realfile': ('barfile.txt', open('realfile').read()),
'typedfile': ('bazfile.bin', open('bazfile').read(), 'image/jpeg'),
'nonamefile': 'contents of nonamefile field',
Field names and filenames must be unicode.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
make_multipart(content_disposition=None, content_type=None, content_location=None)
Makes this request field into a multipart request field.
This method overrides "Content-Disposition", "Content-Type" and "Content-Location" headers to the request parameter.
:param content_type: The 'Content-Type' of the request body. :param content_location: The 'Content-Location' of the request body.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
render_headers()
Renders the headers for this request field.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|
format_header_param_html5(name, value)
Helper function to format and quote a single header parameter using the HTML5 strategy.
Particularly useful for header parameters which might contain non-ASCII values, like file names. This follows the HTML5 Working Draft Section 4.10.22.7
_ and matches the behavior of curl and modern browsers.
.. _HTML5 Working Draft Section 4.10.22.7: https://w3c.github.io/html/sec-forms.html#multipart-form-data
:param name: The name of the parameter, a string expected to be ASCII only. :param value: The value of the parameter, provided as bytes
or `str``. :ret: A unicode string, stripped of troublesome characters.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
format_header_param_rfc2231(name, value)
Helper function to format and quote a single header parameter using the strategy defined in RFC 2231.
Particularly useful for header parameters which might contain non-ASCII values, like file names. This follows RFC 2388 Section 4.4 <https://tools.ietf.org/html/rfc2388#section-4.4>
_.
:param name: The name of the parameter, a string expected to be ASCII only. :param value: The value of the parameter, provided as bytes
or `str``. :ret: An RFC-2231-formatted unicode string.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
guess_content_type(filename, default='application/octet-stream')
Guess the "Content-Type" of a file.
:param filename: The filename to guess the "Content-Type" of using :mod:mimetypes
. :param default: If no "Content-Type" can be guessed, default to default
.
Source code in client/ayon_fusion/vendor/urllib3/fields.py
10 11 12 13 14 15 16 17 18 19 20 21 |
|