Python program designed to automate inviting users to your Habitica group based on specified criteria.
To run the Habitica script, ensure you have the following installed:
- Python: Version 3.x.
- Git: For cloning the repository.
-
Clone the Repository:
git clone https://github.com/Student-FastDev/Habitica-AutoInviter cd habitica-autoinviter -
Install Required Packages:
Install the necessary Python packages using
pip:pip install -r requirements.txt
-
Run the Python Script:
Execute the main script to start the automation process:
python invite_bot.py
-
Configure Settings:
After running the program for the first time, a default
config.jsonfile will be generated (or you can create it manually). Open this file in a text editor to customize your settings:{ "userAPI": "your-user-api-key", "tokenAPI": "your-token-api-key", "groupId": "your-group-id", "delay": 60, "min_level": 10 }- userAPI: Your Habitica user API key.
- tokenAPI: Your Habitica token API key.
- groupId: The ID of your Habitica group.
- delay: Delay in seconds between invite sessions.
- min_level: Minimum level required for users to be invited.
