diff --git a/examples/basic_client_usage.py b/examples/basic_client_usage.py new file mode 100644 index 00000000..14ce98ff --- /dev/null +++ b/examples/basic_client_usage.py @@ -0,0 +1,15 @@ +""" +Basic example of initializing the Kalshi client. + +This file is intended for beginners to quickly understand +how to start using the SDK. +""" + +from kalshi.client import KalshiClient + +def main(): + client = KalshiClient() + print("Kalshi client initialized successfully") + +if __name__ == "__main__": + main()