
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
requests-mv-integrations
Advanced tools
Extension of Python HTTP `requests` with verbose logging using `logging-mv-integrations`.
.. -- mode: rst --
Extension of Python HTTP requests <https://pypi.python.org/pypi/requests>
_ with verbose
logging using logging-mv-integrations <https://pypi.python.org/pypi/logging-mv-integrations>
_.
.. start-badges
.. list-table:: :stub-columns: 1
* - docs
- |docs| |license|
* - info
- |hits| |contributors|
* - tests
- |travis| |coveralls|
* - package
- |version| |supported-versions|
* - other
- |requires|
.. |docs| image:: https://readthedocs.org/projects/requests-mv-integrations/badge/?style=flat :alt: Documentation Status :target: http://requests-mv-integrations.readthedocs.io
.. |hits| image:: http://hits.dwyl.io/TuneLab/requests-mv-integrations.svg :alt: Hit Count :target: http://hits.dwyl.io/TuneLab/requests-mv-integrations
.. |contributors| image:: https://img.shields.io/github/contributors/TuneLab/requests-mv-integrations.svg :alt: Contributors :target: https://github.com/TuneLab/requests-mv-integrations/graphs/contributors
.. |license| image:: https://img.shields.io/badge/License-MIT-yellow.svg :alt: License Status :target: https://opensource.org/licenses/MIT
.. |travis| image:: https://travis-ci.org/TuneLab/requests-mv-integrations.svg?branch=master :alt: Travis-CI Build Status :target: https://travis-ci.org/TuneLab/requests-mv-integrations
.. |coveralls| image:: https://coveralls.io/repos/TuneLab/requests-mv-integrations/badge.svg?branch=master&service=github :alt: Code Coverage Status :target: https://coveralls.io/r/TuneLab/requests-mv-integrations
.. |requires| image:: https://requires.io/github/TuneLab/requests-mv-integrations/requirements.svg?branch=master :alt: Requirements Status :target: https://requires.io/github/TuneLab/requests-mv-integrations/requirements/?branch=master
.. |version| image:: https://img.shields.io/pypi/v/requests_mv_integrations.svg?style=flat :alt: PyPI Package latest release :target: https://pypi.python.org/pypi/requests_mv_integrations
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/requests-mv-integrations.svg?style=flat :alt: Supported versions :target: https://pypi.python.org/pypi/requests-mv-integrations
.. end-badges
.. code-block:: bash
pip install requests_mv_integrations
requests-mv-integrations
is an extension of the Python package requests <https://pypi.python.org/pypi/requests>
_
and it is used for TUNE Multiverse Integrations for handling all HTTP requests including APIs in REST and SOAP,
screen scrapping, and handling response downloads in JSON, XML, and CSV.
.. image:: ./images/requests_mv_integrations.png :scale: 50 % :alt: UML requests-mv-integrations
.. code-block:: python
URL_TUNE_MAT_API_COUNTRIES = \
'https://api.mobileapptracking.com/v2/countries/find.json'
from requests_mv_integrations import (
RequestMvIntegrationDownload,
)
request_download = RequestMvIntegrationDownload(logger_level=logging.DEBUG)
result = \
request_download.request(
request_method='GET',
request_url=URL_TUNE_MAT_API_COUNTRIES,
request_params=None,
request_retry=None,
request_headers=HEADER_CONTENT_TYPE_APP_JSON,
request_label="TMC Countries"
)
json_tune_mat_countries = result.json()
pprint(json_tune_mat_countries)
Example ^^^^^^^
.. code-block:: bash
$ python3 examples/example_request.py
{
"asctime": "2017-10-13 12:02:53 -0700",
"levelname": "INFO",
"name": "__main__",
"version": "00.05.04",
"message": "Start"
}
{
"asctime": "2017-10-13 12:02:53 -0700",
"levelname": "DEBUG",
"name": "requests_mv_integrations",
"version": "00.05.04",
"message": "TMC Countries: Start"
}
...
{
"asctime": "2017-10-13 12:02:53 -0700",
"levelname": "DEBUG",
"name": "requests_mv_integrations",
"version": "00.05.04",
"message": "TMC Countries: Details",
"request_data": "",
"request_headers": {
"Content-Type": "application/json",
"User-Agent": "(requests-mv-integrations/00.05.04, Python/3.6.2)"},
"request_label": "TMC Countries",
"request_method": "GET",
"request_params": {},
"request_url": "https://api.mobileapptracking.com/v2/countries/find.json",
"timeout": 60
}
{
"asctime": "2017-10-13 12:02:53 -0700",
"levelname": "DEBUG",
"name": "requests_mv_integrations",
"version": "00.05.04",
"message": "TMC Countries: Curl",
"request_curl": "curl --verbose
-X GET
-H 'Content-Type: application/json'
-H 'User-Agent: (requests-mv-integrations/00.05.04, Python/3.6.2)'
--connect-timeout 60
-L 'https://api.mobileapptracking.com/v2/countries/find.json'",
"request_label": "TMC Countries",
"request_method": "GET"
}
...
{
'data': [
{'id': 0, 'name': 'International (Generic)'},
{'id': 4, 'name': 'Afghanistan'},
{'id': 8, 'name': 'Albania'},
{'id': 10, 'name': 'Antarctica'},
{'id': 12, 'name': 'Algeria'},
{'id': 16, 'name': 'American Samoa'},
{'id': 20, 'name': 'Andorra'},
{'id': 24, 'name': 'Angola'},
{'id': 28, 'name': 'Antigua And Barbuda'},
{'id': 31, 'name': 'Azerbaijan'},
],
'response_size': '845',
'status_code': 200,
}
class RequestMvIntegration
-- Base class using requests <https://pypi.python.org/pypi/requests>
_ with retry functionality and verbose logging.class RequestMvIntegrationDownload
-- Download file handling.class RequestMvIntegrationUpload
-- Upload file handling.requests-mv-integrations
module is built upon Python 3 and has dependencies upon
several Python modules available within Python Package Index PyPI <https://pypi.python.org/pypi>
_.
.. code-block:: bash
make install
or
.. code-block:: bash
python3 -m pip uninstall --yes --no-input -r requirements.txt
python3 -m pip install --upgrade -r requirements.txt
Packages ^^^^^^^^
.. :changelog:
FAQs
Extension of Python HTTP `requests` with verbose logging using `logging-mv-integrations`.
We found that requests-mv-integrations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.