vinno86 schreef op donderdag 9 april 2026 @ 20:31:
[...]
Hoe heb je het aan de praat gekregen ?
Ik heb die
guide gevolgd voor de token maar als ik dat script paste in powershell gebeurd er niks na het inloggen.
Krijg aan het einde altijd deze error:
code:
1
2
3
| ✅ Login successful! Element found.
An unexpected error occurred: 'NoneType' object has no attribute 'group'
Cleaning up and closing the browser. |
Had ik ook last van!!
Deze werkte voor mij:
https://github.com/smalarz/kia-token-generator
What you need to install first
1. Python (only needed to build the .exe — not needed to run it afterwards)
Go to python.org/downloads and download the latest Python 3
Run the installer
⚠️ IMPORTANT: Check the box that says "Add Python to PATH" at the bottom of the first screen — without this, nothing will work
Click "Install Now" and wait for it to finish
To verify: open Command Prompt (press Win+R, type cmd, press Enter) and type: python --version. You should see something like Python 3.12.x
2. The script files from this repository
On this GitHub page, click the green Code button → Download ZIP
Unzip the downloaded file to any folder (e.g. C:\Users\YourName\Downloads\kia-token-generator)
Option A: Double-click to build (easiest)
Open the unzipped folder — you should see KIA_TOKEN.py and build_exe.bat
Double-click build_exe.bat
A black command window will open and start doing stuff — this is normal, don't close it
Wait about 1–2 minutes
When you see "Build complete!", you're done
Open the dist subfolder — there's your KIA_TOKEN.exe 🎉
You can copy this .exe anywhere — it's completely standalone, no Python needed to run it
Option B: Type it yourself
If build_exe.bat doesn't work, or you like typing:
Open Command Prompt (Win+R → type cmd → press Enter)
Navigate to the folder with KIA_TOKEN.py:
cd C:\Users\YourName\Downloads\kia-token-generator
(replace with your actual path)
Run these commands one by one:
python -m venv .build_venv
.build_venv\Scripts\activate
pip install pyinstaller requests websocket-client
pyinstaller --onefile --name KIA_TOKEN --clean --noconfirm KIA_TOKEN.py
When it finishes, your .exe is in the dist folder
[
Voor 60% gewijzigd door
twilight7 op 10-04-2026 09:43
]