mirror of
https://github.com/ovosimpatico/Whatsapp-Bulk-Sender
synced 2026-01-15 13:32:52 -03:00
README + launch scripts
Signed-off-by: nanometer5088 <code.deleo@simplelogin.com>
This commit is contained in:
@@ -21,11 +21,11 @@ It's essential to note that self-botting goes against WhatsApp terms of service
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
5. To start using the software, run the main.py file through the terminal using the following command:
|
||||
5. To start using the software, choose the appropriate run file based on your operating system:
|
||||
* For Windows, run the file `run_windows.bat`.
|
||||
* For Linux, run the file `run_linux.sh`.
|
||||
|
||||
```
|
||||
python main.py
|
||||
```
|
||||
⚠️Attention: The Wayland protocol is not supported. Ensure that you are running on X11 if you are running Linux.⚠️
|
||||
|
||||
## Contributing
|
||||
Contributions are not accepted as this software was developed specifically for a client.
|
||||
11
run_linux.sh
Normal file
11
run_linux.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
# check if Python is installed
|
||||
if command -v python &> /dev/null
|
||||
then
|
||||
# run the Python script
|
||||
python main.py
|
||||
else
|
||||
# print an error message
|
||||
echo "Python is not installed on this system."
|
||||
fi
|
||||
11
run_windows.bat
Normal file
11
run_windows.bat
Normal file
@@ -0,0 +1,11 @@
|
||||
@echo off
|
||||
|
||||
REM check if Python is installed
|
||||
where python >nul 2>&1
|
||||
if %errorlevel% == 0 (
|
||||
REM run the Python script
|
||||
python main.py
|
||||
) else (
|
||||
REM print an error message
|
||||
echo Python is not installed on this system.
|
||||
)
|
||||
Reference in New Issue
Block a user