pycacheable 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycacheable
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Decorator de cache para funções e métodos Python, com backends InMemory e SQLite, TTL configurável e hash estável de parâmetros.
5
5
  Author-email: Leonardo Pinho <contato@leonardopinho.com>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pycacheable"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Decorator de cache para funções e métodos Python, com backends InMemory e SQLite, TTL configurável e hash estável de parâmetros."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -3,7 +3,7 @@ import threading
3
3
  import time
4
4
  from typing import Any, Dict, Optional, Tuple, OrderedDict
5
5
 
6
- from src.pycacheable.cache_base import CacheBase
6
+ from .cache_base import CacheBase
7
7
 
8
8
 
9
9
  class InMemoryCache(CacheBase):
@@ -5,7 +5,7 @@ import threading
5
5
  import time
6
6
  from typing import Any, Dict, Optional, Tuple
7
7
 
8
- from src.pycacheable.cache_base import CacheBase
8
+ from .cache_base import CacheBase
9
9
 
10
10
 
11
11
  class SQLiteCache(CacheBase):
@@ -1,8 +1,8 @@
1
1
  import functools
2
2
  from typing import Any, Callable, Dict, Optional, Tuple
3
3
 
4
- from src.pycacheable.backend_sqlite import SQLiteCache
5
- from src.pycacheable.hashing import _build_key_from_call
4
+ from .backend_sqlite import SQLiteCache
5
+ from .hashing import _build_key_from_call
6
6
 
7
7
 
8
8
  def cacheable(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycacheable
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Decorator de cache para funções e métodos Python, com backends InMemory e SQLite, TTL configurável e hash estável de parâmetros.
5
5
  Author-email: Leonardo Pinho <contato@leonardopinho.com>
6
6
  License: MIT License
File without changes
File without changes
File without changes