Deep Pulusani
Deep Pulusani
Hi @krzysztof-grzybek , yes we review all PRs and would accept a PR that added windows support 👍
Another hat in the ring for this type of extensions. Would love to switch to JupyterLab fulltime, this feature would be a blessing
had this error too. here's how i resolved: ``` import urllib.request import ssl import certifi from fredapi import Fred class CustomHTTPSHandler(urllib.request.HTTPSHandler): def __init__(self): context = ssl.create_default_context(cafile=certifi.where()) super().__init__(context=context) opener = urllib.request.build_opener(CustomHTTPSHandler())...
@Dsivs i was also getting this error and after banging around for a long time - this is the solution that worked for me: ``` import urllib.request import ssl import...