From a034008576c6d9d7d3c8d2a0799bf9d6e9ca9a8d Mon Sep 17 00:00:00 2001 From: lilsezgin Date: Fri, 16 Jan 2026 19:40:07 +0100 Subject: [PATCH] Add docstring to KalshiClient Documents the purpose and responsibilities of KalshiClient --- kalshi/client.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 kalshi/client.py diff --git a/kalshi/client.py b/kalshi/client.py new file mode 100644 index 00000000..d353c668 --- /dev/null +++ b/kalshi/client.py @@ -0,0 +1,7 @@ +class KalshiClient: + """ + Kalshi API client for authenticated requests. + + Handles request signing, authentication headers, + and basic HTTP methods for interacting with Kalshi APIs. + """