Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions examples/basic_client_usage.py
Original file line number Diff line number Diff line change
@@ -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()