{"id":23858,"library":"hotglue-etl-exceptions","title":"Hotglue ETL Exceptions","description":"Provides a set of exception classes for error handling in Hotglue ETL pipelines. Current version 0.1.0, released 2024-05-15. Low activity; likely stable.","status":"active","version":"0.1.0","language":"python","source_language":"en","source_url":"https://github.com/hotgluexyz/hotglue-etl-exceptions","tags":["etl","exceptions","hotglue"],"install":[{"cmd":"pip install hotglue-etl-exceptions","lang":"bash","label":"Default install"}],"dependencies":[],"imports":[{"note":"Uses underscore package name, not dot notation.","wrong":"from hotglue.etl.exceptions import ETLException","symbol":"ETLException","correct":"from hotglue_etl_exceptions import ETLException"},{"note":"ConnectionError is a class; must be imported directly.","wrong":"import hotglue_etl_exceptions.ConnectionError","symbol":"ConnectionError","correct":"from hotglue_etl_exceptions import ConnectionError"}],"quickstart":{"code":"from hotglue_etl_exceptions import ETLException, ConnectionError\n\ntry:\n    # Your ETL code here\n    raise ConnectionError('Failed to connect to source')\nexcept ETLException as e:\n    print(f'ETL Error: {e}')","lang":"python","description":"Demonstrates catching custom exceptions raised by Hotglue ETL operations."},"warnings":[{"fix":"Use 'from hotglue_etl_exceptions import ...'","message":"Package name uses hyphens but import uses underscores (hotglue_etl_exceptions).","severity":"gotcha","affected_versions":"all"},{"fix":"Pin to exact version and test upgrades.","message":"Version 0.1.0 is very early; API may change without notice.","severity":"deprecated","affected_versions":"0.1.0"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Use 'from hotglue_etl_exceptions import ETLException'","cause":"Incorrect import path using dots instead of underscores.","error":"ModuleNotFoundError: No module named 'hotglue.etl.exceptions'"},{"fix":"Run 'pip install hotglue-etl-exceptions' and check spelling.","cause":"Package not installed or outdated; misspelling.","error":"ImportError: cannot import name 'ETLException' from 'hotglue_etl_exceptions'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}