unified view for twitter data
This commit is contained in:
parent
56b6ab9aaf
commit
30b6918a8d
3 changed files with 63 additions and 24 deletions
17
my/twitter/all.py
Normal file
17
my/twitter/all.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
"""
|
||||
Unified Twitter data (merged from the archive and periodic updates)
|
||||
"""
|
||||
|
||||
from . import twint
|
||||
from . import archive
|
||||
|
||||
|
||||
def tweets():
|
||||
yield from archive.tweets()
|
||||
yield from twint.tweets()
|
||||
|
||||
|
||||
# TODO not sure, likes vs favoites??
|
||||
def likes():
|
||||
yield from archive.likes()
|
||||
# yield from twint
|
Loading…
Add table
Add a link
Reference in a new issue