mirror of
https://github.com/log-chipper/chipper.git
synced 2026-06-11 17:23:23 -05:00
4a0aabce43
- Simple unix daemon - Python, Go, and C client
9 lines
256 B
Python
9 lines
256 B
Python
from ..clients.python.chipper_client import *
|
|
|
|
if __name__ == "__main__":
|
|
c: ChipperClient = ChipperClient(service="python_example", source="example")
|
|
c.log("info", "hello from python example")
|
|
c.log("error", "something failed")
|
|
c.close()
|
|
|