minor requirements updates
This commit is contained in:
parent
0585cc4a89
commit
5ef638694e
4 changed files with 10 additions and 3 deletions
|
@ -3,6 +3,7 @@ Location data from Google Takeout
|
||||||
"""
|
"""
|
||||||
REQUIRES = [
|
REQUIRES = [
|
||||||
'geopy', # checking that coordinates are valid
|
'geopy', # checking that coordinates are valid
|
||||||
|
'ijson',
|
||||||
]
|
]
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
"""
|
"""
|
||||||
[[https://play.google.com/store/apps/details?id=io.github.hidroh.materialistic][Materialistic]] app for Hackernews
|
[[https://play.google.com/store/apps/details?id=io.github.hidroh.materialistic][Materialistic]] app for Hackernews
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
REQUIRES = ['dataset']
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from typing import Any, Dict, Iterator, NamedTuple
|
from typing import Any, Dict, Iterator, NamedTuple
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,10 @@
|
||||||
[[https://rememberthemilk.com][Remember The Milk]] tasks and notes
|
[[https://rememberthemilk.com][Remember The Milk]] tasks and notes
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# pip3 install icalendar
|
REQUIRES = [
|
||||||
|
'icalendar',
|
||||||
|
]
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Dict, List, Optional, Iterator
|
from typing import Dict, List, Optional, Iterator
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
"""
|
"""
|
||||||
Twitter data (tweets and favorites). Uses [[https://github.com/twintproject/twint][Twint]] data export.
|
Twitter data (tweets and favorites). Uses [[https://github.com/twintproject/twint][Twint]] data export.
|
||||||
|
|
||||||
Requirements: =pip3 install --user dataset=
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
REQUIRES = ['dataset']
|
||||||
|
|
||||||
from ..core.common import Paths
|
from ..core.common import Paths
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from my.config import twint as user_config
|
from my.config import twint as user_config
|
||||||
|
|
Loading…
Add table
Reference in a new issue