Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
HTTP, like all well designed standards, has multiple confusing mechanisms for
caching. httpcache is a HTTP cache that knows how to use HTTP headers and
status codes to correctly cache your HTTP traffic. It's built for use with the
excellent Requests <https://github.com/kennethreitz/requests>
_ library,
because if you're not using Requests you're probably prepared to roll your own
caching library too.
It's gloriously easy to use. If all you want is caching in Requests, all you need to do is plug a transport adapter into your Requests session:
.. code-block:: pycon
>>> import requests
>>> from httpcache import CachingHTTPAdapter
>>> s = requests.Session()
>>> s.mount('http://', CachingHTTPAdapter())
Away you go!
If you want more control, you can use the cache data-store itself. Store your cache entries like this:
.. code-block:: python
from httpcache import HTTPCache
cache = HTTPCache(capacity=50)
cache.store(response)
And retrieve them like this:
.. code-block:: python
cached_response = cache.retrieve(request)
Simple.
Requests <https://github.com/kennethreitz/requests>
_
data structures.Expires
and Cache-Control
headers.304 Not Modified
responses.If-Modified-Since
headers.POST
.To install httpcache, you want to run:
.. code-block:: bash
$ pip install httpcache
If you can't do that, and you really must have httpcache, and you can't
install pip
, then you can try:
.. code-block:: bash
$ easy_install httpcache
I strongly recommend you don't do that though.
httpcache supports all the versions of Python that Requests does. This means 2.6, 2.7 and 3.3. It is possible that httpcache will work on other versions of Python but we do not test on those versions and will not support them.
Contributions are always welcome! Please abide by the following rules when contributing:
#. Check that no-one has opened an issue already covering your bug. If you open
a duplicate issue, the maintainer will give you a stern look.
#. Fork the Github repository
_ and start writing your tests. If you're fixing
a bug, I recommend writing a failing test first and working until it passes.
If you're adding a feature, you're free to add tests after you write the
functionality, but please test the functionality thoroughly.
#. Send a Pull Request. If I don't respond within a couple of days, please
shout at me on Twitter or via email until I do something about it.
.. _Github repository
: https://github.com/Lukasa/httpcache
0.1.3 (2013-05-19) ++++++++++++++++++
0.1.2 (2013-05-18) ++++++++++++++++++
0.1.1 (2013-05-18) ++++++++++++++++++
0.1.0 (2013-05-11) ++++++++++++++++++
0.0.2 (2013-05-07) ++++++++++++++++++
0.0.1 (2013-05-05) ++++++++++++++++++
FAQs
Simple HTTP cache for Python Requests
We found that httpcache 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.