mirror of
https://github.com/vysecurity/LinkedInt.git
synced 2026-05-07 12:01:14 +02:00
Fix Url encoding when there is emoji in linkedin profile link
This commit is contained in:
parent
d67727efcf
commit
c1057a58ad
2 changed files with 3 additions and 4 deletions
|
|
@ -1,7 +1,6 @@
|
|||
[API_KEYS]
|
||||
hunter =
|
||||
hunter = ""
|
||||
|
||||
[CREDS]
|
||||
linkedin_username =
|
||||
linkedin_password =
|
||||
|
||||
linkedin_password =
|
||||
|
|
@ -332,7 +332,7 @@ def authenticate():
|
|||
|
||||
if __name__ == '__main__':
|
||||
print("")
|
||||
a = open(baseDir + "banner.txt","r")
|
||||
a = open(baseDir + "banner.txt","r", encoding="utf-8")
|
||||
print(a.read())
|
||||
a.close()
|
||||
print("")
|
||||
|
|
|
|||
Loading…
Reference in a new issue