A Python application for legitimate call automation purposes using the Twilio API.
- Make a sequence of automated calls to a target phone number
- Configure delay between consecutive calls
- Control the number of calls to make (limited to 10 for responsible use)
- Real-time call progress logging
- Ability to stop an ongoing call sequence
- Python 3.6 or higher
- A Twilio account with:
- Account SID
- Auth Token
- A Twilio phone number
- Sufficient credits to make calls
- Clone this repository or download the files
- Install the required dependencies:
pip install -r requirements.txt
You can configure your Twilio credentials in two ways:
- Through the application's Settings tab
- By creating a
.env
file in the same directory with the following content:
TWILIO_ACCOUNT_SID=your_account_sid
TWILIO_AUTH_TOKEN=your_auth_token
TWILIO_PHONE_NUMBER=your_twilio_phone_number
- Run the application:
python call_automation.py
-
In the main tab:
- Enter the target phone number in E.164 format (e.g., +1234567890)
- Set the number of calls you want to make (max: 10)
- Set the delay between calls in seconds (min: 30)
- Click "Start Calls" to begin
-
The call log will display the progress of each call and any errors encountered.
-
You can stop an ongoing call sequence by clicking the "Stop" button.
This tool is designed for legitimate purposes only, such as:
- Testing your own phone systems
- Sending notifications to opt-in recipients
- Educational demonstrations
WARNING: Using this tool to harass, spam, or annoy others may violate local laws and regulations, as well as Twilio's Terms of Service. Always ensure you have proper authorization before making automated calls.
This application is provided "as is", without warranty of any kind. The user is solely responsible for how this tool is used and any consequences that may arise from its use.
This project is licensed under the MIT License - see the LICENSE file for details.
Developed by: Gyan-Max
GitHub: https://github.com/Gyan-max
For detailed documentation, see DOCUMENTATION.md