Skip to content

Instantly share code, notes, and snippets.

View washedgram's full-sized avatar
🤠
Focusing

washedgram

🤠
Focusing
  • USA
View GitHub Profile
@alxgmpr
alxgmpr / ebay.py
Created September 6, 2018 03:56
boost ebay views
import requests
LISTINGURL = ''
VIEWS = 200
def main():
for i in range(VIEWS):
r = requests.get(LISTINGURL)
if __name__ == '__main__':