README + launch scripts

Signed-off-by: nanometer5088 <code.deleo@simplelogin.com>
This commit is contained in:
nanometer5088
2023-05-02 20:07:56 -03:00
parent a15bb73d32
commit c368270cf2
3 changed files with 26 additions and 4 deletions

View File

@@ -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
View 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
View 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.
)