Repo for Random From Follows and Random - Only Posts.
1import yaml
2
3with open('./config.yml', 'r') as file:
4 config_data: dict[str] = yaml.safe_load(file)
5HANDLE: str = config_data['handle']
6PASSWORD: str = config_data['password']
7HOSTNAME: str = config_data['hostname']
8DB_PASSWORD: str = config_data['db_password']
9FEEDS: dict[str, dict[str, str]] = config_data['feeds']