mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
35 lines
767 B
Python
35 lines
767 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
'''
|
||
|
HDF5 Database Store.
|
||
|
|
||
|
shove's psuedo-URL for HDF5 stores follows the form:
|
||
|
|
||
|
hdf5://<path>/<group>
|
||
|
|
||
|
Where <path> is a URL path to a HDF5 database. Alternatively, the native
|
||
|
pathname to a HDF5 database can be passed as the 'engine' parameter.
|
||
|
<group> is the name of the database.
|
||
|
'''
|
||
|
|
||
|
try:
|
||
|
import h5py
|
||
|
except ImportError:
|
||
|
raise ImportError('This store requires h5py library')
|
||
|
|
||
|
from shove.store import ClientStore
|
||
|
|
||
|
|
||
|
class HDF5Store(ClientStore):
|
||
|
|
||
|
'''LevelDB based store'''
|
||
|
|
||
|
init = 'hdf5://'
|
||
|
|
||
|
def __init__(self, engine, **kw):
|
||
|
super(HDF5Store, self).__init__(engine, **kw)
|
||
|
engine, group = self._engine.rsplit('/')
|
||
|
self._store = h5py.File(engine).require_group(group).attrs
|
||
|
|
||
|
|
||
|
__all__ = ['HDF5Store']
|