Metadata-Version: 2.4
Name: datapipe-core
Version: 0.15.0.dev1
Summary: `datapipe` is a realtime incremental ETL library for Python application
Project-URL: Repository, https://github.com/epoch8/datapipe
Author-email: Andrey Tatarinov <a@tatarinov.co>
License-File: LICENSE
Requires-Python: <3.13,>=3.9
Requires-Dist: cityhash<0.5,>=0.4.2
Requires-Dist: click>=7.1.2
Requires-Dist: cloudpickle>=1.6.0
Requires-Dist: fsspec>=2021.11.1
Requires-Dist: iteration-utilities>=0.11.0
Requires-Dist: numpy<2.0,>=1.21.0
Requires-Dist: opentelemetry-api<2,>=1.8.0
Requires-Dist: opentelemetry-instrumentation-sqlalchemy
Requires-Dist: opentelemetry-sdk<2,>=1.8.0
Requires-Dist: pandas>=1.2.0
Requires-Dist: pillow<11,>=10.0.0
Requires-Dist: psycopg2-binary>=2.8.4
Requires-Dist: pyyaml>=5.3.1
Requires-Dist: rich<14,>=13.3.2
Requires-Dist: sqlalchemy<3.0.0,>=2.0.0
Requires-Dist: tqdm-loggable<0.3,>=0.2
Requires-Dist: traceback-with-variables<3,>=2.0.4
Requires-Dist: types-tqdm>=4.67.0.20241221
Provides-Extra: excel
Requires-Dist: openpyxl>=3.0.7; extra == 'excel'
Requires-Dist: xlrd>=2.0.1; extra == 'excel'
Provides-Extra: gcp
Requires-Dist: opentelemetry-exporter-gcp-trace; extra == 'gcp'
Provides-Extra: gcsfs
Requires-Dist: gcsfs>=2021.11.1; extra == 'gcsfs'
Provides-Extra: milvus
Requires-Dist: pymilvus<3,>=2.0.2; extra == 'milvus'
Provides-Extra: qdrant
Requires-Dist: qdrant-client<2,>=1.1.7; extra == 'qdrant'
Provides-Extra: ray
Requires-Dist: ray[default]<3,>=2.5.0; extra == 'ray'
Provides-Extra: redis
Requires-Dist: redis<5,>=4.3.4; extra == 'redis'
Provides-Extra: s3fs
Requires-Dist: s3fs>=2021.11.1; extra == 's3fs'
Provides-Extra: sqlite
Requires-Dist: pysqlite3-binary<0.6,>=0.5.0; (sys_platform != 'darwin') and extra == 'sqlite'
Requires-Dist: sqlalchemy-pysqlite3-binary<0.0.5,>=0.0.4; (sys_platform != 'darwin') and extra == 'sqlite'
Description-Content-Type: text/markdown

# Datapipe

[Datapipe](https://datapipe.dev/) is a real-time, incremental ETL library for Python with record-level dependency tracking.

The library is designed for describing data processing pipelines and is capable
of tracking dependencies for each record in the pipeline. This ensures that
tasks within the pipeline receive only the data that has been modified, thereby
improving the overall efficiency of data handling.

https://datapipe.dev/

# Development

At the moment these branches are active:

* `master` - current development state, will be promoted to `0.13.x` series
  release once ready
* `v0.13` - current stable version
* `v0.11` - legacy stable version (`v0.12` was skipped due reasons)

# Version compatibility

At the moment, the datapipe library is under active development. Versions:
`v0.*.*`

It should be expected that each minor version is not backward compatible with
the previous one. That is, `v0.7.0` is not compatible with `v0.6.1`. Dependencies
should be fixed to the exact minor version.

After stabilization and transition to the major version `v1.*.*`, the common
rules will apply: all versions with the same major component are compatible.
