Python Forum
Failed to download Qualtrics data using API
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Failed to download Qualtrics data using API
#2
Can be problem on your network,port,firewall...ect.
Try first to see if ordinary requests work.
import requests

r = requests.get("http://www.google.com")
print(r.text[:200]) 
Then try using a proxy free-proxy ,try several and with more than one time as the can go up and down
import requests

r = requests.get("http://www.google.com", proxies={"http": "http://45.77.136.228:8118"})
print(r.text[:200])
So if it don't work a normal error is Failed to establish a new connection: [WinError 10060] as you get.
Reply


Messages In This Thread
RE: Failed to download Qualtrics data using API - by snippsat - Sep-16-2019, 12:18 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Yfinance - Intraday stock data with yf.download diogo_80 2 8,542 Apr-29-2022, 05:07 AM
Last Post: processingclouds
  download with internet download manager coral_raha 0 4,005 Jul-18-2021, 03:11 PM
Last Post: coral_raha
  Code should download and output trading data tayy 2 3,487 Mar-04-2021, 04:07 AM
Last Post: tayy
  Download data from webpage after POST request AlDe 0 2,642 Feb-02-2019, 06:26 AM
Last Post: AlDe
  PyUSB Problem: Failed Commands and Timeout Without Data ssstreet 0 5,344 Feb-24-2017, 08:30 PM
Last Post: ssstreet
  Problem with NTLM to download data azahar 1 5,069 Dec-21-2016, 09:54 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020