Skip to content

Instantly share code, notes, and snippets.

View siddharth2016's full-sized avatar
🐢
Learning

Siddharth Chandra siddharth2016

🐢
Learning
View GitHub Profile
@siddharth2016
siddharth2016 / scrape_facts.py
Last active December 2, 2020 13:05
Scraping Web - Awesome Facts
"""
Python Script to scrap amazing fun facts.
"""
import os
import re
from typing import List
from urllib.request import Request, urlopen
from bs4 import BeautifulSoup
from bs4.element import Tag
@siddharth2016
siddharth2016 / scrape_quotes.py
Created December 1, 2020 12:54
Scraping Web - Inspiring Quotes
"""
Python Script to scrap amazing quotes by some great computer scientists
"""
import os
from typing import List
from urllib.request import Request, urlopen
from bs4 import BeautifulSoup
from bs4.element import Tag