├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── appicon.png ├── db.py ├── db.sqlite ├── feed.ico ├── gui.py ├── routes.py ├── static ├── css │ ├── bootstrap.min.css │ └── styles.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── ajax-loader.gif │ └── icon-48.png └── js │ ├── bootstrap.js │ └── jquery-1.11.0.min.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | dist 4 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/app.py -------------------------------------------------------------------------------- /appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/appicon.png -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/db.py -------------------------------------------------------------------------------- /db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/db.sqlite -------------------------------------------------------------------------------- /feed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/feed.ico -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/gui.py -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/routes.py -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /static/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/images/icon-48.png -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/static/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoqadam/PyFladesk-rss-reader/HEAD/templates/index.html --------------------------------------------------------------------------------