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 18-asyncio-py3.7 folder doesn't have this file. but this file doesn't work in aiohttp3.5.4 with Python3.7.2 the Request object has no attribute 'GET', use query instead.
def home(request): try: query = request.GET.get('query', '').strip() except AttributeError: query = request.query.get('query', '').strip() print('Query: {!r}'.format(query))
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
the 18-asyncio-py3.7 folder doesn't have this file.
but this file doesn't work in aiohttp3.5.4 with Python3.7.2
the Request object has no attribute 'GET', use query instead.
The text was updated successfully, but these errors were encountered: