Skip to content

Instantly share code, notes, and snippets.

@swdevbali
Created November 1, 2021 09:41
Show Gist options
  • Save swdevbali/11b5ccd374e2b1e63e2662005e719362 to your computer and use it in GitHub Desktop.
Save swdevbali/11b5ccd374e2b1e63e2662005e719362 to your computer and use it in GitHub Desktop.
"""
This project will get the latest information about earthquake from bmkg.go.id
"""
from bs4 import BeautifulSoup
author = 'Eko SW'
date = '1 November 2022'
url = 'https://www.bmkg.go.id/'
import requests
result = requests.get(url)
result = BeautifulSoup(result.text, 'html.parser')
print(result.title.string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment