python-pandas-and-Importing Data into Pandas
https://www.datacamp.com/community/tutorials/importing-data-into-pandas
in this articlas, we will introduce :To be an adept data scientist, one must know how to deal with many different kinds of data. Learn to read various formats of data like JSON and HTML using pandas.
pandas
pandas is an open source Python library which is easy-to-use, provides high-performance, and a data analysis tool for various data formats.
Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more
the way to import from url
import pandas as pd
json = pd.read_json('https://raw.githubusercontent.com/chrisalbon/simulated_datasets/master/data.json')