Installation

Requirements

  • Python 3.10 or higher

  • No external dependencies (uses only Python standard library)

Install from PyPI

pip install smartasync

Install from Source

git clone https://github.com/genropy/smartasync.git
cd smartasync
pip install -e .

Verify Installation

from smartasync import smartasync

print("SmartAsync installed successfully!")

Optional Dependencies

For development:

pip install smartasync[dev]

For documentation:

pip install smartasync[docs]

Next Steps