22 lines
430 B
Python
22 lines
430 B
Python
"""
|
|
Unified Twitter data (merged from the archive and periodic updates)
|
|
"""
|
|
|
|
# NOTE: you can comment out the sources you don't need
|
|
from . import twint, archive
|
|
|
|
from .common import merge_tweets
|
|
|
|
def tweets():
|
|
yield from merge_tweets(
|
|
twint .tweets(),
|
|
archive.tweets(),
|
|
)
|
|
|
|
from .common import merge_tweets
|
|
|
|
def likes():
|
|
yield from merge_tweets(
|
|
twint .likes(),
|
|
archive.likes(),
|
|
)
|