Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Rosenmeyer
Frequent Visitor

Python Script to fetch data from a REST API

We have an application that just made REST API available. 

 

We want to extract data from here and make nice dashboards in PowerBI. So the final goal for this is to be realtime. 

Now the token for the REST API expires every 2 minutes. So we made a python script that fetches the token. Then fetches the data afterwards, using the REST API token that expires every 2 minutes. The final output is a json file. 

 

I'm currently getting this error when trying to run my Python Script to fetch the data:

 

Details: "ADO.NET: Python script error.
<pi>urllib3.exceptions.SSLError: Can't connect to HTTPS URL because the SSL module is not available.

During handling of the above exception, another exception occurred:

urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='forsi.dk', port=443): Max retries exceeded with url: /eap/external-rest-api/v2/authentication (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available."))

During handling of the above exception, another exception occurred:

requests.exceptions.SSLError: HTTPSConnectionPool(host='forsi.dk', port=443): Max retries exceeded with url: /eap/external-rest-api/v2/authentication (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available."))
</pi>"

1 ACCEPTED SOLUTION

Hi Kelly

 

I managed to fix it by reinstalling anaconda3 entirely and Power BI entirely, thanks for your reply though!

 

Best regards,

Rasmus

View solution in original post

2 REPLIES 2
v-kelly-msft
Community Support
Community Support

Hi  @Rosenmeyer ,

 

It‘s an error from Python side.

Try to take below steps to solve it:

1. In the virtual environment:
pip install pyOpenSSL
2. Add environment variables
F:\Anaconda\envs\open3d\Library\bin
3. Restart pycharm

 

Or check below thread to see whether it helps:

https://stackoverflow.com/questions/54135206/requests-caused-by-sslerrorcant-connect-to-https-url-be...

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

 

Hi Kelly

 

I managed to fix it by reinstalling anaconda3 entirely and Power BI entirely, thanks for your reply though!

 

Best regards,

Rasmus

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors