first version

This commit is contained in:
Pilar Monsalvete 2023-07-17 17:44:52 -04:00
parent dab5950ebf
commit 88c3191039
2 changed files with 15 additions and 0 deletions

View File

@ -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
View 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()