first version
This commit is contained in:
parent
dab5950ebf
commit
88c3191039
|
@ -1,2 +1,3 @@
|
|||
# working_with_catalogs
|
||||
|
||||
This is a project to learn how to interact with catalogs in Hub.
|
14
main.py
Normal file
14
main.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
import sys
|
||||
from hub.catalog_factories.usage_catalog_factory import UsageCatalogFactory
|
||||
|
||||
try:
|
||||
print('[process start]')
|
||||
catalog = UsageCatalogFactory('').catalog
|
||||
|
||||
print('[process end]')
|
||||
|
||||
except Exception as ex:
|
||||
print(ex)
|
||||
print('error: ', ex)
|
||||
print('[process abort]')
|
||||
sys.stdout.flush()
|
Loading…
Reference in New Issue
Block a user