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 am loving the example here https://github.com/python-hyper/h2/blob/master/examples/plain_sockets/plain_sockets_client.py
I just can't seem to figure out how to be making multiple requests reusing the same connection?
For example, if I wanted to send the same request again, how could I do that after print("Response fully received:")
print("Response fully received:")
I understand I might need to use a next stream ID, but it is not clear how to do it. Any help would be much appreciated!
The text was updated successfully, but these errors were encountered:
where the example uses 1 as stream id, use c.get_next_available_stream_id()
c.get_next_available_stream_id()
Sorry, something went wrong.
No branches or pull requests
I am loving the example here https://github.com/python-hyper/h2/blob/master/examples/plain_sockets/plain_sockets_client.py
I just can't seem to figure out how to be making multiple requests reusing the same connection?
For example, if I wanted to send the same request again, how could I do that after
print("Response fully received:")
I understand I might need to use a next stream ID, but it is not clear how to do it. Any help would be much appreciated!
The text was updated successfully, but these errors were encountered: