Skip to content
This repository has been archived by the owner on Jun 24, 2019. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Grosser committed Jun 17, 2010
0 parents commit 21bdf9c
Show file tree
Hide file tree
Showing 16 changed files with 1,134 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1 @@
include tests/*.py
22 changes: 22 additions & 0 deletions PKG-INFO
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,22 @@
Metadata-Version: 1.0
Name: poster
Version: 0.6.0
Summary: Streaming HTTP uploads and multipart/form-data encoding
Home-page: http://atlee.ca/software/poster
Author: Chris AtLee
Author-email: chris@atlee.ca
License: MIT
Download-URL: http://atlee.ca/software/poster/dist/0.6.0
Description: 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
Keywords: python http post multipart/form-data file upload
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
22 changes: 22 additions & 0 deletions poster.egg-info/PKG-INFO
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,22 @@
Metadata-Version: 1.0
Name: poster
Version: 0.6.0
Summary: Streaming HTTP uploads and multipart/form-data encoding
Home-page: http://atlee.ca/software/poster
Author: Chris AtLee
Author-email: chris@atlee.ca
License: MIT
Download-URL: http://atlee.ca/software/poster/dist/0.6.0
Description: 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
Keywords: python http post multipart/form-data file upload
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
14 changes: 14 additions & 0 deletions poster.egg-info/SOURCES.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,14 @@
MANIFEST.in
setup.py
poster/__init__.py
poster/encode.py
poster/streaminghttp.py
poster.egg-info/PKG-INFO
poster.egg-info/SOURCES.txt
poster.egg-info/dependency_links.txt
poster.egg-info/requires.txt
poster.egg-info/top_level.txt
poster.egg-info/zip-safe
tests/test_encode.py
tests/test_streaming.py
tests/test_streaming_https.py
1 change: 1 addition & 0 deletions poster.egg-info/dependency_links.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1 @@

5 changes: 5 additions & 0 deletions poster.egg-info/requires.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@


[poster]
buildutils
sphinx
1 change: 1 addition & 0 deletions poster.egg-info/top_level.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1 @@
poster
1 change: 1 addition & 0 deletions poster.egg-info/zip-safe
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1 @@

32 changes: 32 additions & 0 deletions poster/__init__.py
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright (c) 2010 Chris AtLee
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""poster module
Support for streaming HTTP uploads, and multipart/form-data encoding
```poster.version``` is a 3-tuple of integers representing the version number.
New releases of poster will always have a version number that compares greater
than an older version of poster.
New in version 0.6."""

import poster.streaminghttp
import poster.encode

version = (0, 6, 0) # Thanks JP!
Loading

0 comments on commit 21bdf9c

Please sign in to comment.