diff env/lib/python3.7/site-packages/prov/__init__.py @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
line wrap: on
line diff
--- a/env/lib/python3.7/site-packages/prov/__init__.py	Thu May 14 16:47:39 2020 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-from __future__ import (absolute_import, division, print_function,
-                        unicode_literals)
-
-__author__ = 'Trung Dong Huynh'
-__email__ = 'trungdong@donggiang.com'
-__version__ = '1.5.1'
-
-__all__ = ["Error", "model", "read"]
-
-
-class Error(Exception):
-    """Base class for all errors in this package."""
-    pass
-
-
-def read(source, format=None):
-    """
-    Convenience function returning a ProvDocument instance.
-
-    It does a lazy format detection by simply using try/except for all known
-    formats. The deserializers should fail fairly early when data of the
-    wrong type is passed to them thus the try/except is likely cheap. One
-    could of course also do some more advanced format auto-detection but I am
-    not sure that is necessary.
-
-    The downside is that no proper error messages will be produced, use the
-    format parameter to get the actual traceback.
-    """
-    # Lazy imports to not globber the namespace.
-    from prov.model import ProvDocument
-
-    from prov.serializers import Registry
-    Registry.load_serializers()
-    serializers = Registry.serializers.keys()
-
-    if format:
-        return ProvDocument.deserialize(source=source, format=format.lower())
-
-    for format in serializers:
-        try:
-            return ProvDocument.deserialize(source=source, format=format)
-        except:
-            pass
-    else:
-        raise TypeError("Could not read from the source. To get a proper "
-                        "error message, specify the format with the 'format' "
-                        "parameter.")