From 5a358b09c44de93938615169dd7e00569ab06c30 Mon Sep 17 00:00:00 2001 From: yosoyjhork Date: Mon, 19 Jan 2026 19:53:20 +0100 Subject: [PATCH] Add basic usage example script Adds a minimal example script to help new users understand project structure. --- examples/basic_usage.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/basic_usage.py diff --git a/examples/basic_usage.py b/examples/basic_usage.py new file mode 100644 index 00000000..d7f3cc63 --- /dev/null +++ b/examples/basic_usage.py @@ -0,0 +1,10 @@ +""" +Basic usage example for the Kalshi Python starter code. +This script demonstrates a minimal import and structure. +""" + +def main(): + print("Kalshi starter code example running successfully.") + +if __name__ == "__main__": + main()