Skip to main content

Python HTTPD Server to test GET and POST requests

Project description

HTTPD Python Server

Installation and usage

pip install pyserv
serv [port]

Examples :

serv 8080

The output would be

...
INFO:root:Starting HTTP SERVER at PORT 8080

GET and POST request example

Open a new terminal and try out sending GET and POST requests

$ python
>>> import requests
>>> URL = 'http://0.0.0.0:8080'
>>> r = requests.get(URL)
>>> print(r.text)
GET request for /

On the server side you would get

INFO:root:GET  request,
Path: /
Headers:
Host: 0.0.0.0:8080
User-Agent: python-requests/2.21.0
Accept-Encoding: gzip, deflate
Accept: */*
Connection: keep-alive



127.0.0.1 - - [18/Dec/2019 18:01:52] "GET / HTTP/1.1" 200 -

POST request to the server

>>> import requests
>>> URL = 'http://0.0.0.0:8080'
>>> r = requests.post(URL)
>>> print(r.text)
POST request for /

On the server side you will get

INFO:root:POST  request,
Path: /
Headers:
Host: 0.0.0.0:8080
User-Agent: python-requests/2.21.0
Accept-Encoding: gzip, deflate
Accept: */*
Connection: keep-alive
Content-Length: 0



Body:


127.0.0.1 - - [18/Dec/2019 18:03:07] "POST / HTTP/1.1" 200 -

If no port is mentioned the server attempts to run on port 8080.

If the given port (or the default port 8080) is already in use the server attempts to bind the next port. If the server does not find any free port after 50 attempts the server stops.

Link to the PyPI project : https://pypi.org/project/pyserv/ Motivation : https://gist.github.com/mdonkers/63e115cc0c79b4f6b8b3a6b797e485c7 (The Project is a extention of the github gist)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyserv-1.1.1.tar.gz (3.5 kB view details)

Uploaded Source

File details

Details for the file pyserv-1.1.1.tar.gz.

File metadata

  • Download URL: pyserv-1.1.1.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.6.9

File hashes

Hashes for pyserv-1.1.1.tar.gz
Algorithm Hash digest
SHA256 230de695e17491fe7de88385577adcdd8a136e2efc69e6d0c7e90db53cb59cd6
MD5 aae9637fb35f098a526fc1c7af353877
BLAKE2b-256 4615234831c8b1f1b6e2569a42fbb115048c2234a8100dcf0df9911d992bcc83

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page