Metadata-Version: 2.1
Name: autotyper
Version: 1.0
Summary: Paste the contents of a file to the cursor after a specified delay
Home-page: https://github.com/junaidrahim/autotyper
License: MIT
Keywords: autotyper,copy-paste
Author: Junaid Rahim
Author-email: junaidrahim8d@gmail.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: PyAutoGUI (>=0.9.52,<0.10.0)
Project-URL: Repository, https://github.com/junaidrahim/autotyper
Description-Content-Type: text/markdown

# autotyper

A simple command line tool to paste the contents of a file to the cursor after a delay of few seconds.

## Installation

Make sure you have Python3 installed on your system. 

```
pip install autotyper
```

Just run that and you will have it ready to go on your system.

## Usage

```
usage: autotyper [-h] -f FILE -d DELAY

Write file content on cursor

optional arguments:
  -h, --help  show this help message and exit
  -f FILE     input file containing the code
  -d DELAY    Delay in sec before writing to the cursor
```

```
$ autotyper -f bubblesort.c -d 10
Writing file content to cursor in 10 sec...
```

In this time, position your cursor to where you want to type out the text. Can be used in online exams
to write the content of a file, where copy paste is not allowed in the text box.

## License

Copyright (c) **Junaid H. Rahim**. All rights reserved. Licensed under the MIT License

[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com)

