├── requirements.txt ├── .env └── README.md /requirements.txt: -------------------------------------------------------------------------------- 1 | shareithub 2 | requests 3 | colorama 4 | python-dotenv 5 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | DISCORD_TOKEN=PASTE YOUR DISCORD TOKEN 2 | GOOGLE_API_KEY=PASTE YOUR GEMINI API 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DISCORD PUSH LEVEL WITH GEMINI AI !! 2 | 3 | * Tutorial with VIDEO : https://youtu.be/B6IkggY6ct8 4 | 5 | # Get your discord token, different ways: 6 | 7 | First method: 8 | 9 | Open your browser and activate developer mode 10 | 11 | Login your discord account 12 | 13 | Go to developer mode and click on XHR tab 14 | 15 | Find login request and click 16 | 17 | Go to Responses tab and find token value 18 | 19 | Copy that token 20 | 21 | Second method: 22 | 23 | Make sure that you already login into your discord account 24 | 25 | Go to Developers tool in your browser 26 | 27 | Find javascript console, and paste code below: 28 | 29 | 30 | ``` 31 | ( 32 | webpackChunkdiscord_app.push( 33 | [ 34 | [''], 35 | {}, 36 | e => { 37 | m=[]; 38 | for(let c in e.c) 39 | m.push(e.c[c]) 40 | } 41 | ] 42 | ), 43 | m 44 | ).find( 45 | m => m?.exports?.default?.getToken !== void 0 46 | ).exports.default.getToken() 47 | ``` 48 | 49 | 50 | # HOW TO GET GEMINI API : 51 | 52 | go to : https://aistudio.google.com/apikey 53 | 54 | * Login with your google accounts 55 | * Create API Key 56 | * Copy API Key 57 | 58 | # PASTE YOUR DISCORD TOKEN & GEMINI API IN FILE .ENV 59 | 60 | # Youtube Channel : 61 | * https://www.youtube.com/@SHAREITHUB_COM 62 | 63 | # Telegram Channel : 64 | * https://t.me/SHAREITHUB_COM 65 | 66 | # Group Telegram : 67 | * https://t.me/DISS_SHAREITHUB 68 | --------------------------------------------------------------------------------