EodHistoricalData / EODHD-APIs-Python-Financial-Library

MIT License
38 stars 14 forks source link

Update websocketclient.py #43

Closed ahmedacoding closed 1 year ago

ahmedacoding commented 1 year ago

""if endpoint not in ["us", "us_quote", "forex", "crypto"]: "" , "us_quote" in this if statement was typed incorrectly, which caused the code to raise Value Error. The correct is "us-quote" , So the final if Statement will be: ""if endpoint not in ["us", "us-quote", "forex", "crypto"]:""" , once changed the quote feed will work as expected. Thanks

Nawado commented 1 year ago

Thank you. I made these changes along with updating example_websockets.py. Changes are available in version 1.0.27