We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The title alone is self explanatory. Here is the code if anyone is interested:
`` from googleapi import google def search(query): num_page = 1 results = google.search(query, num_page) return results[1].description def convert(string): li = list(string.split('.')) return li
userin = input('?') info = search(userin) print(convert(info)[0]) ``
The text was updated successfully, but these errors were encountered:
This is due to changes of Google in their HTML. At #93 I have written a fix which works fine for me.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The title alone is self explanatory.
Here is the code if anyone is interested:
``
from googleapi import google
def search(query):
num_page = 1
results = google.search(query, num_page)
return results[1].description
def convert(string):
li = list(string.split('.'))
return li
userin = input('?')
info = search(userin)
print(convert(info)[0])
``
The text was updated successfully, but these errors were encountered: