Answers for "python get host.docker.internal ip site:stackoverflow.com"

0

python get host.docker.internal ip site:stackoverflow.com

import requests

r = requests.get('http://host.docker.internal:5000')

r.json()
{'a': 1, 'b': 2}
Posted by: Guest on June-15-2021
0

python get host.docker.internal ip site:stackoverflow.com

import requests

r = requests.get('http://host.docker.internal:5000')

r.json()
{'a': 1, 'b': 2}
Posted by: Guest on June-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language