Dolt

Name:flytekitplugins-dolt
Version:0.0.0+develop
Author:max@dolthub.com
Provides: flytekitplugins.dolt
Requires: flytekit>=1.3.0b2,<2.0.0
dolt_integrations>=0.1.5
networkx<3.2; python_version<'3.9'
Python:>=3.9
License:apache2
Source Code: https://github.com/flyteorg/flytekit/tree/master/plugins/flytekit-dolt
  • Intended Audience :: Science/Research
  • Intended Audience :: Developers
  • License :: OSI Approved :: Apache Software License
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Topic :: Scientific/Engineering
  • Topic :: Scientific/Engineering :: Artificial Intelligence
  • Topic :: Software Development
  • Topic :: Software Development :: Libraries
  • Topic :: Software Development :: Libraries :: Python Modules

The DoltTable plugin is a wrapper that uses Dolt to move data between pandas.DataFrame’s at execution time and database tables at rest.

The Dolt plugin and Dolt command-line tool can be installed as follows:

pip install flytekitplugins.dolt
sudo bash -c 'curl -L https://github.com/dolthub/dolt/releases/latest/download/install.sh | sudo bash'

Dolt requires a user configuration to run init:

dolt config --global --add user.email <email>
dolt config --global --add user.name <name>

All the examples can be found in the documentation.