wtpython
Project description
What The Python?!
Helping you find answers to the errors Python spits out.
Usage
When you are running a python script, you might eveutally come across an error like so.
$ python example/runs_with_error.py
0
1
2
Traceback (most recent call last):
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/example/runs_with_error.py", line 8, in <module>
requests.get('badurl')
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/.venv/lib/python3.9/site-packages/requests/api.py", line 76, in get
return request('get', url, params=params, **kwargs)
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/.venv/lib/python3.9/site-packages/requests/api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/.venv/lib/python3.9/site-packages/requests/sessions.py", line 528, in request
prep = self.prepare_request(req)
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/.venv/lib/python3.9/site-packages/requests/sessions.py", line 456, in prepare_request
p.prepare(
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/.venv/lib/python3.9/site-packages/requests/models.py", line 316, in prepare
self.prepare_url(url, params)
File "/home/cohan/github/perceptive-porcupines/Perceptive-Porcupines-Code-Jam-8/.venv/lib/python3.9/site-packages/requests/models.py", line 390, in prepare_url
raise MissingSchema(error)
requests.exceptions.MissingSchema: Invalid URL 'badurl': No schema supplied. Perhaps you meant http://badurl?
In this case, simply replace python
with wtpython
and you will see the error message line as well as what installed packages were part of the stack trace.
$ wtpython example/runs_with_error.py
0
1
2
Error Message: requests.exceptions.MissingSchema: Invalid URL 'badurl': No schema supplied. Perhaps you meant http://badurl?
Packages: requests
Development Tools
- Rich is a library to create styled text to the terminal. We'll use it for styling and formatting text.
- Textual is a part of rich to further aid in TUI design. We'll use it to create widgets and adjust the change the layout of the TUI.
- Flit is a simple way to develop Python packages. It's pretty lightweight but can do a lot. We'll use it to manage dependencies.
- pre-commit will run a few tests before you can commit your code. Don't worry, it will make the changes for you. Worst case, you'll have to type the
git add/commit
lines twice.
Set up the project
Create and activate a virtual environment
python -m venv .venv --prompt template
source .venv/bin/activate
Upgrade pip and install flit manually
python -m pip install -U pip flit
Install the package using symlinks
Run this command to install the package in your virtual environment. If you add dependencies to pyproject.toml
, you'll have to run this command again to install the new dependencies. Make sure to pin the version in pyproject.toml
.
flit install -s
Install pre-commit
The .pre-commit-config.yaml
file is configured to perform the following tasks on each commit:
- Validate yaml files
- Validate toml files
- Ensure a single new line on each file
- Ensure trailing whitespaces are removed
- Format your code with black
- Ensure your python imports are sorted consistently
pre-commit install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wtpython-0.0.1.tar.gz
.
File metadata
- Download URL: wtpython-0.0.1.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b77d47efd2774515b23233adbd791f97abcfcf9a7ee46bbda10226adaf3ba38 |
|
MD5 | 7a098cec4e8f324f1b86576feaca853f |
|
BLAKE2b-256 | 11e7bc7f57a699503e47fd8656d5cda919b5607ca04ead6980b71b611f873411 |
File details
Details for the file wtpython-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: wtpython-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | caa70385112512b1c19ff026015c43b4361fd8c86bab5f122c303a7d353b90b1 |
|
MD5 | 9a106ba587997727f787cb7d5826c639 |
|
BLAKE2b-256 | e70f77cc0603de9e90995cb4b973aaf3e67d3862f344fcb537dd9fa88475eded |