From f08c6868d64c2d00ba302653b6b9f22d91562919 Mon Sep 17 00:00:00 2001 From: shillerben Date: Sun, 11 Apr 2021 21:31:01 -0500 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ README.md | 2 ++ app/app.py | 7 +++++++ plugins/data_sources/rss/rss.py | 7 +++++++ 4 files changed, 19 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 app/app.py create mode 100644 plugins/data_sources/rss/rss.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..300eb37 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pyc +__pycache__/ +venv/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..365422b --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# PP-RSS +## A Pluggable Python RSS Server diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..628f1de --- /dev/null +++ b/app/app.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +def main(): + print("Dummy main") + +if __name__ == "__main__": + main() diff --git a/plugins/data_sources/rss/rss.py b/plugins/data_sources/rss/rss.py new file mode 100644 index 0000000..628f1de --- /dev/null +++ b/plugins/data_sources/rss/rss.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +def main(): + print("Dummy main") + +if __name__ == "__main__": + main()