Metadata-Version: 2.1
Name: genurl
Version: 0.2.2
Summary: GENerate random URLs
License: MIT
Author: Sam Havens
Author-email: sam.havens@writer.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Faker (>=9.8.2,<10.0.0)
Requires-Dist: PyYAML (>=6.0,<7.0)
Requires-Dist: Random-Word (>=1.0.7,<2.0.0)
Requires-Dist: tqdm (>=4.62.3,<5.0.0)
Description-Content-Type: text/markdown

# genurl

![general](https://media.giphy.com/media/JmgKSCrKZ228fIJoqt/giphy.gif)

GENerate URLs

This is a sketch of how this should work. Maybe better to use a LM than some random packages, but it is funny.

NOTE because this uses `/usr/share/dict/words` it may not work on all systems, and 100% won't work on Windows.

## Usage

```sh
$ pip install genurl
>>> installation output
$ genurl
>>> generate 1000 urls in the file urls.txt
```

You can specify `--number` of URLs to generate and the `--outfile` path.

You can also specify `--slow` if you want, to get more word diversity at the expense of going slower.

## Development

make changes, `poetry run genurl`

## Publishing

Haven't automated yet. First increment version in `pyproject.toml` and then `poetry publish --username PYPI_USERNAME --password PYPI_PASS --build`

