https://github.com/yagiziskirik/brutetext
For generating brute force style text
https://github.com/yagiziskirik/brutetext
pip python python3 text
Last synced: 23 days ago
JSON representation
For generating brute force style text
- Host: GitHub
- URL: https://github.com/yagiziskirik/brutetext
- Owner: yagiziskirik
- License: mit
- Created: 2022-05-24T13:30:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-14T16:13:45.000Z (over 2 years ago)
- Last Synced: 2025-02-10T20:41:41.109Z (10 months ago)
- Topics: pip, python, python3, text
- Language: Python
- Homepage: https://pypi.org/project/BruteText/
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Brute Text
      [](https://pepy.tech/project/brutetext)
This is a program which emulates text input like a brute force technique.
## Usage
You can both use it as imported and from terminal screen.
## Installation
```
pip install BruteText
```
or
```
pip3 install BruteText
```
### Terminal
Use `python3 -m BruteText.brutetext Your text to be typed` to type your text. If you like to change the time interval you can use the program as `python3 -m BruteText.brutetext -t x Your text to be type` where x is the time (milliseconds) to wait between inputs.
### As a module
You can import this script and use it like this:
```py
from BruteText import bruteText
brutetext.bruteText("Text to be typed", x) ## x where the time (milliseconds) between inputs.
```