Metadata-Version: 2.1
Name: MacroLib
Version: 1.0.0
Summary: Streaming video data via networks
Home-page: UNKNOWN
Author: Mafuyu / NotaDev
Author-email: <companioncubegd@gmail.com>
License: UNKNOWN
Keywords: python,macro,automation
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: caer
Requires-Dist: opencv-python
Requires-Dist: pyautogui


# MacroLib
Python3 Macro Library.

# Warning
This has only been tested on linux (debian) I am not sure if this works on others operating systems, I will test later

# How To Install
```
pip install MacroLib
```

# Dependencies
```
pip install pyautogui
pip install opencv-python 
pip install caer
```

# Example
```
import MacroLib as Macro

Macro.move(100, 100)

for i in range(10):
  Macro.click()
```

# Documentation
Ill add docs later

# To-Do
- [ ] Add More Functionallity

- [X] Add Package To Pypi


