Arthur SDK Python API Reference#
This page contains the complete Python API reference for Arthur’s SDK. For guides and concepts, see our main docs.
Essentials#
There are a few touch points that are most commonly needed in the SDK. These are:
- The
ArthurAI
client to create a connection to Arthur Its
ArthurAI.model()
method to create a new (empty) modelIts
ArthurAI.get_model()
to fetch an existing model already registered with Arthur
- The
- The
ArthurModel
class (returned by both of the above methods) to interact with a particular model Its
ArthurModel.build()
method to construct a new model from a DataFrameIts
ArthurModel.save()
method to register a model with the Arthur platform
- The