Perseus RESTful API Client Python Library
Project description
Perseus RESTful API Client Python Library
Repository of classes that provide Pythonic interfaces to connect to a RESTful API server developed with Perseus RESTful API server framework.
Python Library Poster 0.8.1
Note: this library includes a modified version of poster 0.8.1
, which original version provides a set of classes and functions to facilitate making HTTP POST (or PUT) requests using the standard multipart/form-data encoding.
The original library poster 0.8.1
cannot be used to upload file uploaded into memory (i.e., stream-to-memory), like for instance django InMemoryUploadedFile
. The reason is that such file-like object doesn't support the method fileno()
used by the poster 0.8.1
to determine the size of the file-like object to upload in Python module poster.encode
:
if fileobj is not None and filesize is None:
# Try and determine the file size
try:
self.filesize = os.fstat(fileobj.fileno()).st_size
except (OSError, AttributeError):
try:
fileobj.seek(0, 2)
self.filesize = fileobj.tell()
fileobj.seek(0)
except:
raise ValueError("Could not determine filesize")
This code raises the exception io.UnsupportedOperation
that poster 0.8.1
doesn't catch. Chris AtLee included Alon Hammerman's patch in the tag tip
of the library ``poster, for catching the
io.UnsupportedOperation for fileno` on 2013-03-12:
try:
from io import UnsupportedOperation
except ImportError:
UnsupportedOperation = None
(...)
if fileobj is not None and filesize is None:
# Try and determine the file size
try:
self.filesize = os.fstat(fileobj.fileno()).st_size
except (OSError, AttributeError, UnsupportedOperation):
try:
fileobj.seek(0, 2)
self.filesize = fileobj.tell()
fileobj.seek(0)
except:
raise ValueError("Could not determine filesize")
However, the latest version of poster
installable with pip
is still 0.8.1
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for perseus-restful-api-client-library-1.4.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b3ea7e43c3dade3422d6c0147e9a4a5803e0bf7ea37ea54a8f4b7ac02665005 |
|
MD5 | 1dc259ac9c7ed56e931a9c2d24a1fb41 |
|
BLAKE2b-256 | 0aa07f2419fb7811f4d0734889c81eeb9bb9b76df91b47e50ac35d3876fb9c0a |
Hashes for perseus_restful_api_client_library-1.4.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1fce13dd7743222d040685749d83cd3793de5bb9891ba3442e0d97979b8591b |
|
MD5 | e09979a5d473260d81c06bc8929f96e6 |
|
BLAKE2b-256 | fd4f702876071fd3b6513161cc67ec43655400830d9c735442d0543530e98c2d |