Install & Compatibility
Where this runs
tested against v1.0.36 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
py 3.10
✕ build_error
✓ 16.6s
py 3.11
✕ build_error
✕ build_error
py 3.12
✕ build_error
✕ build_error
py 3.13
✕ build_error
✕ build_error
211MB installed
● package 211MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
singer
✓ from hotglue_singer_sdk import SingerTap, SingerTarget
✗ import singer
Importing just 'singer' gets the singer-python library, not the hotglue SDK
Minimal Singer tap using the hotglue SDK.
from hotglue_singer_sdk import SingerTap, SingerTarget
class MyTap(SingerTap):
name = "my_tap"
def discover(self, config):
return [{"stream": "users", "schema": {"type": "object"}}]
def sync(self, config, state, stream):
yield {"type": "RECORD", "stream": stream, "record": {}}
if __name__ == "__main__":
MyTap().run()
Upgrade
Version history
1.0.36latest on PyPI · released Jun 18, 2026
Audit
Dependencies
singer-pythonrequiredUnderlying Singer tap/target library
requestsoptionalOften used in tap implementations