From 0e2c6484fd87c3155393160256877d3e9d0b2830 Mon Sep 17 00:00:00 2001 From: Stefano Belforte Date: Mon, 3 Jul 2023 19:01:46 +0200 Subject: [PATCH] Update README.md pip package procides `dbs`, not `dbsClient` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b30caa6..5d2bab7 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ We can quickly check if library work using the python interpreter in the termina Then you can try to import dbsClient and RestClient (which is dbs3-pycurl): ```python -from dbsClient.apis.dbsClient import * +from dbs.apis.dbsClient import * from RestClient.RestApi import RestApi ``` @@ -216,7 +216,7 @@ You can run the following python script to ensure you can read: ```python # DBS-3 imports -from dbsClient.apis.dbsClient import * +from dbs.apis.dbsClient import * url="https://cmsweb-testbed.cern.ch/dbs/prod/global/DBSReader/" # API Object dbs3api = DbsApi(url=url)