“Porta de solicitações de Python” Respostas de código

Porta de solicitações de Python

import requests

requests.get("http://myServer.com:4000")

:4000 means port 4000
John Appleseed

Porta de solicitação Python

#Well, I was missing the basis.
#When you perform an HTTP request, requests will try to connect on port 80.
#For HTTPS, requests will try to connect on port 443.
#If you want an exotic port such as 8080 this is how you should do it :

resp = requests.get(http://example.com:8080)
Djebbes Rabah

Respostas semelhantes a “Porta de solicitações de Python”

Perguntas semelhantes a “Porta de solicitações de Python”

Mais respostas relacionadas para “Porta de solicitações de Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código