-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitterPremiumApi.py
67 lines (51 loc) · 1.77 KB
/
twitterPremiumApi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#-*- coding: utf-8 -*-
#!/usr/bin/env python3
from TwitterAPI import TwitterAPI
from TwitterAPI import TwitterPager
import csv
import config
import io
import re
def startTwitterPremiumApi():
SEARCH_TERM = 'siber OR hacklendi OR (fidye yazılımı) lang:tr'
PRODUCT = 'fullarchive'
LABEL = 'production'
api = TwitterAPI(config.CONSUMER_KEY,
config.CONSUMER_SECRET,
config.ACCESS_TOKEN,
config.ACCESS_SECRET)
r = TwitterPager(api, 'tweets/search/%s/:%s' % (PRODUCT, LABEL),
{'query':SEARCH_TERM,
'fromDate':'201512070000',
'toDate':'201512132359',
"maxResults": "100"
}).get_iterator()
csvFile = io.open('2015_before_nictr_attack.csv', 'w',encoding='UTF-8')
csvWriter = csv.writer(csvFile)
for item in r:
csvWriter.writerow([item['created_at'],
item["id_str"],
item['user']['screen_name'],
item['text'] if 'text' in item else item])
freqList = {}
def findInRow(row):
print(row)
for elements in row:
if elements.lower() in freqList:
freqList[elements.lower()] = freqList[elements.lower()] + 1
else:
freqList[elements.lower()] = 1
sorted(freqList.items(), key=lambda item: item[1])
for i in freqList:
print(i +":"+ str(freqList[i]))
def startTwitterPremiumApi2():
csv.register_dialect('myDialect',
delimiter = ',',
quoting=csv.QUOTE_ALL,
skipinitialspace=True)
with io.open('2014-2015.csv', 'r', encoding='utf-8') as csvFile:
reader = csv.reader(csvFile, dialect='myDialect')
for row in reader:
print(row[7].split())
#findInRow(row[7].split())
csvFile.close()