17 lines
217 B
Python
Executable File
17 lines
217 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import arcticdb as adb
|
|
|
|
|
|
uri = "lmdb://adb"
|
|
ac = adb.Arctic(uri)
|
|
lib = ac.get_library("stand")
|
|
symbols = lib.list_symbols()
|
|
|
|
for i in symbols:
|
|
meta = lib.read_metadata(i)
|
|
print(meta)
|
|
|
|
|
|
|