Skip to content

Instantly share code, notes, and snippets.

View mkx775's full-sized avatar
🏠
Working from home

mkx775

🏠
Working from home
View GitHub Profile
@mkx775
mkx775 / Before_getting_started.py
Last active August 16, 2020 15:50
About python, before getting started - A gist by @mkx775
# About python, before getting started
'''
Python is a general-purpose interpreted,
interactive, object-oriented, and
high-level programming language. It was
created by Guido van Rossum during 1985-1990.
Python source code is available under the
GNU General Public License(GPL).
@mkx775
mkx775 / 2_Web_Scraping_From_W3Schools.py
Created August 17, 2020 03:46
Web scraping from w3schools - A gist by @mkx775
# Web scraping from w3schools
from urllib.request import urlopen as get
from bs4 import BeautifulSoup
b_url = 'https://www.w3schools.com/python/'
n_url, s_url = 'python_intro.asp', 'python_exam.asp'
page_count = 0
def start(base_url, next_url, stop_url):