mirror of
https://github.com/vysecurity/LinkedInt.git
synced 2026-05-08 12:34:14 +02:00
Merge 5fa7d53cbf into 89ab1d32d1
This commit is contained in:
commit
71cfa3be92
3 changed files with 6 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1 +1,3 @@
|
||||||
LinkedInt.cfg
|
LinkedInt.cfg
|
||||||
|
*.html
|
||||||
|
*.csv
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
[API_KEYS]
|
[API_KEYS]
|
||||||
hunter =
|
hunter = ""
|
||||||
|
|
||||||
[CREDS]
|
[CREDS]
|
||||||
linkedin_username =
|
linkedin_username =
|
||||||
linkedin_password =
|
linkedin_password =
|
||||||
|
|
||||||
|
|
@ -223,7 +223,7 @@ def get_search():
|
||||||
data_picture = ""
|
data_picture = ""
|
||||||
|
|
||||||
|
|
||||||
|
data_slug = repr(data_slug.encode("utf-8")).replace("\\x","%").replace("b","",1).replace("'","")
|
||||||
parts = data_lastname.split()
|
parts = data_lastname.split()
|
||||||
|
|
||||||
name = data_firstname + " " + data_lastname
|
name = data_firstname + " " + data_lastname
|
||||||
|
|
@ -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