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()