1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Manager
=======
Manager API
-----------
The BaseManager takes care of building and maintaining the connection to the database via SQLAlchemy.
.. autoclass:: pybel.manager.BaseManager
:members:
The Manager collates multiple groups of functions for interacting with the database. For sake of code clarity, they
are separated across multiple classes that are documented below.
.. autoclass:: pybel.manager.Manager
:members:
:show-inheritance:
Manager Components
------------------
.. autoclass:: pybel.manager.NetworkManager
:members:
.. autoclass:: pybel.manager.QueryManager
:members:
|