Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
.. image:: https://github.com/gabrielfalcao/HTTPretty/raw/master/docs/source/_static/logo.svg?sanitize=true
HTTP Client mocking tool for Python created by Gabriel Falcão <https://github.com/gabrielfalcao>
_ . It provides a full fake TCP socket module. Inspired by FakeWeb <https://github.com/chrisk/fakeweb>
_
Github Repository <https://github.com/gabrielfalcao/HTTPretty>
_Documentation <https://httpretty.readthedocs.io/en/latest/>
_PyPI Package <https://pypi.org/project/httpretty/>
_Python Support:
.. image:: https://img.shields.io/pypi/dm/HTTPretty :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/codecov/c/github/gabrielfalcao/HTTPretty :target: https://codecov.io/gh/gabrielfalcao/HTTPretty
.. image:: https://img.shields.io/github/workflow/status/gabrielfalcao/HTTPretty/HTTPretty%20Tests?label=Python%203.6%20-%203.9 :target: https://github.com/gabrielfalcao/HTTPretty/actions
.. image:: https://img.shields.io/readthedocs/httpretty :target: https://httpretty.readthedocs.io/
.. image:: https://img.shields.io/github/license/gabrielfalcao/HTTPretty?label=Github%20License :target: https://github.com/gabrielfalcao/HTTPretty/blob/master/COPYING
.. image:: https://img.shields.io/pypi/v/HTTPretty :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/pypi/l/HTTPretty?label=PyPi%20License :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/pypi/format/HTTPretty :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/pypi/status/HTTPretty :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/pypi/pyversions/HTTPretty :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/pypi/implementation/HTTPretty :target: https://pypi.org/project/HTTPretty
.. image:: https://img.shields.io/snyk/vulnerabilities/github/gabrielfalcao/HTTPretty :target: https://github.com/gabrielfalcao/HTTPretty/network/alerts
.. image:: https://img.shields.io/github/v/tag/gabrielfalcao/HTTPretty :target: https://github.com/gabrielfalcao/HTTPretty/releases
.. |Join the chat at https://gitter.im/gabrielfalcao/HTTPretty| image:: https://badges.gitter.im/gabrielfalcao/HTTPretty.svg :target: https://gitter.im/gabrielfalcao/HTTPretty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
.. code:: bash
pip install httpretty
.. code:: python
import sure
import httpretty
import requests
@httpretty.activate(verbose=True, allow_net_connect=False)
def test_httpbin():
httpretty.register_uri(
httpretty.GET,
"https://httpbin.org/ip",
body='{"origin": "127.0.0.1"}'
)
response = requests.get('https://httpbin.org/ip')
response.json().should.equal({'origin': '127.0.0.1'})
httpretty.latest_requests().should.have.length_of(1)
httpretty.last_request().should.equal(httpretty.latest_requests()[0])
httpretty.last_request().body.should.equal('{"origin": "127.0.0.1"}')
.. code:: python
@httpretty.activate(verbose=True, allow_net_connect=False)
def test_post_bodies():
url = 'http://httpbin.org/post'
httpretty.register_uri(httpretty.POST, url, status=200)
httpretty.register_uri(httpretty.POST, url, status=400)
requests.post(url, data={'foo': 'bar'})
requests.post(url, data={'zoo': 'zoo'})
assert 'foo=bar' in httpretty.latest_requests()[0].body
assert 'zoo=bar' in httpretty.latest_requests()[1].body
::
<HTTPretty - HTTP client mock for Python>
Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
HTTPretty has received many contributions <https://github.com/gabrielfalcao/HTTPretty/graphs/contributors>
_
but some folks made remarkable contributions and deserve extra credit:
@andrewgross <https://github.com/andrewgross>
_@hughsaunders <https://github.com/hughsaunders>
_@JNRowe <https://github.com/JNRowe>
_@mhluongo <https://github.com/mhluongo>
_@spulec <https://github.com/spulec>
_@hroncok <https://github.com/hroncok>
_
Mario Jonke ~> @mariojonke <https://github.com/mariojonke>
_FAQs
HTTP client mock for Python
We found that httpretty demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.