YuvrajRaghuvanshiS / WhatsApp-Key-Database-Extractor

The most advanced and complete solution for extracting WhatsApp key/DB from package directory (/data/data/com.whatsapp) without root access.
MIT License
443 stars 57 forks source link

Fstring issues in wa_kdbe.py #110

Closed SubsTheTechnomancer closed 1 year ago

SubsTheTechnomancer commented 1 year ago

When I run wa_kdbe.py from the master branch using python 3.7.4 in a windows machine, I get the following error:

File "<fstring>", line 1
    (sdk_version=)
                ^
SyntaxError: invalid syntax

I believe this is because there are multiple instances of fstrings being used to insert data but with some additional characters, like so:

f'This is a string! This is a variable: {var_name=!s}`

I am unsure as to what the =!s implies in the code. If this can be explained, I would appreciate it, otherwise perhaps simply removing those characters might fix the issue.

Thanks