We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd4042 commit 4ed9e49Copy full SHA for 4ed9e49
readme.md
@@ -1,4 +1,9 @@
1
# Python Cache: How to Speed Up Your Code with Effective Caching
2
+ * [How to implement a cache in Python](#how-to-implement-a-cache-in-python)
3
+ + [Install the required libraries](#install-the-required-libraries)
4
+ + [Method 1: Python caching using a manual decorator](#method-1-python-caching-using-a-manual-decorator)
5
+ + [Method 2: Python caching using LRU cache decorator](#method-2-python-caching-using-lru-cache-decorator)
6
+ + [Performance comparison](#performance-comparison)
7
8
This article will show you how to use caching in Python with your web
9
scraping tasks. You can read the [<u>full
0 commit comments