Automatic like for dating sites.
To auto-like
with basic settings use following command:
python3 main.py
For CPU or NVidia platforms use following instructions to initialize virtual environment:
python3 -m venv venv # create virtual environment, if needed
source venv/bin/activate # activate virtual environment, if needed
python3 -m pip install -r requirements.txt
For AMD platform use following commands:
python3 -m venv venv # create virtual environment, if needed
source venv/bin/activate # activate virtual environment, if needed
python3 -m pip install --pre torch torchvision torchaudio --index-url 'https://download.pytorch.org/whl/nightly/rocm5.7/'
python3 -m pip install -r requirements.txt
To inject worker on any site use user script utilities/console-injector.js
.
This script must work from both browser console and
Greasemonkey. But for some sites Greasemonkey
can't execute script in iframe
in this case use browser console.
To print database content use following command:
python utilities/print-database.py
Linter:
pylint main.py
Auto format code:
yapf -i main.py
Source code is primarily distributed under the terms of the MIT license. See LICENSE for details.