Metadata-Version: 2.3
Name: autofiller
Version: 1.0.2
Summary: A small popup to input various random data for you
Project-URL: Documentation, https://github.com/smartycope/autofiller#readme
Project-URL: Issues, https://github.com/smartycope/autofiller/issues
Project-URL: Source, https://github.com/smartycope/autofiller
Author-email: Copeland Carter <smartycope@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10
Requires-Dist: ezregex
Requires-Dist: pynput
Requires-Dist: pyside6
Requires-Dist: pysidesix-frameless-window
Requires-Dist: random-name
Description-Content-Type: text/markdown

# autofiller
[![PyPI - Version](https://img.shields.io/pypi/v/autofiller.svg)](https://pypi.org/project/autofiller)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/autofiller.svg)](https://pypi.org/project/autofiller)

A small popup to input various random data for you.

There's 2 options to use this. By default, the popup opens as soon as you run the program, so adding "python -m autofiller" as a global short works great.

You can also run "python -m autofiller -d &" to have it run in the background, detect when you press the keyboard shortcut, and open the window.

You can also customize the keyboard shortcut like this:
```bash
python -m autofiller -d -m meta -k r
# or
python -m autofiller --deamon --modifier ctrl --key 5
# or
python -m autofiller -d -m none -k f3
```

-----

**Table of Contents**

- [Installation](#installation)
- [License](#license)

## Installation
Note that, due to one of the dependancies, clang needs to be installed on your system:
```bash
sudo apt-get install clang
sudo dnf install clang
# ...etc
```
Then you can install the library itself:
```console
pip install autofiller
```

## License

`autofiller` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
