Skip to main content

Convert the request data to form-data.

Project description

Multipartformdata

Convert the request data to form-data.

Convert the request data to form-data.

data:
	{
		'id': '23139j76h6t15f',
		'name': 'yhleng'
	}
Example:
	e.g.
	data_str = MultipartFormData.to_form_data(data) =>
	------WebKitFormBoundary7MA4YWxkTrZu0gW
	Content-Disposition: form-data; name="id"

	123131313
	------WebKitFormBoundary7MA4YWxkTrZu0gW
	Content-Disposition: form-data; name="name"

	yhleng
	------WebKitFormBoundary7MA4YWxkTrZu0gW--

	e.g.
	headers = {
		"content-type": "multipart/form-data; boundary=1q2w3e4r5t67u9i8u7y6t"
	}
	data_str = MultipartFormData.to_form_data(data, headers=headers)
	--1q2w3e4r5t67u9i8u7y6t
	Content-Disposition: form-data; name="id"

	123131313
	--1q2w3e4r5t67u9i8u7y6t
	Content-Disposition: form-data; name="name"

	yhleng
	--1q2w3e4r5t67u9i8u7y6t--

"""

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multipartformdata-1.1.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

MultipartFormData-1.1-py3-none-any.whl (11.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page