initial commit

This commit is contained in:
Hellow
2024-02-08 23:12:22 +01:00
commit 22e49aa83c
6 changed files with 337 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from pathlib import Path
from config_path import ConfigPath
import configparser
class PublishMeetups:
def __init__(self):
self.config_file: Path = Path(ConfigPath("publish-meetups", "hzl", ".ini").saveFilePath(mkdir=True))
self.config = configparser.ConfigParser()
self.config["DEFAULT"] = {
}
print(self.config_file)
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
pass

View File

@@ -0,0 +1,6 @@
from . import PublishMeetups
def cli():
with PublishMeetups() as p:
print(p)