minor requirements updates

This commit is contained in:
Dima Gerasimov 2021-02-25 19:38:56 +00:00 committed by karlicoss
parent 0585cc4a89
commit 5ef638694e
4 changed files with 10 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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