Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

use a csv file on internet as an api in python

import pandas as pd
url='https://raw.githubusercontent.com/juliencohensolal/BankMarketing/master/rawData/bank-additional-full.csv'
data = pd.read_csv(url,sep=";") # use sep="," for coma separation. 
data.describe()
Comment

PREVIOUS NEXT
Code Example
Python :: python program to find the sum of fibonacci series 
Python :: web driver module in python 
Python :: pytorch cuda tensor in module 
Python :: Link In Django 
Python :: how to add list numbers in python 
Python :: python dictionary comprehensions 
Python :: list pakages installed in python 
Python :: python os module 
Python :: Python | Pandas DataFrame.where() 
Python :: python datetime floor to hour 
Python :: dataframe number of unique rows 
Python :: python loop list 
Python :: python convert 
Python :: re date python 
Python :: extract coordinate values in xarray 
Python :: super in django manager 
Python :: handwritten digits data set 
Python :: palindrome checker python 
Python :: read csv python 
Python :: python __lt__ 
Python :: python lambda key sort 
Python :: df index drop duplicates 
Python :: python set python key default 
Python :: django create view class 
Python :: django login url 
Python :: create virtual environment python stack overflow 
Python :: python A string float numeral into integer 
Python :: numpy reshape (n ) to (n 1) 
Python :: fernet in python 
Python :: quantile calcultion using pandas 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =