biocypher 0.10.0__py3-none-any.whl → 0.11.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biocypher might be problematic. Click here for more details.

biocypher/__init__.py CHANGED
@@ -11,6 +11,12 @@ __all__ = [
11
11
  "log",
12
12
  "Driver",
13
13
  "BioCypher",
14
+ "BioCypherWorkflow",
15
+ "Graph",
16
+ "Node",
17
+ "Edge",
18
+ "HyperEdge",
19
+ "create_workflow",
14
20
  "FileDownload",
15
21
  "APIRequest",
16
22
  ]
@@ -18,8 +24,10 @@ __all__ = [
18
24
  from ._config import config, module_data
19
25
  from ._core import BioCypher
20
26
  from ._get import APIRequest, FileDownload
27
+ from ._graph import Edge, Graph, HyperEdge, Node
21
28
  from ._logger import log, logfile, logger
22
29
  from ._metadata import __author__, __version__
30
+ from ._workflow import BioCypherWorkflow, create_workflow
23
31
 
24
32
 
25
33
  class Driver(BioCypher):