File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11[ ![ refinery repository] ( https://uploads-ssl.webflow.com/61e47fafb12bd56b40022a49/62cf1c3cb8272b1e9c01127e_refinery%20sdk%20banner.png )] ( https://github.com/code-kern-ai/refinery )
22[ ![ Python 3.9] ( https://img.shields.io/badge/python-3.9-blue.svg )] ( https://www.python.org/downloads/release/python-390/ )
3- [ ![ pypi 1.0.1 ] ( https://img.shields.io/badge/pypi-1.0.1 -yellow.svg )] ( https://pypi.org/project/refinery-python-sdk/1.0.1 / )
3+ [ ![ pypi 1.0.2 ] ( https://img.shields.io/badge/pypi-1.0.2 -yellow.svg )] ( https://pypi.org/project/refinery-python-sdk/1.0.2 / )
44
55This is the official Python SDK for [ * refinery* ] ( https://github.com/code-kern-ai/refinery ) , the ** open-source** data-centric IDE for NLP.
66
Original file line number Diff line number Diff line change @@ -31,21 +31,21 @@ def main():
3131 cli_args = sys .argv [1 :]
3232 if len (cli_args ) == 0 :
3333 msg .fail (
34- "Please provide some arguments when running the `refinery ` command. Type `refinery help` for some instructions."
34+ "Please provide some arguments when running the `rsdk ` command. Type `rsdk help` for some instructions."
3535 )
3636 else :
3737 command = cli_args [0 ]
3838 if command == "pull" :
3939 pull ()
4040 elif command == "push" :
4141 if len (cli_args ) != 2 :
42- msg .fail ("Please provide a path to a file when running refinery push." )
42+ msg .fail ("Please provide a path to a file when running rsdk push." )
4343 else :
4444 file_path = cli_args [1 ]
4545 push (file_path )
4646 elif command == "help" :
4747 help ()
4848 else :
4949 msg .fail (
50- f"Could not understand command `{ command } `. Type `refinery help` for some instructions."
50+ f"Could not understand command `{ command } `. Type `rsdk help` for some instructions."
5151 )
Original file line number Diff line number Diff line change 1010
1111setup (
1212 name = "refinery-python-sdk" ,
13- version = "1.0.1 " ,
13+ version = "1.0.2 " ,
1414 author = "jhoetter" ,
1515 author_email = "johannes.hoetter@kern.ai" ,
1616 description = "Official Python SDK for Kern AI refinery." ,
You can’t perform that action at this time.
0 commit comments