aboutsummaryrefslogtreecommitdiff
path: root/python/poster/README
diff options
context:
space:
mode:
authorAlexander Verbovetsky <alik@ejik.org>2016-09-02 11:14:20 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-09-03 07:17:22 +0700
commita03875334eadead1b0fdb4fd7dc76eb90add3d92 (patch)
tree54a840c56b1680802953a2a34adc2195bc6174b1 /python/poster/README
parent7074e8450997d9401eafe93ec77fec5fa457df52 (diff)
python/poster: Added (streaming HTTP uploads).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/poster/README')
-rw-r--r--python/poster/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/poster/README b/python/poster/README
new file mode 100644
index 0000000000000..3202755f1b7ad
--- /dev/null
+++ b/python/poster/README
@@ -0,0 +1,8 @@
+poster provides a set of classes and functions to faciliate making HTTP POST
+(or PUT) requests using the standard multipart/form-data encoding.
+
+The modules in the Python standard library don't provide a way to upload large
+files via HTTP without having to load the entire file into memory first.
+
+poster provides support for both streaming POST requests as well as
+multipart/form-data encoding of string or file parameters.