Migrate to python (#265)

* Add initial python migration

* Add pylint

* Add pre-commit

* Add Dockerfile

* Add expression matching

* Use shelve to store previous matches

* Add notifications

* Calculate post age

* Update README.md
This commit is contained in:
Dave Gallant
2023-02-20 23:23:29 -05:00
committed by GitHub
parent 4dbb9f97e8
commit 9ba64a3de5
33 changed files with 1938 additions and 2121 deletions

19
rfd_notify/config.py Normal file
View File

@@ -0,0 +1,19 @@
import yaml
from loguru import logger
class Config:
def __init__(self, expressions):
self.expressions = expressions
def __repr__(self):
return f"Config(expressions={self.expressions})"
def load_yaml_file(filename: str) -> Config:
with open(filename, "r", encoding="utf-8") as file:
try:
data = yaml.safe_load(file)
except yaml.YAMLError as err:
logger.error(f"Error loading config file: {err}")
return Config(**data)