Skip to content

Pandas read_json ValueError: Protocol not known

I ran the following code a while ago and it worked but now there is the following error. How to solve it? ValueError: protocol not known. Answer As far as I could debug this issue is caused by an update of pandas. The 1.1.0 update had changed few things on the read_json function. I could make my code work whe…

Django: def save() in models.py

I’m trying to add the save-function inside my models.py, but it seems I’m doing something wrong. The user has to type the first- and last-name. Without him or her entering any more data, another field inside my models.py should be filled with a combination from these fields. models.py: Is this eve…

Warning – variable referenced before assignment

Having the following snippet: I get a Pycharm warning Local variable cache_data might be used before assignment. Could you please explain how this could possibly happen in this case or is this an inspection bug? Answer Unfortunately this seems to be a known issue in PyCharm that was reported back in Nov 2019.…

Empty dataframe when filtering

I have a dataframe that looks like this: Now I’d like to filter like this: However, I am getting an empty dataframe. What am I doing wrong here? Answer Try df1.loc[df1[‘PZAE’]==”‘HAE’”] Details : the column ‘PZAE’ contains str starting and finishing by ‘ t…