Skip to content

Commit cdfa163

Browse files
Release Public
1 parent ab68428 commit cdfa163

21 files changed

+33
-26
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
.gitsecret/**
12
__pycache__/**
23
geckodriver.log
34
*.log
4-
social/api.py
5-
social/client_secret.json
6-
social/credentials.json
7-
social/credentials.yaml
85
social/__pycache__/**
96
icon.png
107
*.pyc

.gitsecret/keys/mapping.cfg

Whitespace-only changes.

.gitsecret/keys/pubring.kbx

-3.85 KB
Binary file not shown.

.gitsecret/keys/pubring.kbx~

-1.94 KB
Binary file not shown.

.gitsecret/keys/trustdb.gpg

-1.17 KB
Binary file not shown.

.gitsecret/paths/mapping.cfg

Lines changed: 0 additions & 4 deletions
This file was deleted.

machine.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def machine(user):
1414
headers={'api-key': 'quickstart-QUdJIGlzIGNvbWluZy4uLi4K'}
1515
)
1616
data = r.json()
17+
1718
if 'Negative' in data['output']:
1819
print(R+"{} May be a Predator".format(user)+W)
1920
return True

main.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@ def main():
2121
print(C+"1."+W+"Keyword Search")
2222
print(C+"2."+W+"Image Search")
2323
ch1=input(C+"root@social_scraper:~/Username/search#"+C+"Enter the choice:"+W)
24-
if ch1==1:
24+
if ch1=='1':
2525
search()
26-
elif ch1==2:
26+
elif ch1=='2':
2727
reverseimagesearch()
28-
else:
29-
continue
3028
else:
3129
print("Invalid Choice")
3230

search.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def search():
1414
username=[]
1515
if ch==1:
1616
username.append(input("Enter the Username: "))
17+
pass
1718
elif ch==2:
1819
filename=input("Filename with Directory:")
1920
try:

social/api.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
def google():
2+
return ""
3+
def api_key():
4+
#imagga
5+
return ""
6+
def api_secret():
7+
#imagga
8+
return ''
9+
def deepai():
10+
return ''
11+
12+
if __name__ == '__main__':
13+
pass

0 commit comments

Comments
 (0)