Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Is there a stock market module in python?

+8 votes
asked Jun 24, 2022 by popstar403 (750 points)
I would like to use real-world stocks in my programs, but I am not sure how to import them.

1 Answer

0 votes
answered Jun 25, 2022 by Peter Minarik (86,160 points)
Most exchange serves have public APIs (most likely RESTful APIs) that you can connect to and query the stock market values.

After a quick search, this is what I found for Python REST API support: https://realpython.com/api-integration-in-python/

I hope this helps.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...