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
I suggest to not shadow the impresso module as in the starter code:
from impresso import connect impresso = connect()
But rather be clear that it is the client that we create by connecting:
from impresso import connect client = connect() # returns impresso.client.ImpressoClient
The text was updated successfully, but these errors were encountered:
but then we won't have this anymore :)
result = impresso.search.find( q="Titanic", order_by="date", )
but
result = client.search.find( q="Titanic", order_by="date", )
Sorry, something went wrong.
Then how about:
from impresso import connect impresso_session = connect()
A bit more verbose but also more explicit.
danieleguido
No branches or pull requests
I suggest to not shadow the impresso module as in the starter code:
But rather be clear that it is the client that we create by connecting:
The text was updated successfully, but these errors were encountered: