Metadata-Version: 2.4
Name: smartcache-maxximuss
Version: 1.0.0
Summary: High-performance Python caching library featuring TTL, LRU, async support, and disk/memory backends.
Author-email: Maxximuss <xxxmaxximussxxx@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Maxximuss-hub/Smartcache
Project-URL: Bug Tracker, https://github.com/Maxximuss-hub/Smartcache/issues
Project-URL: Author Profile, https://github.com/Maxximuss-hub
Keywords: cache,caching,lru,ttl,async,performance,smartcache
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# SmartCache 🚀

Высокопроизводительная библиотека кэширования для Python.  
**Создана для реальных задач: экономия ресурсов, ускорение API, работа с асинхронными запросами.**

[![PyPI](https://img.shields.io/pypi/v/smartcache)](https://pypi.org/project/smartcache/)
[![Python](https://img.shields.io/badge/Python-3.8%2B-blue)]()
[![License](https://img.shields.io/badge/License-MIT-green)](LICENSE)

## 💡 Зачем это нужно?

Представь, что твой API-запрос стоит $0.01.  
1000 пользователей одновременно запрашивают погоду → **$10 вместо $0.01**.  
С `SmartCache` ты экономишь **99.9%** запросов!

## 🚀 Установка

```bash
# Установка из PyPI (когда будет опубликовано)
pip install smartcache

# Или локальная установка (в разработке)
git clone https://github.com/yourusername/smartcache.git
cd smartcache
pip install -e .
