Skip to content

Instantly share code, notes, and snippets.

View mm-uddin's full-sized avatar

Mohammad Moslem Uddin mm-uddin

View GitHub Profile
@mm-uddin
mm-uddin / url_finder.py
Created May 27, 2022 02:03
Retrieve urls from a Book Website
import re
import requests
r = requests.get('https://books.toscrape.com/?fbclid=IwAR1hTa4-2TV1MTpTqfqNgTThdZKCyttb4fJyX05zPoHXdZEM_RefG5iDI5U')
url_pattern = re.compile('<a href="(.*?)"')
result = re.findall(url_pattern, r.text)
f = open("myfile.txt", "w")
@mm-uddin
mm-uddin / date_time_zone.py
Created May 21, 2022 04:18
Python Code Examples
def show_local_time():
from datetime import datetime
import pytz
print("Please insert your city from cities, Dhaka, Toronto, New York, Sydney : ")
area = input()
area = area.lower()
if area == "dhaka":
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / model-evaluation-and-refinement.ipynb
Created October 18, 2020 18:54
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / model-development.ipynb
Last active October 18, 2020 00:58
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / exploratory-data-analysis.ipynb
Created October 17, 2020 17:46
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / data-wrangling.ipynb
Created October 16, 2020 18:44
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / review-introduction.ipynb
Created October 16, 2020 16:33
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / DB0201EN-Week4-2-2-PeerAssign-v5-py.ipynb
Created October 15, 2020 23:29
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mm-uddin
mm-uddin / DB0201EN-Week3-1-4-Analyzing-v5-py.ipynb
Created October 9, 2020 15:43
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.