Skip to content

TaskBot is a task automation tool with a graphical user interface (GUI) for executing scripted actions.

License

Notifications You must be signed in to change notification settings

Xza85hrf/TaskBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TaskBot

TaskBot

TaskBot is a task automation tool built using Python and tkinter. It provides a graphical user interface (GUI) for scripting and executing automated actions such as mouse clicks, keystrokes, and more.

Features

TaskBot:

  • Load and execute actions from a JSON file.
  • Basic GUI for action management.
  • Execute automated tasks like mouse clicks, keyboard actions, etc.
  • Ability to save and manage actions in a JSON file through the GUI.
  • Enhanced error handling and validation of user inputs.

Installation

Prerequisites:

  • Python 3.x
  • pyautogui, tkinter, sv_ttk

First, clone the repository to your local machine:

git clone https://github.com/Xza85hrf/TaskBot.git
cd TaskBot

Install the required dependencies:

pip install -r requirements.txt

Usage Navigate to the main directory and run the main script:

For TaskBot:

cd TaskBot
python TaskBot.py

Configuration Actions are defined in a JSON file format. Here’s a sample configuration:

[
  {
    "type": "click",
    "position": [100, 200],
    "description": "Click at position"
  },
  {
    "type": "type",
    "text": "Hello, world!",
    "description": "Type some text"
  }
]

Load this file through the GUI to execute the described actions.

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes and commit them (git commit -am 'Add some feature').
  4. Push to the branch (git push origin feature-branch).
  5. Create a new Pull Request.

Known Issues

  • Limited error handling in file operations.
  • UI responsiveness can lag with extensive action lists.

Future Enhancements

  • Multi-language support.
  • Integration with additional automation libraries.
  • Real-time action editing and preview.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

TaskBot is a task automation tool with a graphical user interface (GUI) for executing scripted actions.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages