I have an API, where I need to return data. I want to make a “header”, where I specify the amount of tutors, the call returned. My current function looks like this: This is an example, of the response. ] I’d like to add a header, that specifies the amount of tutors/arrays that the response r…
Tag: api
How to add data to Many-To-Many field in Django DRF
I’m new to Django DRF, trying to have a sports school project done. I have a model for coaches, classes and students. Here is a stripped version to keep it simple and easy: In order to list/add students to the class, I’m using the following serializer: Getting the data is working ok. Also, adding …
KeyError: ‘variant’ while getting data from API , even tho variant data exists on API
[Here is the API snippet. I am working on] Here is the code snippet that fetching API snippet above. If I remove i[“variant”] everything works perfectly but i[“variant”] is throwing key error even tho “variant”: “Shaper/Redeemer” exists on the JSON file. Thanks …
Why airflow is returning error while requesting Rest API?
I have a python code which is requesting a Rest API. The API has more than 5000+ pages so i tried to request it but always i am getting error at 2000th request. The error is: “df = pd.json_normalize(json_data[“items”]) KeyError: ‘items’” How can i solve this problem ? P.S. In loc…
what is the best way to register a new user – get vs post
i’m trying to learn best practices for registering new users. I can only think of two options (but maybe there are more!) and am hoping to know which is better for speed, and for overall practice: first method: second method: also, should these be done within one entry point – go back to the clien…
create request with python requests (translation from another language to python)
This piece of code is from the api documentation. I can’t figure out how to perform this action in python. Please help me to complete this query using python. Answer A simple translation:
yfinance not working – receiving json.decoder.JSONDecodeError
I am scraping stock market data from yfinance. My code worked perfectly during the last weeks. For some reason, now I am receiving the following error: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) when executing: I have read about this error on Stack Overflow, but no one had an appr…
Syntax for nested dictionaries in Python
I’m developing Python scripts for the automated grading of assignments using CanvasAPI, an API wrapper in Python for the Canvas learning management platform. In studying the documentation, I can successfully issue curl commands in Python for a few parameters. For example, this conversion below is for up…
Python urllib3.exceptions.NewConnectionError connecting to self-built API
I’ve built an API (with flask-restful) that stores data in its cache and exposes it to other applications. When I try to send a get request to this API from another app (also flask) it returns the following error I thought that this error occurred because I was sending too many requests with the same ur…
How to parse a list of dictionaries in Python 3
I’m using python(requests) to query an API. The JSON response is list of dictionaries, like below: I’d like to extract 1 field (Identifier) as a list for further analysis (count, min, max, etc.) but I’m having a hard time figuring out how to do this. Answer Python has a syntax feature called…