Skip to content

Instantly share code, notes, and snippets.

@andresmachado
Last active August 29, 2016 14:57
Show Gist options
  • Save andresmachado/2e0d145c7cfac5416eca2d63c157768c to your computer and use it in GitHub Desktop.
Save andresmachado/2e0d145c7cfac5416eca2d63c157768c to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
from urllib.request import Request, urlopen
busca = input('O que deseja buscar? :')
headers = {'User-Agent': 'Mozilla/5.0'}
url = Request('http://www.google.com.br/search?q=' + busca, headers=headers)
response = urlopen(url).read()
response = response.decode('utf8')
print(response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment