Lennart01 / EarnApp-Earning-Monitor

Watches your earnings on EarnApp and notifies you when you earned balance or received an payout.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EarnApp-Earning-Monitor

Watches your earnings on EarnApp and notifies you when you earned balance or received an payout.

Containerised by https://github.com/fazalfarhan01

EpGmmBubdkNVXCaz_1_58 Bot StartedBalance Update

NOTE: This is not a trojan! This is completely open source and you can check the source for yourself. Nothing is obfuscated.

Installation

Docker

Compose

version: "3.3"
services:
  app:
    image: fazalfarhan01/earnapp-earning-monitor
    restart: always
    environment:
      DELAY: 2 # MINUTES TO WAIT AFTER UTC *:00 TO CHECK FOR UPDATE | DEFAULT 2 MINUTES
      AUTH: YOUR_AUTH_COOKIE_HERE
      WEBHOOK_URL: YOUR_WEBHOOK_URL_HERE

Non Compose

docker run -d --restart always --name earnapp-monitor \
-e AUTH=YOUR_AUTH_COOKIE_HERE \
-e WEBHOOK_URL=YOUR_WEBHOOK_URL_HERE \
-e DELAY=2 \
fazalfarhan01/earnapp-earning-monitor:python-latest
  • Example
docker run -d --restart always --name earnapp-monitor 
-e AUTH=1%2%adfbg-afvbfab-asfdbadbf -e WEBHOOK_URL=https://discord.com/api/webhooks/akjsdvasdvjafvb -e DELAY=2 fazalfarhan01/earnapp-earning-monitor:python-latest

Windows

  • Download the executable file from releases
  • Double click and run. (Windows Defender might detect it as a trojan. Nothing to worry, it's a false positive. You will have to allow it from windows defender's protection history.)

Need more help?

Check out this video.

image

Windows Installation From Source

  • Install Python3
  • Download or clone this repo.
  • Unzip and put in directory
  • Install Dependencies
    • pip3 install discord_webhook pyEarnapp colorama
    • On Windows, run install.bat
  • Run start.bat

Linux Installation

  • Install Python3
  • Install python3-pip apt install -y python3-pip
  • Download or clone this repo.
  • Unzip and put in directory
  • Install Dependencies
    • pip3 install discord_webhook pyEarnapp colorama
    • On Linux, run install.sh
  • Run start.sh

How to get Google Auth

  1. Go to the EarnApp Dashboard

  2. Login with Google

  3. Open Developer tools with CTR+SHIFT+I

    • Go to Application TAB

    image

    • Go to Storage > Cookies > https://earnapp.com

    image

    • Click on oauth-refresh-token

    image

    • Copy the entire thing as is.

    image

  4. You're done :)

Remember

  • This does not use an official API from EarnApp so bugs may occur.

Credits

Version

  • 2.1.7.4

About

Watches your earnings on EarnApp and notifies you when you earned balance or received an payout.

License:MIT License


Languages

Language:Python 97.8%Language:Shell 0.9%Language:Dockerfile 0.8%Language:Batchfile 0.5%