summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-28 21:35:11 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-28 23:50:38 -0500
commit7ab67c5e51e8841149a0e9b7b855946d2514a0a7 (patch)
tree84b2fe99e65ab6ba2b145bbdd065749597749819 /README.md
parent50250771d87e0614d8fe6e14a75ba17539ad7f7d (diff)
downloadrequests-cache-7ab67c5e51e8841149a0e9b7b855946d2514a0a7.tar.gz
Minor edits for Readme and Related Projects
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index ed9d806..0caa1cd 100644
--- a/README.md
+++ b/README.md
@@ -75,7 +75,7 @@ for i in range(60):
With caching, the response will be fetched once, saved to `demo_cache.sqlite`, and subsequent
requests will return the cached response near-instantly.
-**Patch it:**
+**Patching:**
If you don't want to manage a session object, or just want to quickly test it out in your
application without modifying any code, requests-cache can also be installed globally, and all
@@ -88,7 +88,7 @@ requests_cache.install_cache('demo_cache')
requests.get('http://httpbin.org/delay/1')
```
-**Customize it:**
+**Configuration:**
A quick example of some of the options available:
```python
@@ -114,6 +114,7 @@ To find out more about what you can do with requests-cache, see:
* [User Guide](https://requests-cache.readthedocs.io/en/stable/user_guide.html)
* [API Reference](https://requests-cache.readthedocs.io/en/stable/reference.html)
+* [Project Info](https://requests-cache.readthedocs.io/en/latest/project_info.html)
* A working example at Real Python:
[Caching External API Requests](https://realpython.com/blog/python/caching-external-api-requests)
* More examples in the