This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" Project Jupyter - extract data from PDF by Vytautas""" | |
""" Importing libraries """ | |
import pandas as pd | |
import os | |
""" Reading Dataset file """ | |
os.chdir("C:\\Users\\Vytautas.Bielinskas\\Desktop\\Python\\") | |
DF = pd.read_csv("tabula-Statement (BULK) 02 July.csv", header=None) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import libraries | |
import requests, re, os | |
import pandas as pd | |
from bs4 import BeautifulSoup | |
import os | |
print("Starting sheet: Inflation rates") | |
""" Prepare Home directory : start """ | |
os.chdir("C:\\Users\\Vytautas.Bielinskas\\Desktop\\PythonWorking\\Python\\") |
OlderNewer