' + - '' + - _("Hide Search Matches") + - "
" - ) + '' + + '' + + _("Hide Search Matches") + + "
", + ), ); }, @@ -125,7 +125,7 @@ const SphinxHighlight = { document .querySelectorAll("span.highlighted") .forEach((el) => el.classList.remove("highlighted")); - localStorage.removeItem("sphinx_highlight_terms") + localStorage.removeItem("sphinx_highlight_terms"); }, initEscapeListener: () => { @@ -134,10 +134,15 @@ const SphinxHighlight = { document.addEventListener("keydown", (event) => { // bail for input elements - if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) + return; // bail with special keys - if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return; - if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) { + if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) + return; + if ( + DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + && event.key === "Escape" + ) { SphinxHighlight.hideSearchWords(); event.preventDefault(); } diff --git a/docs/_build/html/auth.html b/docs/_build/html/auth.html index f50c53be..4c24f392 100644 --- a/docs/_build/html/auth.html +++ b/docs/_build/html/auth.html @@ -10,8 +10,8 @@ - - + + @@ -37,7 +37,7 @@Bases: AuthBase
Gen3 auth helper class for use with requests auth.
Implements requests.auth.AuthBase in order to support JWT authentication. diff --git a/docs/_build/html/file.html b/docs/_build/html/file.html index a24a91e0..cb970d07 100644 --- a/docs/_build/html/file.html +++ b/docs/_build/html/file.html @@ -10,8 +10,8 @@ - - + + @@ -37,7 +37,7 @@
Bases: object
For interacting with Gen3 file management features.
A class for interacting with the Gen3 file download services. diff --git a/docs/_build/html/genindex.html b/docs/_build/html/genindex.html index a1858dda..fc7b36ca 100644 --- a/docs/_build/html/genindex.html +++ b/docs/_build/html/genindex.html @@ -9,8 +9,8 @@ - - + + diff --git a/docs/_build/html/index.html b/docs/_build/html/index.html index 09d78df5..d329e8bc 100644 --- a/docs/_build/html/index.html +++ b/docs/_build/html/index.html @@ -10,8 +10,8 @@ - - + + diff --git a/docs/_build/html/indexing.html b/docs/_build/html/indexing.html index 39ab0cc2..4448e460 100644 --- a/docs/_build/html/indexing.html +++ b/docs/_build/html/indexing.html @@ -10,8 +10,8 @@ - - + + @@ -37,7 +37,7 @@
Bases: object
A class for interacting with the Gen3 Index services.
Asynchronous function to create a record in indexd.
Asynchronous function to request a record from indexd.
Asynchronous function to request records from indexd matching checksum.
Asynchronous function to request a page from indexd.
Return a document object corresponding to the supplied parameter
need to include all the hashes in the request
Asynchronous function to query urls from indexd.
Asynchronous function to update a record in indexd.
Bases: object
A class for interacting with the Gen3’s Job Dispatching Service(s).
Examples
@@ -49,7 +49,7 @@Asynchronous function to create a job, wait for output, and return. Will sleep in a linear delay until the job is done, starting with 1 second.
Bases: object
A class for interacting with the Gen3 Metadata services.
Examples
@@ -71,7 +71,7 @@Asynchronous function to create metadata
Asyncronously create Aliases for the given guid
Asyncronously delete single Aliases for the given guid
Asyncronously delete all Aliases for the given guid
Asynchronous function to get metadata
Asyncronously get Aliases for the given guid
Asynchronous function to update metadata
Asyncronously update Aliases for the given guid
Bases: object
For interacting with Gen3 object level features.
A class for interacting with the Gen3 object services. diff --git a/docs/_build/html/py-modindex.html b/docs/_build/html/py-modindex.html index 8f136bce..d168bbc4 100644 --- a/docs/_build/html/py-modindex.html +++ b/docs/_build/html/py-modindex.html @@ -9,8 +9,8 @@ - - + + diff --git a/docs/_build/html/query.html b/docs/_build/html/query.html index afa93fc0..94d535d1 100644 --- a/docs/_build/html/query.html +++ b/docs/_build/html/query.html @@ -10,8 +10,8 @@ - - + + @@ -37,7 +37,7 @@
Bases: object
Query ElasticSearch data from a Gen3 system.
Bases: object
Submit/Export/Query data from a Gen3 Submission system.
A class for interacting with the Gen3 submission services. diff --git a/docs/_build/html/tools.html b/docs/_build/html/tools.html index 1f285696..003b4a0e 100644 --- a/docs/_build/html/tools.html +++ b/docs/_build/html/tools.html @@ -10,8 +10,8 @@ - - + + diff --git a/docs/_build/html/tools/drs_pull.html b/docs/_build/html/tools/drs_pull.html index b80a139d..a3e74543 100644 --- a/docs/_build/html/tools/drs_pull.html +++ b/docs/_build/html/tools/drs_pull.html @@ -10,8 +10,8 @@ - - + + @@ -55,7 +55,7 @@
Class to assist in downloading a list of Downloadable object which at a minimum is a json manifest of DRS object ids. The methods of interest are download and user_access.
Stores the download status of objectIDs.
The DataManager will return a list of DownloadStatus as a result of calling the download method
Status is “pending” until it is downloaded or an error occurs. @@ -181,7 +181,7 @@
Class handling the information for a DRS object. The information is populated from the manifest or by retrieving the information from a DRS server.
Data class representing a Gen3 JSON manifest typically exported from a Gen3 discovery page.
The class is passed to the DownloadManager to download or list all of the files in the manifest. The Download manager will cache additional information (if available)
@@ -372,7 +372,7 @@Create a list of Downloadable instances from the manifest
Method to load a json manifest and return a list of Bownloadable object. This list is passed to the DownloadManager methods of download, and list
Loads a json manifest
Download all file object records into a manifest csv
Bases: object
Class for thread synchronization
Verify all file object records into a manifest csv
Ingest all metadata records into a manifest csv
Gets a semaphore then requests a record for the given pattern
Bases: object
A class for interacting with the Gen3 workspace storage service.
Examples
diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 00000000..1fda6cdc --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,2 @@ +def test_import_cli(): + import gen3.cli.__main__