An open API service indexing awesome lists of open source software.

https://github.com/skylothar/requests-bce

Baidu BCE using python-request
https://github.com/skylothar/requests-bce

Last synced: 2 months ago
JSON representation

Baidu BCE using python-request

Awesome Lists containing this project

README

        

BCE using python-requests
============================

Version
-------
v0.0.4

.. image:: https://img.shields.io/travis/SkyLothar/requests-bce.svg?style=flat-square
:target: https://travis-ci.org/SkyLothar/requests-bce

.. image:: https://img.shields.io/coveralls/SkyLothar/requests-bce/master.svg?style=flat-square
:target: https://coveralls.io/r/SkyLothar/requests-bce

.. image:: https://requires.io/github/SkyLothar/requests-bce/requirements.svg?branch=master
:target: https://requires.io/github/SkyLothar/requests-bce/requirements/?branch=master

.. image:: https://img.shields.io/pypi/pyversions/requests-bce.svg?style=flat-square
:target: https://pypi.python.org/pypi/requests-bce/
:alt: Supported Python versions

.. image:: https://img.shields.io/github/license/skylothar/requests-bce.svg?style=flat-square
:target: https://pypi.python.org/pypi/requests-bce/
:alt: License

BCE authentication for the awesome requests!
--------------------------------------------
support auth version: v1

- [x] BCM

How to Install
--------------
Just

.. code-block:: bash

pip install requests-bce

How to Use
----------
Just pass the auth object to requests

.. code-block:: python

>>> import requests
>>> from bceauth import AuthV1
>>> req = requests.post(
... "http://example.com/path/to/file",
... auth=AuthV1("access-key", "secret-key")
... )

Or set the auth attribute to the session object

.. code-block:: python

>>> import requests
>>> from bceauth import AuthV1
>>> session = requests.session()
>>> session.auth = AuthV1("access-key", "secret-key")
>>> req = session.get("http://example.com/path/to/file")