Metadata-Version: 2.0
Name: prequest
Version: 1.0.0
Summary: Light wrapper around the requests library that facilitates data backup to a configurable data source.
Home-page: https://github.com/Data-Mechanics/prequest
Author: Boston University Software & Application Innovation Lab
Author-email: hicsail@bu.edu
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Dist: requests (>=2.18.4)

prequest
========

.. image:: https://travis-ci.org/Data-Mechanics/prequest.svg?branch=master
    :target: https://travis-ci.org/Data-Mechanics/prequest

Light wrapper around the ``requests`` library that facilitates data backup to a configurable data source.

Installation
============

``prequest`` can be installed using ``pip``::

    $ pip install prequest

Usage
=====

To make a GET request::

    import prequest
    resp = prequest.get('https://your_url.com')



