AutoMonkey


NameAutoMonkey JSON
Version 0.1.9 PyPI version JSON
download
home_pagehttps://github.com/MihailCosmin/automonkey
SummaryPython Automation using Mouse and Keyboard, for the masses
upload_time2023-07-25 20:17:11
maintainer
docs_urlNone
authorMihail-Cosmin Munteanu
requires_python>=3.6
licenseGNU General Public License v3
keywords automonkey
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/donate/?hosted_button_id=5Q6TUMXS2QJW4)
[![](https://snyk.io/test/github/MihailCosmin/AutoMonkey/badge.svg)](https://snyk.io/test/github/MihailCosmin/AutoMonkey)
[![HitCount](https://hits.dwyl.com/MihailCosmin/AutoMonkey.svg?style=flat-square&show=unique)](http://hits.dwyl.com/MihailCosmin/AutoMonkey)
[![build](https://github.com/MihailCosmin/AutoMonkey/actions/workflows/python-package.yml/badge.svg)](https://github.com/MihailCosmin/AutoMonkey/actions/workflows/python-package.yml)
[![Code Climate](https://codeclimate.com/github/MihailCosmin/AutoMonkey/badges/gpa.svg)](https://codeclimate.com/github/MihailCosmin/AutoMonkey)

# AutoMonkey
<img alt="AutoMonkey" src="https://github.com/MihailCosmin/AutoMonkey/raw/06181954fa23605583d61843226f5f3997157435/img/monkey.ico" width="100px" height="100px"/>

Python Automation using Mouse and Keyboard, for the masses

# Installation

1. From <a href="https://pypi.org/project/AutoMonkey/">pypi</a>:

```
pip install AutoMonkey
```

2. From <a href="https://github.com/MihailCosmin/AutoMonkey">github</a>:

```
pip install git+https://github.com/MihailCosmin/AutoMonkey
```

# Dependencies
#### Automonkey is based on:
- <a href="https://github.com/asweigart/pyautogui">pyautogui</a>

#### Other dependencies:
- PyScreeze
- pyperclip
- clipboard
- keyboard
- screeninfo
- pywin32
- pillow
- opencv-python
- numpy
- pytesseract

# Usage
Main function to be used is "chain"  

This will allow you to "chain" together most of the other functions of automonkey.  
Which in turn will enable you to create sequences of mouse and/or keyboard actions in order to automate any given task.

A step can have this structure:

```python

dict(
    <action> = <target>,  # action can be any of the automonkey functions, target on which the action will be performed
    wait = 1,  # wait is an optional parameter, which will wait for the given amount of seconds before executing the next step
    skip = False,  # if True, will skip this step
    confidence = 0.9, # confidence is an optional parameter, Used only for actions on images. Confidence on locating the image.
    v_offset = 0,  # v_offset is an optional parameter, Used only for actions on images. Vertical offset from the center of the image.
    h_offset = 0,  # h_offset is an optional parameter, Used only for actions on images. Horizontal offset from the center of the image.
    offset = 0, # offset is an optional parameter, Used only for actions on images. Offset from the center of the image.
    monitor = 0,  # monitor is an optional parameter, Used only for actions on images. Monitor on which to search for the image.
)

or 

{
    "<action>": "<target>",  # action can be any of the automonkey functions, target on which the action will be performed
    "wait": 1,  # wait is an optional parameter, which will wait for the given amount of seconds before executing the next step
    "skip": False,  # if True, will skip this step
    "confidence": 0.9, # confidence is an optional parameter, Used only for actions on images. Confidence on locating the image.
    "v_offset": 0,  # v_offset is an optional parameter, Used only for actions on images. Vertical offset from the center of the image.
    "h_offset": 0,  # h_offset is an optional parameter, Used only for actions on images. Horizontal offset from the center of the image.
    "offset": 0, # offset is an optional parameter, Used only for actions on images. Offset from the center of the image.
    "monitor": 0,  # monitor is an optional parameter, Used only for actions on images. Monitor on which to search for the image.
}
```

1. You can connect multiple mouse actions together by using the "chain" function. Just by doing this you can generally automate most of the tasks you would do on a daily basis.

    There are 2 main ways to click, either by giving the coordinates of the position where to click or by giving the filename of the image you want to click on

    1.1. Clicking by coordinates
        
    
    1.1.1. In order to find the coordinates of a position on the screen you can use the "track_mouse" function or the PositionTracker class

    ```python
        from automonkey import track_mouse
        track_mouse()
    ```

    <img alt="track_mouse" src="https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/track_mouse.gif" width="416px" height="304px"/>


    ```python
        from automonkey import PositionTracker
        tracker = PositionTracker()
        tracker.start()
    ```

    <img alt="PositionTracker" src="https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/PositionTracker.gif" width="918px" height="574px"/>

    1.2.1. Now that you have the coordinates of the position you want to click on, you can use the "chain" function to click on it


    ```python
        from automonkey import chain
        chain(  
            dict(click=(780, 1175), wait=1),  
            dict(click=(444, 194), wait=1),  
            dict(click=(1892, 110), wait=1),  
            debug=True  
        )
    ```

    <img alt="click" src="https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/click.gif" width="960px" height="576px"/>

    1.2. Clicking by image

    1.2.1. To click on an image you first need to make a screenshot of the area you want to click on and save it somewhere on your computer.
        For this you can use any screenshot tool you want, or you could use monkeyshot: https://github.com/MihailCosmin/monkeyshot
        For example you can make a screenshot of the Edge icon from your toolbar, then we can click on it by using the "chain" function.

    <img alt="edge_toolbar" src="https://github.com/MihailCosmin/AutoMonkey/raw/25eaed263793bf548d42f616e241f435baa9d719/demo/edge_toolbar.jpg" width="33px" height="33px"/>

    1.2.2. Now that we have the image we want to click on, we can use the "chain" function to click on it

    ```python
        chain(
            dict(click="demo/edge_toolbar.jpg"),
            dict(click="demo/google_create_account", wait=1),
            dict(click="demo/personal_use", wait=1),
            debug=True
        )
    ```

    <img alt="click_image" src="https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/click_image.gif" width="918px" height="600px"/>

    1.3. All mouse actions:

        * click
        * rightclick
        * leftclick
        * doubleclick
        * tripleclick
        * scrollup
        * scrolldown
        * scrollleft
        * scrollright

2. You can also connect multiple keyboard actions together by using the "chain" function.

    2.1. Write text - This doesn't work well with non-english character. For this you can use the "pastetext" function.

    ```python
        chain(
            dict(click="demo/notepad.jpg"),
            dict(write="Hello World!"),
            debug=True
        )
    ```

    <img alt="write" src="https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/write.gif" width="918px" height="600px"/>

    2.2. Paste text - This works well with non-english characters

    ```python
        chain(
            dict(click="demo/notepad.jpg"),
            dict(pastetext="Straße"),
            debug=True
        )
    ```

    2.3. Key combinations

    ```python
        chain(
            dict(click="demo/notepad.jpg", wait=1),
            dict(write="Hello World!", wait=1),
            dict(keys2="ctrl+a", wait=1),
            dict(keys2="ctrl+x", wait=1),
            dict(keys2="alt+f4", wait=1),  # close notepad
            debug=True
        )
    ```

    <img alt="keys" src="https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/keys.gif" width="918px" height="600px"/>

    2.4. All key actions:

        * write
        * pastetext
        * keys
        * keys2 - best option overall for key combinations
        * keys3
        * keys4
        * copy
        * paste

3. Wait actions:

    3.1. Wait until an image appears on the screen
    This can used when you are waiting for a window to finish loading completely and you don't know exactly how long that would take.

    ```python
        chain(
            dict(click="demo/notepad.jpg"),
            dict(waituntil="demo/notepad_opened.jpg", wait=1),
            dict(write="Hello World!", wait=1),
            debug=True
        )
    ```

    3.2. Wait while an image is on the screen

4. App (window) actions:

    4.1. Open an app

    ```python
        chain(
            dict(open_app="notepad++.exe", wait=1),
            dict(waituntil="demo/notepad_opened.jpg", wait=1),
            dict(write="Hello World!", wait=1),
            debug=True
        )
    ```

    4.2. Close an app

    ```python
        chain(
            dict(open_app="notepad++.exe", wait=1),
            dict(write="Hello World!", wait=1),
            dict(close="Notepad", wait=1),
            debug=True
        )
    ```

    4.3. Minimize an app

    ```python
        chain(
            dict(open_app="notepad++.exe", wait=1),
            dict(write="Hello World!", wait=1),
            dict(minimize="Notepad", wait=1),
            debug=True
        )
    ```

    4.4. Maximize an app

    ```python
        chain(
            dict(open_app="notepad++.exe", wait=1),
            dict(write="Hello World!", wait=1),
            dict(maximize="Notepad", wait=1),
            debug=True
        )
    ```

    4.5. Restore an app

    ```python
        chain(
            dict(open_app="notepad++.exe", wait=1),
            dict(write="Hello World!", wait=1),
            dict(minimize="Notepad", wait=1),
            dict(restore="Notepad", wait=1),
            debug=True
        )
    ```

    4.6. All app actions:

        * open_app
        * close
        * startfile
        * focus
        * minimize
        * maximize
        * restore
        * msoffice_replace
        * copy_from
        * copy_from_to

5. Image actions

    5.1 count_img. With this function you can count how many times one image appears on the screen.

    ```python
        chain(
            dict(count_img="demo/M.jpg", wait=1),  # The result will be copied to the clipboard
            dict(open_app="notepad++.exe", wait=1),
            dict(paste="", wait=1),  # with paste we can paste the text from the clipboard
            debug=True
        )
    ```

    5.2. get_text_from_region

    ```python
        chain(
            dict(get_text_from_region=((136, 121), (189, 140)), wait=1),  # The text will be copied to the clipboard
            dict(open_app="notepad++.exe", wait=1),
            dict(paste="", wait=1),  # with paste we can paste the text from the clipboard
            debug=True
        )
    ```

# Roadmap
1. Check if possible to add <a href="https://github.com/pywinauto/pywinauto">pyautowin</a> functionality

# Frequently Asked Questions:

1. I made an image but it doesn't click on it.

    A: Make sure you have not changed resolution of your screen or the theme (dark/light) of the window.


2. Keys combination using "keys" function doesn't work.

    A: Try other keys functions. Preferably "keys2". Other options "keys3", "keys4".

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MihailCosmin/automonkey",
    "name": "AutoMonkey",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "automonkey",
    "author": "Mihail-Cosmin Munteanu",
    "author_email": "Mihail-Cosmin Munteanu <munteanumihailcosmin@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/f4/1b/1941147a0c5021a995cfe4004e3bdcbceaf470c9fd1a18acab5a8d9849e1/AutoMonkey-0.1.9.tar.gz",
    "platform": null,
    "description": "[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/donate/?hosted_button_id=5Q6TUMXS2QJW4)\n[![](https://snyk.io/test/github/MihailCosmin/AutoMonkey/badge.svg)](https://snyk.io/test/github/MihailCosmin/AutoMonkey)\n[![HitCount](https://hits.dwyl.com/MihailCosmin/AutoMonkey.svg?style=flat-square&show=unique)](http://hits.dwyl.com/MihailCosmin/AutoMonkey)\n[![build](https://github.com/MihailCosmin/AutoMonkey/actions/workflows/python-package.yml/badge.svg)](https://github.com/MihailCosmin/AutoMonkey/actions/workflows/python-package.yml)\n[![Code Climate](https://codeclimate.com/github/MihailCosmin/AutoMonkey/badges/gpa.svg)](https://codeclimate.com/github/MihailCosmin/AutoMonkey)\n\n# AutoMonkey\n<img alt=\"AutoMonkey\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/06181954fa23605583d61843226f5f3997157435/img/monkey.ico\" width=\"100px\" height=\"100px\"/>\n\nPython Automation using Mouse and Keyboard, for the masses\n\n# Installation\n\n1. From <a href=\"https://pypi.org/project/AutoMonkey/\">pypi</a>:\n\n```\npip install AutoMonkey\n```\n\n2. From <a href=\"https://github.com/MihailCosmin/AutoMonkey\">github</a>:\n\n```\npip install git+https://github.com/MihailCosmin/AutoMonkey\n```\n\n# Dependencies\n#### Automonkey is based on:\n- <a href=\"https://github.com/asweigart/pyautogui\">pyautogui</a>\n\n#### Other dependencies:\n- PyScreeze\n- pyperclip\n- clipboard\n- keyboard\n- screeninfo\n- pywin32\n- pillow\n- opencv-python\n- numpy\n- pytesseract\n\n# Usage\nMain function to be used is \"chain\"  \n\nThis will allow you to \"chain\" together most of the other functions of automonkey.  \nWhich in turn will enable you to create sequences of mouse and/or keyboard actions in order to automate any given task.\n\nA step can have this structure:\n\n```python\n\ndict(\n    <action> = <target>,  # action can be any of the automonkey functions, target on which the action will be performed\n    wait = 1,  # wait is an optional parameter, which will wait for the given amount of seconds before executing the next step\n    skip = False,  # if True, will skip this step\n    confidence = 0.9, # confidence is an optional parameter, Used only for actions on images. Confidence on locating the image.\n    v_offset = 0,  # v_offset is an optional parameter, Used only for actions on images. Vertical offset from the center of the image.\n    h_offset = 0,  # h_offset is an optional parameter, Used only for actions on images. Horizontal offset from the center of the image.\n    offset = 0, # offset is an optional parameter, Used only for actions on images. Offset from the center of the image.\n    monitor = 0,  # monitor is an optional parameter, Used only for actions on images. Monitor on which to search for the image.\n)\n\nor \n\n{\n    \"<action>\": \"<target>\",  # action can be any of the automonkey functions, target on which the action will be performed\n    \"wait\": 1,  # wait is an optional parameter, which will wait for the given amount of seconds before executing the next step\n    \"skip\": False,  # if True, will skip this step\n    \"confidence\": 0.9, # confidence is an optional parameter, Used only for actions on images. Confidence on locating the image.\n    \"v_offset\": 0,  # v_offset is an optional parameter, Used only for actions on images. Vertical offset from the center of the image.\n    \"h_offset\": 0,  # h_offset is an optional parameter, Used only for actions on images. Horizontal offset from the center of the image.\n    \"offset\": 0, # offset is an optional parameter, Used only for actions on images. Offset from the center of the image.\n    \"monitor\": 0,  # monitor is an optional parameter, Used only for actions on images. Monitor on which to search for the image.\n}\n```\n\n1. You can connect multiple mouse actions together by using the \"chain\" function. Just by doing this you can generally automate most of the tasks you would do on a daily basis.\n\n    There are 2 main ways to click, either by giving the coordinates of the position where to click or by giving the filename of the image you want to click on\n\n    1.1. Clicking by coordinates\n        \n    \n    1.1.1. In order to find the coordinates of a position on the screen you can use the \"track_mouse\" function or the PositionTracker class\n\n    ```python\n        from automonkey import track_mouse\n        track_mouse()\n    ```\n\n    <img alt=\"track_mouse\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/track_mouse.gif\" width=\"416px\" height=\"304px\"/>\n\n\n    ```python\n        from automonkey import PositionTracker\n        tracker = PositionTracker()\n        tracker.start()\n    ```\n\n    <img alt=\"PositionTracker\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/PositionTracker.gif\" width=\"918px\" height=\"574px\"/>\n\n    1.2.1. Now that you have the coordinates of the position you want to click on, you can use the \"chain\" function to click on it\n\n\n    ```python\n        from automonkey import chain\n        chain(  \n            dict(click=(780, 1175), wait=1),  \n            dict(click=(444, 194), wait=1),  \n            dict(click=(1892, 110), wait=1),  \n            debug=True  \n        )\n    ```\n\n    <img alt=\"click\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/click.gif\" width=\"960px\" height=\"576px\"/>\n\n    1.2. Clicking by image\n\n    1.2.1. To click on an image you first need to make a screenshot of the area you want to click on and save it somewhere on your computer.\n        For this you can use any screenshot tool you want, or you could use monkeyshot: https://github.com/MihailCosmin/monkeyshot\n        For example you can make a screenshot of the Edge icon from your toolbar, then we can click on it by using the \"chain\" function.\n\n    <img alt=\"edge_toolbar\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/25eaed263793bf548d42f616e241f435baa9d719/demo/edge_toolbar.jpg\" width=\"33px\" height=\"33px\"/>\n\n    1.2.2. Now that we have the image we want to click on, we can use the \"chain\" function to click on it\n\n    ```python\n        chain(\n            dict(click=\"demo/edge_toolbar.jpg\"),\n            dict(click=\"demo/google_create_account\", wait=1),\n            dict(click=\"demo/personal_use\", wait=1),\n            debug=True\n        )\n    ```\n\n    <img alt=\"click_image\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/click_image.gif\" width=\"918px\" height=\"600px\"/>\n\n    1.3. All mouse actions:\n\n        * click\n        * rightclick\n        * leftclick\n        * doubleclick\n        * tripleclick\n        * scrollup\n        * scrolldown\n        * scrollleft\n        * scrollright\n\n2. You can also connect multiple keyboard actions together by using the \"chain\" function.\n\n    2.1. Write text - This doesn't work well with non-english character. For this you can use the \"pastetext\" function.\n\n    ```python\n        chain(\n            dict(click=\"demo/notepad.jpg\"),\n            dict(write=\"Hello World!\"),\n            debug=True\n        )\n    ```\n\n    <img alt=\"write\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/write.gif\" width=\"918px\" height=\"600px\"/>\n\n    2.2. Paste text - This works well with non-english characters\n\n    ```python\n        chain(\n            dict(click=\"demo/notepad.jpg\"),\n            dict(pastetext=\"Stra\u00dfe\"),\n            debug=True\n        )\n    ```\n\n    2.3. Key combinations\n\n    ```python\n        chain(\n            dict(click=\"demo/notepad.jpg\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            dict(keys2=\"ctrl+a\", wait=1),\n            dict(keys2=\"ctrl+x\", wait=1),\n            dict(keys2=\"alt+f4\", wait=1),  # close notepad\n            debug=True\n        )\n    ```\n\n    <img alt=\"keys\" src=\"https://github.com/MihailCosmin/AutoMonkey/raw/1fa19ba4517875d00c08cf320e628669d60714dc/demo/keys.gif\" width=\"918px\" height=\"600px\"/>\n\n    2.4. All key actions:\n\n        * write\n        * pastetext\n        * keys\n        * keys2 - best option overall for key combinations\n        * keys3\n        * keys4\n        * copy\n        * paste\n\n3. Wait actions:\n\n    3.1. Wait until an image appears on the screen\n    This can used when you are waiting for a window to finish loading completely and you don't know exactly how long that would take.\n\n    ```python\n        chain(\n            dict(click=\"demo/notepad.jpg\"),\n            dict(waituntil=\"demo/notepad_opened.jpg\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            debug=True\n        )\n    ```\n\n    3.2. Wait while an image is on the screen\n\n4. App (window) actions:\n\n    4.1. Open an app\n\n    ```python\n        chain(\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(waituntil=\"demo/notepad_opened.jpg\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            debug=True\n        )\n    ```\n\n    4.2. Close an app\n\n    ```python\n        chain(\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            dict(close=\"Notepad\", wait=1),\n            debug=True\n        )\n    ```\n\n    4.3. Minimize an app\n\n    ```python\n        chain(\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            dict(minimize=\"Notepad\", wait=1),\n            debug=True\n        )\n    ```\n\n    4.4. Maximize an app\n\n    ```python\n        chain(\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            dict(maximize=\"Notepad\", wait=1),\n            debug=True\n        )\n    ```\n\n    4.5. Restore an app\n\n    ```python\n        chain(\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(write=\"Hello World!\", wait=1),\n            dict(minimize=\"Notepad\", wait=1),\n            dict(restore=\"Notepad\", wait=1),\n            debug=True\n        )\n    ```\n\n    4.6. All app actions:\n\n        * open_app\n        * close\n        * startfile\n        * focus\n        * minimize\n        * maximize\n        * restore\n        * msoffice_replace\n        * copy_from\n        * copy_from_to\n\n5. Image actions\n\n    5.1 count_img. With this function you can count how many times one image appears on the screen.\n\n    ```python\n        chain(\n            dict(count_img=\"demo/M.jpg\", wait=1),  # The result will be copied to the clipboard\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(paste=\"\", wait=1),  # with paste we can paste the text from the clipboard\n            debug=True\n        )\n    ```\n\n    5.2. get_text_from_region\n\n    ```python\n        chain(\n            dict(get_text_from_region=((136, 121), (189, 140)), wait=1),  # The text will be copied to the clipboard\n            dict(open_app=\"notepad++.exe\", wait=1),\n            dict(paste=\"\", wait=1),  # with paste we can paste the text from the clipboard\n            debug=True\n        )\n    ```\n\n# Roadmap\n1. Check if possible to add <a href=\"https://github.com/pywinauto/pywinauto\">pyautowin</a> functionality\n\n# Frequently Asked Questions:\n\n1. I made an image but it doesn't click on it.\n\n    A: Make sure you have not changed resolution of your screen or the theme (dark/light) of the window.\n\n\n2. Keys combination using \"keys\" function doesn't work.\n\n    A: Try other keys functions. Preferably \"keys2\". Other options \"keys3\", \"keys4\".\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3",
    "summary": "Python Automation using Mouse and Keyboard, for the masses",
    "version": "0.1.9",
    "project_urls": {
        "Bug Tracker": "https://github.com/MihailCosmin/AutoMonkey/issues",
        "Homepage": "https://github.com/MihailCosmin/AutoMonkey"
    },
    "split_keywords": [
        "automonkey"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f41b1941147a0c5021a995cfe4004e3bdcbceaf470c9fd1a18acab5a8d9849e1",
                "md5": "9be973ef9edac66a2083c92d824195d5",
                "sha256": "799c0969551df2fc8947b252d7ca65af1b15bdf36e8d2f10ab6b685aef67ad78"
            },
            "downloads": -1,
            "filename": "AutoMonkey-0.1.9.tar.gz",
            "has_sig": false,
            "md5_digest": "9be973ef9edac66a2083c92d824195d5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 23964,
            "upload_time": "2023-07-25T20:17:11",
            "upload_time_iso_8601": "2023-07-25T20:17:11.658511Z",
            "url": "https://files.pythonhosted.org/packages/f4/1b/1941147a0c5021a995cfe4004e3bdcbceaf470c9fd1a18acab5a8d9849e1/AutoMonkey-0.1.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-25 20:17:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MihailCosmin",
    "github_project": "automonkey",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "automonkey"
}
        
Elapsed time: 0.20663s