1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 07:35:24 +02:00

python: add http.server example (#7305)

This commit is contained in:
Lauri 2021-10-31 07:07:39 +02:00 committed by GitHub
parent 75141f0fff
commit 30f46d703e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,3 +30,7 @@
- Interactively debug a Python script: - Interactively debug a Python script:
`python -m pdb {{script.py}}` `python -m pdb {{script.py}}`
- Start the built-in HTTP server on port 8000 in the current directory:
`python -m {{http.server}}`