theHarvester/discovery/twittersearch.py

43 lines
1.3 KiB
Python
Raw Normal View History

from discovery.constants import *
from lib.core import *
2019-01-11 10:09:47 +08:00
from parsers import myparser
import requests
import time
class search_twitter:
def __init__(self, word, limit):
self.word = word.replace(' ', '%20')
self.results = ""
self.totalresults = ""
self.server = "www.google.com"
self.hostname = "www.google.com"
self.quantity = "100"
self.limit = int(limit)
self.counter = 0
def do_search(self):
try:
urly = "https://" + self.server + "/search?num=100&start=" + str(self.counter) + "&hl=en&meta=&q=site%3Atwitter.com%20intitle%3A%22on+Twitter%22%20" + self.word
except Exception as e:
print(e)
headers = {'User-Agent': Core.get_user_agent()}
try:
r=requests.get(urly, headers=headers)
except Exception as e:
print(e)
self.results = r.text
self.totalresults += self.results
def get_people(self):
rawres = myparser.Parser(self.totalresults, self.word)
return rawres.people_twitter()
def process(self):
while self.counter < self.limit:
self.do_search()
time.sleep(getDelay())
self.counter += 100
2019-01-11 10:09:47 +08:00
print(f'\tSearching {self.counter} results.')