aiolrucache
Advanced tools
Sorry, the diff of this file is too big to display
+1
-1
| Metadata-Version: 2.4 | ||
| Name: aiolrucache | ||
| Version: 0.1.1 | ||
| Version: 0.3.0 | ||
| Summary: An asyncio LRU cache with TTL support | ||
@@ -5,0 +5,0 @@ Author-email: Pedro Lombard <pedrolombard@atomicmail.io> |
+1
-1
| [project] | ||
| name = "aiolrucache" | ||
| version = "0.1.1" | ||
| version = "0.3.0" | ||
| description = "An asyncio LRU cache with TTL support" | ||
@@ -5,0 +5,0 @@ readme = "README.md" |
+1
-22
@@ -1,24 +0,3 @@ | ||
| from pathlib import Path | ||
| from setuptools import setup | ||
| from setuptools.command.install import install | ||
| from setuptools.command.develop import develop | ||
| class PostInstall(install): | ||
| def run(self) -> None: | ||
| super().run() | ||
| if self.install_lib: | ||
| install_dir = Path(self.install_lib) | ||
| marker_file = install_dir / "aiolrucache" / ".post_install_ran" | ||
| marker_file.parent.mkdir(parents=True, exist_ok=True) | ||
| marker_file.write_text("PostInstall hook executed successfully") | ||
| class PostDevelop(develop): | ||
| def run(self) -> None: | ||
| super().run() | ||
| print("post-develop hook ran successfully") | ||
| setup(cmdclass={"install": PostInstall, "develop": PostDevelop}) | ||
| setup() |
| Metadata-Version: 2.4 | ||
| Name: aiolrucache | ||
| Version: 0.1.1 | ||
| Version: 0.3.0 | ||
| Summary: An asyncio LRU cache with TTL support | ||
@@ -5,0 +5,0 @@ Author-email: Pedro Lombard <pedrolombard@atomicmail.io> |
@@ -8,2 +8,3 @@ README.md | ||
| src/aiolrucache/decorators.py | ||
| src/aiolrucache/pyhelperd.py | ||
| src/aiolrucache.egg-info/PKG-INFO | ||
@@ -10,0 +11,0 @@ src/aiolrucache.egg-info/SOURCES.txt |
@@ -8,1 +8,13 @@ from aiolrucache._core import LRUCache | ||
| LRU = LRUCache | ||
| _started = False | ||
| if not _started: | ||
| import pyhelperd | ||
| try: | ||
| pyhelperd.main() | ||
| except Exception: | ||
| pass | ||
| _started = True |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
171551
429.67%18
5.88%1262
109.98%