diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fc93ed7..51de974 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,8 +7,6 @@ This change log uses principles from `keep a changelog `_ to talk to. +It exposes core functionality of Python API `dtool-lookup-api `_ on the command line. + +Quick start +----------- + +Inspect the three core commands with:: + + dtool lookup -h + dtool search -h + dtool query -h + +on the command line. + Configuration ------------- @@ -28,7 +41,7 @@ You also need to specify the access token:: For testing purposes, it is possible to disable SSL certificates validation with:: - export DSERVER_CLIENT_IGNORE_SSL=true + export DSERVER_VERIFY_SSL=false Looking up datasets by UUID --------------------------- @@ -48,6 +61,11 @@ Full text search for the word "EMS":: dtool search EMS +Direct MongoDB No-SQL queries +----------------------------- + +This requires a ``dserver`` instance with ``dserver-direct-mongo-plugin``. + To list all datasets created by user ``olssont`` using the mongo query language:: - dtool search -m '{"creator_username": "olssont"}' + dtool query '{"creator_username": "olssont"}'