Skip to content

Instantly share code, notes, and snippets.

View atillaguzel's full-sized avatar

Atilla Guzel atillaguzel

View GitHub Profile
@atillaguzel
atillaguzel / README.md
Created October 24, 2018 06:40 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@atillaguzel
atillaguzel / README.md
Created September 22, 2018 21:58 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@atillaguzel
atillaguzel / google_trends.py
Last active May 23, 2018 14:16
Scraping Google Trends data
@atillaguzel
atillaguzel / github_stats.py
Created May 23, 2018 14:00
How to scrape GitHub stats
url = ['https://github.com/pandas-dev/pandas',
'https://github.com/scikit-learn/scikit-learn',
'https://github.com/keras-team/keras']
libraries = ['Pandas', 'Scikit_Learn', 'Keras']
libs_dict = dict(zip(libraries, url))
columns = ['Issues', 'Pull', 'Projects', 'Commits', 'Branches', 'Releases', 'Contributors', 'Watch', 'Star', 'Fork']
df = pd.DataFrame(columns=columns, index=libraries)