Skip to content

Instantly share code, notes, and snippets.

@alxgmpr
Created September 6, 2018 03:56
Show Gist options
  • Save alxgmpr/98005e23676cea34545e1d8603f82609 to your computer and use it in GitHub Desktop.
Save alxgmpr/98005e23676cea34545e1d8603f82609 to your computer and use it in GitHub Desktop.
boost ebay views
import requests
LISTINGURL = ''
VIEWS = 200
def main():
for i in range(VIEWS):
r = requests.get(LISTINGURL)
if __name__ == '__main__':
main()
@washedgram
Copy link

we live in a society

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment