Skip to content
Snippets Groups Projects
Commit 9ceba722 authored by Alessandro Elias's avatar Alessandro Elias
Browse files

Fix dates

parent ab0c1cc6
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
import sys
import jsonpickle
import os
......@@ -23,8 +25,8 @@ searchQuery = '((cota OR cotas OR universidade OR universidades) AND (racial OR
# sugiro tirar o sincedate; assim fica menos feito o código. Eu também lembro de dar uns paus; e de qq forma
# a API só volta cerca de uma semana no passado mesmo
sincedate = "2018-11-20"
untildate = "2018-11-21"
sincedate = "2019-05-15"
untildate = "2019-05-16"
maxTweets = 10000000
# Testar colocar esse limite. Só para eles não destruirem a cahve
......@@ -41,7 +43,8 @@ sinceId = None
# If results only below a specific ID are, set max_id to that ID.
# else default to no upper limit, start from the most recent tweet matching the search query.
max_id = -1L
# Python3 has 9223372036854775807 as max number
max_id = sys.maxsize
#max_id = 1045463072670920704
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment