I am trying to run a code in Python.
I upload the libraries as follow:
import requests
import json
from datetime import datetime
import pandas as pd
import re
from pandas.io.json import json_normalize
And when I try to extract information from a web site I receive the following error:
C:\Users\Mike\anaconda3\lib\site-packages\ipykernel_launcher.py:1: FutureWarning: pandas.io.json.json_normalize is deprecated, use pandas.json_normalize instead
"""Entry point for launching an IPython kernel.
What am I doing wrong?
Pandas now contains the json_normalize functions as pandas.io.json is deprecated.
Replace this:
With this: