remove unnecessary methods from twitter provider
This commit is contained in:
parent
bfe3165f45
commit
96a850faf9
1 changed files with 1 additions and 19 deletions
|
@ -3,7 +3,7 @@ Twitter data (uses official twitter archive export)
|
||||||
|
|
||||||
See https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive
|
See https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive
|
||||||
"""
|
"""
|
||||||
from datetime import date, datetime
|
from datetime import datetime
|
||||||
from typing import Union, List, Dict, Set, Optional, Iterator, Any, NamedTuple
|
from typing import Union, List, Dict, Set, Optional, Iterator, Any, NamedTuple
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from functools import lru_cache
|
from functools import lru_cache
|
||||||
|
@ -155,24 +155,6 @@ def likes() -> List[Like]:
|
||||||
return list(ZipExport().likes())
|
return list(ZipExport().likes())
|
||||||
|
|
||||||
|
|
||||||
def predicate(p) -> List[Tweet]:
|
|
||||||
return [t for t in tweets() if p(t)]
|
|
||||||
|
|
||||||
|
|
||||||
def predicate_date(p) -> List[Tweet]: # TODO rename to by_date?
|
|
||||||
return predicate(lambda t: p(t.dt.date()))
|
|
||||||
|
|
||||||
# TODO move these to private tests?
|
|
||||||
Datish = Union[date, str]
|
|
||||||
def tweets_on(*dts: Datish) -> List[Tweet]:
|
|
||||||
from kython import parse_date_new
|
|
||||||
# TODO how to make sure we don't miss on 29 feb?
|
|
||||||
dates = {parse_date_new(d) for d in dts}
|
|
||||||
return predicate_date(lambda d: d in dates)
|
|
||||||
|
|
||||||
on = tweets_on
|
|
||||||
|
|
||||||
|
|
||||||
def test_tweet():
|
def test_tweet():
|
||||||
raw = """
|
raw = """
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue