Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hey guys, I'm trying to get data from public API using python script. Data is available without keys, logins, etc. I try to download all data for beforeId>90000. The code looks like this.
import requests
before_id = 90000
matches = []
while True:
url = f"https://api.settlers-united.com/matches?beforeId={before_id}"
response = requests.get(url)
if response.status_code != 200:
print("error")
break
data = response.json()
if not data:
print("no more data")
break
matches += data
before_id = data[-1]['id']
print(f"saved amount: {len(matches)}")
In pycharm everything works and downloads data while powerbi after a few minutes does not download anything. I tried via "get data" -> "python script".
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 6 | |
| 5 |