2015-04-08 13:34:50 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
############################################################
|
|
|
|
# Copyright (c) 2015 Manuel Eduardo Cortéz Vallejo <manuel@manuelcortez.net>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
############################################################
|
2015-09-29 08:38:05 -05:00
|
|
|
from twitter import utils
|
2015-04-08 13:34:50 -05:00
|
|
|
|
|
|
|
def is_long(tweet):
|
2017-07-08 15:42:21 -05:00
|
|
|
if tweet.has_key("quoted_status_id") and tweet["quoted_status_id"] != None:
|
2016-06-27 09:44:36 -05:00
|
|
|
return tweet["quoted_status_id"]
|
|
|
|
return False
|
2015-09-29 08:38:05 -05:00
|
|
|
|
|
|
|
def clear_url(tweet):
|
2016-10-03 22:54:54 -05:00
|
|
|
if tweet.has_key("full_text"):
|
|
|
|
value = "full_text"
|
|
|
|
else:
|
|
|
|
value = "text"
|
|
|
|
urls = utils.find_urls_in_text(tweet[value])
|
2015-10-14 17:07:57 -05:00
|
|
|
try: tweet["message"] = tweet["message"].replace(urls[-1], "")
|
2015-10-02 15:52:08 -05:00
|
|
|
except IndexError: pass
|
2017-11-15 09:50:59 -06:00
|
|
|
try:
|
|
|
|
tweet["entities"]["urls"].remove(tweet["entities"]["urls"][-1])
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2015-09-29 08:38:05 -05:00
|
|
|
return tweet
|