Metadata-Version: 2.4
Name: syncdb
Version: 0.0.1a1
Summary: Live synchronization engine to push database changes to multiple targets in real-time.
Home-page: https://github.com/getfernand/syncdb
Author: Cyril Nicodeme
Author-email: contact@cnicodeme.com
License: MIT
Project-URL: Source, https://github.com/getfernand/syncdb
Keywords: live sync database synchronization engine
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: System :: Networking
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: SQLAlchemy>=2.0.20
Provides-Extra: dev
Requires-Dist: pytest>=8.3.4; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# SyncDB

WARNING: THIS IS A WORK IN PROGRESS NOT READY YET. Please don't use it!

SyncDB is a synchronized engine built to communicate database changes to the client in realtime.

It currently wraps around a SQLAlchemy Model system and propagate changes.

The library handles the following :

 * Serialization of database model
 * Attribute state watching


To come:

 * Watching computed properties
 * Separating from the SQLAlchemy library (but keeping a compatible system)
