You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's the problem of not having this feature?
This feature is essential as its lack prevents using openbb at all when SSL certification is required to connect to the network.
Solution
The library should have some way to specify the path to the SSL certificate. When using requests this would be for example set in the verify attribute of the session. Therefore I would see two options:
Exposing explicitely the session from request instantiated (e.g. I see it in yfinance/data.py, line 73). This would meen having the session exposed as an attribute for example obb.session, so that its attributes can be modified.
Specifying a variable in the .env file which will then picked up when creating a request.Session() in a similar manner to what is done for proxies.
The text was updated successfully, but these errors were encountered:
What's the problem of not having this feature?
This feature is essential as its lack prevents using openbb at all when SSL certification is required to connect to the network.
Solution
The library should have some way to specify the path to the SSL certificate. When using requests this would be for example set in the
verify
attribute of the session. Therefore I would see two options:request
instantiated (e.g. I see it inyfinance/data.py
, line 73). This would meen having the session exposed as an attribute for exampleobb.session
, so that its attributes can be modified..env
file which will then picked up when creating arequest.Session()
in a similar manner to what is done for proxies.The text was updated successfully, but these errors were encountered: