Created
October 21, 2015 01:51
-
-
Save fedorov/4f69f0f19da3c2ff0db1 to your computer and use it in GitHub Desktop.
urlopen CERTIFICATE_VERIFY_FAILED error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import TCIABrowserLib | |
| c=TCIABrowserLib.TCIAClient(baseUrl='https://services.cancerimagingarchive.net/services/TCIA/TCIA/query') | |
| c.get_collection_values() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import TCIAClient | |
| c=TCIAClient.TCIAClient(baseUrl='https://services.cancerimagingarchive.net/services/TCIA/TCIA/query') | |
| c.get_collection_values() |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem description
Running the test in gistfile1.py inside Slicer fails with the stack below, running the test in gistfile2.txt directly using either system python, or python-real from the same Slicer nightly does not fail. The reason for 2 separate tests is that TCIABrowserLib depends on vtk and such and cannot be run using stock python.
Steps to reproduce