PyOpenWorm package

PyOpenWorm

OpenWorm Unified Data Abstract Layer.

An introduction to PyOpenWorm can be found in the README on our Github page.

Most statements correspond to some action on the database. Some of these actions may be complex, but intuitively a.B(), the Query form, will query against the database for the value or values that are related to a through B; on the other hand, a.B(c), the Update form, will add a statement to the database that a relates to c through B. For the Update form, a Statement object describing the relationship stated is returned as a side-effect of the update.

The Update form can also be accessed through the set() method of a Property and the Query form through the get() method like:

a.B.set(c)

and:

a.B.get()

The get() method also allows for parameterizing the query in ways specific to the Property.

PyOpenWorm.loadConfig(f)[source]

Load configuration for the module.

PyOpenWorm.loadData(conf, data='OpenWormData/WormData.n3', dataFormat='n3', skipIfNewer=False)[source]

Load data into the underlying database of this library.

XXX: This is only guaranteed to work with the ZODB database.

Parameters:
  • data – (Optional) Specify the file to load into the library
  • dataFormat – (Optional) Specify the file format to load into the library. Currently n3 is supported
  • skipIfNewer – (Optional) Skips loading of data if the database file is newer than the data to be loaded in. This is determined by the modified time on the main database file compared to the modified time on the data file.
PyOpenWorm.disconnect(c=False)[source]

Close the database.

PyOpenWorm.connect(configFile=False, conf=None, do_logging=False, data=False, dataFormat='n3')[source]
Load desired configuration and open the database
Parameters:
  • configFile – (Optional) The configuration file for PyOpenWorm
  • conf – (Optional) a configuration object for the connection. Takes precedence over configFile
  • do_logging – (Optional) If true, turn on debug level logging
  • data – (Optional) specify the file to load into the library
  • dataFormat – (Optional) file format of data. Currently n3 is supported
PyOpenWorm.config(key=None)[source]

Gets the main configuration for the whole PyOpenWorm library.

Returns:the instance of the Configure class currently operating.

Submodules