Microsoft Rewards Farmer
3.0 - A Brand New BOT
███╗ ███╗███████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗██████╗
████╗ ████║██╔════╝ ██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝██╔══██╗
██╔████╔██║███████╗ █████╗ ███████║██████╔╝██╔████╔██║█████╗ ██████╔╝
██║╚██╔╝██║╚════██║ ██╔══╝ ██╔══██║██╔══██╗██║╚██╔╝██║██╔══╝ ██╔══██╗
██║ ╚═╝ ██║███████║ ██║ ██║ ██║██║ ██║██║ ╚═╝ ██║███████╗██║ ██║
╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
by Charles Bel (@charlesbel) version 3.0
- Use it at your own risk, Microsoft may ban your account (and I would not be responsible for it)
次のコマンドを使用して要件をインストールします。
pip install -r requirements.txt
Chrome がインストールされていることを確認してください
ChromeDriver をインストールします。
Selenium >=4.10.0 には Webdriver Manager が含まれているため、この手順を実行する必要はなくなりました。
Selenium のバージョンを更新するには、次のコマンドを実行します: pip install selenium --upgrade
(Windows のみ) Visual C++ 再頒布可能 DLL がインストールされていることを確認してください
そうでない場合は、このリンクから現在の「vc_redist.exe」をインストールし、コンピューターを再起動します: https://learn.microsoft.com/en-GB/cpp/windows/latest-supported-vc-redist?view= msvc-170
アカウントの資格情報を使用してaccounts.json.sample
を編集し、末尾の.sample
を削除して名前を変更します。 「プロキシ」フィールドは必須ではありません。プロキシを使用したくない場合は省略できます(空の文字列のままにせず、完全に削除してください)。
[
{
"username" : " Your Email 1 " ,
"password" : " Your Password 1 " ,
"proxy" : " http://user:pass@host1:port "
},
{
"username" : " Your Email 2 " ,
"password" : " Your Password 2 " ,
"proxy" : " http://user:pass@host2:port "
}
]
スクリプトを実行します。
python main.py
または、常に最新の状態に保ちたい場合 (新しいバージョンが利用可能かどうかを実行ごとにチェックし、利用可能な場合はダウンロードして実行します)、次のようにします。
python autoupdate_main.py