Skip to main content

Use checked exceptions in Python.

Project description

Checked Exception

This is a checked exception library, which tries to implement checked exceptions in Python.

Install building tools

Before publishing, you need to install some tools.

pip install wheel twine

Publish to test.pypi.org (for testing purpose)

This makes you test your package before actually publishing it.

# Build & Upload & Cleanup
python setup.py sdist bdist_wheel && python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* && rm -rf dist build *egg-info

install it with:

pip install -i https://test.pypi.org/simple/ checked-exception

Publish to pypi.org

This makes you actually publish the package to pypi.org (where you can pip install packages from it).

# Build & Upload & Cleanup
python setup.py sdist bdist_wheel && python -m twine upload dist/* && rm -rf dist build *egg-info

You can then install it with regular pip command you normally use:

pip install checked-exception

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

checked-exception-0.0.5.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

checked_exception-0.0.5-py3-none-any.whl (2.7 kB view hashes)

Uploaded Python 3

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