Metadata-Version: 2.1
Name: disposable-phonebook
Version: 0.2.0
Summary: Scraper for disposable phone number services
Home-page: https://github.com/anroots/disposable-phonebook
Author: Ando Roots
Author-email: ando@sqroot.eu
License: Apache 2.0
Project-URL: Documentation, https://anroots.github.io/disposable-phonebook/
Project-URL: Source Code, https://github.com/anroots/disposable-phonebook
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Communications :: Telephony
License-File: LICENSE

# disposable-phonebook

Collect "disposable" phone numbers from various internet sites that offer
"receive free SMS to an anonymous number" functionality.

```bash
$ dphonebook scrape
[{"number": "+16462879071", "area": "New York", "provider": "receive-smss.com", "last_message": 1652437175, "last_checked": 1652438795},
{"number": "+16466623058", "area": "New York", "provider": "receive-smss.com", "last_message": 1652437776, "last_checked": 1652438796}]
```

## Quickstart

```bash
$ pip3 install disposable-phonebook
$ dphonebook scrape
```

## Development

Requires Python 3.10

```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements-dev.txt
pip install --editable .
dphonebook --help
```

- Install [Editorconfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) extension
- Install [pre-commit hooks](https://pre-commit.com/#install)


## Contribution

Want to add or fix something? Send a pull request.

## License

Apache2 license (see: [LICENSE](LICENSE))


