@@ -8,20 +8,20 @@ Python Client for MLflow
88
99.. |status | image :: https://www.repostatus.org/badges/latest/active.svg
1010 :target: https://www.repostatus.org/#active
11- .. |PyPI | image :: https://badge.fury.io/py/mlflow-client.svg
12- :target: https://badge.fury.io/py/mlflow-client
13- .. |PyPI License | image :: https://img.shields.io/pypi/l/mlflow-client.svg
14- :target: https://github.com/MobileTeleSystems/mlflow-client/blob/main/LICENSE.txt
15- .. |PyPI Python Version | image :: https://img.shields.io/pypi/pyversions/mlflow-client.svg
16- :target: https://badge.fury.io/py/mlflow-client
17- .. |ReadTheDocs | image :: https://img.shields.io/readthedocs/mlflow-client.svg
18- :target: https://mlflow-client.readthedocs.io
19- .. |Build | image :: https://github.com/MobileTeleSystems/mlflow-client/workflows/Tests/badge.svg
20- :target: https://github.com/MobileTeleSystems/mlflow-client/actions
21- .. |Coverage | image :: https://codecov.io/gh/MobileTeleSystems/mlflow-client/branch/main/graph/badge.svg
22- :target: https://codecov.io/gh/MobileTeleSystems/mlflow-client
23- .. |pre-commit.ci | image :: https://results.pre-commit.ci/badge/github/MobileTeleSystems/mlflow-client/main.svg
24- :target: https://results.pre-commit.ci/latest/github/MobileTeleSystems/mlflow-client/main
11+ .. |PyPI | image :: https://badge.fury.io/py/mlflow-rest- client.svg
12+ :target: https://badge.fury.io/py/mlflow-rest- client
13+ .. |PyPI License | image :: https://img.shields.io/pypi/l/mlflow-rest- client.svg
14+ :target: https://github.com/MobileTeleSystems/mlflow-rest- client/blob/main/LICENSE.txt
15+ .. |PyPI Python Version | image :: https://img.shields.io/pypi/pyversions/mlflow-rest- client.svg
16+ :target: https://badge.fury.io/py/mlflow-rest- client
17+ .. |ReadTheDocs | image :: https://img.shields.io/readthedocs/mlflow-rest- client.svg
18+ :target: https://mlflow-rest- client.readthedocs.io
19+ .. |Build | image :: https://github.com/MobileTeleSystems/mlflow-rest- client/workflows/Tests/badge.svg
20+ :target: https://github.com/MobileTeleSystems/mlflow-rest- client/actions
21+ .. |Coverage | image :: https://codecov.io/gh/MobileTeleSystems/mlflow-rest- client/branch/main/graph/badge.svg
22+ :target: https://codecov.io/gh/MobileTeleSystems/mlflow-rest- client
23+ .. |pre-commit.ci | image :: https://results.pre-commit.ci/badge/github/MobileTeleSystems/mlflow-rest- client/main.svg
24+ :target: https://results.pre-commit.ci/latest/github/MobileTeleSystems/mlflow-rest- client/main
2525
2626Python client for `MLflow <https://mlflow.org >`_ REST API.
2727
@@ -51,7 +51,7 @@ Python client for `MLflow <https://mlflow.org>`_ REST API.
5151 Documentation
5252-------------
5353
54- See https://mlflow-client.readthedocs.io/
54+ See https://mlflow-rest- client.readthedocs.io/
5555
5656.. contribution
5757
@@ -78,9 +78,9 @@ Version example: ``2.0.0``
7878
7979.. code :: bash
8080
81- pip install mlflow-client==2.0.0 # exact version
81+ pip install mlflow-rest- client==2.0.0 # exact version
8282
83- pip install mlflow-client # latest release
83+ pip install mlflow-rest- client # latest release
8484
8585 Development release
8686~~~~~~~~~~~~~~~~~~~~
@@ -89,9 +89,9 @@ Version example: ``2.0.0.dev5``
8989
9090.. code :: bash
9191
92- pip install mlflow-client==2.0.0.dev5 # exact dev version
92+ pip install mlflow-rest- client==2.0.0.dev5 # exact dev version
9393
94- pip install --pre mlflow-client # latest dev version
94+ pip install --pre mlflow-rest- client # latest dev version
9595
9696.. develop
9797
@@ -101,9 +101,9 @@ Clone repo:
101101
102102.. code :: bash
103103
104- git clone git@github.com:MobileTeleSystems/mlflow-client.git
104+ git clone git@github.com:MobileTeleSystems/mlflow-rest- client.git
105105
106- cd mlflow-client
106+ cd mlflow-rest- client
107107
108108 Install dependencies for development:
109109
@@ -133,11 +133,11 @@ Make sure you have an `MLflow Tracking Server <https://mlflow.org/docs/latest/tr
133133
134134.. code :: python
135135
136- from mlflow_client import MLflowClient
136+ from mlflow_rest_client import MLflowRESTClient
137137
138- client = MLflowClient (" https://mlflow.domain" , ignore_ssl_check = True )
138+ client = MLflowRESTClient (" https://mlflow.domain" , ignore_ssl_check = True )
139139
140140 experiment = client.get_or_create_experiment(" experiment_name" )
141141 run = client.create_run(experiment.id)
142142
143- See `sample.py <https://github.com/MobileTeleSystems/mlflow-client/blob/main/samples/sample.py >`_ for more examples.
143+ See `sample.py <https://github.com/MobileTeleSystems/mlflow-rest- client/blob/main/samples/sample.py >`_ for more examples.
0 commit comments