https://github.com/severen/pwned
A command line interface to check if your online accounts have been possibly compromised.
https://github.com/severen/pwned
haveibeenpwned security security-audit
Last synced: 8 months ago
JSON representation
A command line interface to check if your online accounts have been possibly compromised.
- Host: GitHub
- URL: https://github.com/severen/pwned
- Owner: severen
- License: gpl-3.0
- Created: 2016-05-15T09:06:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-07-09T13:12:53.000Z (over 5 years ago)
- Last Synced: 2025-01-07T08:15:23.389Z (9 months ago)
- Topics: haveibeenpwned, security, security-audit
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Pwned
A command line interface for checking whether your online accounts have been
compromised using [have i been pwned?](https://haveibeenpwned.com/).# Installation
## From PyPI
Since Pwned is distributed on [PyPI](https://pypi.org/), it's super simple to
install, provided you already have a Python installation:```bash
~> pip install pwned
```Note that this will install Pwned *globally*, which typically means that root
access should be required. If you wish to install Pwned for just the current
user, add the `--user` flag after `install`.## From Source
Installing Pwned from source is slightly more involved and requires that
[Poetry](https://poetry.eustace.io/) is also installed:```bash
~> git clone https://github.com/severen/pwned.git
~> cd pwned
~> poetry install
~> poetry build
~> pip install dist/*
```Also note that just like before, you should add the `--user` flag after
`install` if you wish to install for just the current user.# Changelog
The changelog can be found [here](CHANGELOG.md).