Skip to content

Instantly share code, notes, and snippets.

View amir-awad's full-sized avatar
🎯
Focusing

Amir Awad amir-awad

🎯
Focusing
View GitHub Profile
@amir-awad
amir-awad / getGucians.py
Created May 9, 2021 08:56
Using python => a script to collect the data of the most active gucians on github in Egypt.
#/usr/bin/python3
from bs4 import BeautifulSoup
import requests
import pandas
source1 = requests.get( 'https://commits.top/egypt.html').text
soup = BeautifulSoup(source1, 'lxml')
name = []
@amir-awad
amir-awad / firstTask.py
Created May 7, 2021 03:27
Web-Scraping-First-Task
#/usr/bin/python3
from bs4 import BeautifulSoup
import requests
import pandas
source1 = requests.get( 'https://commits.top/egypt.html').text
soup = BeautifulSoup(source1, 'lxml')
name = []