mirror of
https://github.com/vysecurity/LinkedInt.git
synced 2026-05-09 04:53:51 +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]
|
[API_KEYS]
|
||||||
hunter =
|
hunter = ""
|
||||||
|
|
||||||
[CREDS]
|
[CREDS]
|
||||||
linkedin_username =
|
linkedin_username =
|
||||||
linkedin_password =
|
linkedin_password =
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -332,7 +332,7 @@ def authenticate():
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print("")
|
print("")
|
||||||
a = open(baseDir + "banner.txt","r")
|
a = open(baseDir + "banner.txt","r", encoding="utf-8")
|
||||||
print(a.read())
|
print(a.read())
|
||||||
a.close()
|
a.close()
|
||||||
print("")
|
print("")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue