Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flockwave-gps / gps / http / __init__.py
Size: Mime:
"""Very low-level HTTP client library.

This is primarily used in place of higher-level libraries like ``httplib``
or ``urllib2`` when we need to mess with the underlying socket directly.
"""

from .errors import ResponseError
from .request import Request
from .response import Response

__all__ = ("Request", "Response", "ResponseError")