Skip to content

Instantly share code, notes, and snippets.

View himan94's full-sized avatar

HIMANSHU SONI himan94

View GitHub Profile
@himan94
himan94 / requirements.txt
Created June 9, 2020 14:45 — forked from miraculixx/example.MD
Python multiprocess parallel selenium web scraping with improved performance
beautifulsoup4==4.6.3
certifi==2018.10.15
chardet==3.0.4
idna==2.7
lxml==4.2.5
requests==2.20.1
selenium==3.141.0
urllib3==1.24.1
@himan94
himan94 / Python bootcamp assessment.ipynb
Created December 23, 2018 05:19
The bootcamp python file in ipnyb format
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@himan94
himan94 / gist:d692a31e203c678a827775588c9f1ae7
Created January 31, 2017 17:54
code to create a hangman game with 7 chances (
h = "namaste"
w = []
s = len(h)
w.append(["O"] * s)
count = 0
count1 = 0
while (count < 7):
print w
if count1 == s :
print"you win"