Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yagiziskirik/brutetext
For generating brute force style text
https://github.com/yagiziskirik/brutetext
pip python python3 text
Last synced: about 2 months 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 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-14T16:13:45.000Z (over 1 year ago)
- Last Synced: 2024-10-08T10:51:24.555Z (3 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
![PyPI - Downloads](https://img.shields.io/pypi/dm/BruteText) ![PyPI - License](https://img.shields.io/pypi/l/BruteText) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/BruteText) ![PyPI](https://img.shields.io/pypi/v/BruteText) ![PyPI - Wheel](https://img.shields.io/pypi/wheel/BruteText) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/BruteText) [![Downloads](https://static.pepy.tech/badge/brutetext)](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 bruteTextbrutetext.bruteText("Text to be typed", x) ## x where the time (milliseconds) between inputs.
```