Python MindsDB SDK
It enables you to connect to a midnsDB server and use it in a similar way to mindsb_native.
Install
pip install mindsdb-client
example of usage
from mindsdb_client import MindsDB
# connect
mdb = MindsDB(server='https://mindsdb.com', params={'email': 'test@email.com', 'password': 'secret'})
# upload datasource
mdb.datasources.add('rentals_ds', path='home_rentals.csv')
# create a new predictor and learn to predict
predictor = mdb.predictors.learn(
name='home_rentals_price',
data_source_name='rentals_ds',
to_predict=['rental_price']
)
# predict
result = predictor.predict({'number_of_rooms': '2','number_of_bathrooms': '1', 'sqft': '1190'})
tests
Before run tests, change SERVER and CREDENTIAL constants in tests/test.py to relevant. After run python3 tests/test.py
Test file - is a place where you can find some examples of api usage.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
