webapi where you can request scheduled rss feed publishing
Go to file
2023-11-05 22:00:27 +01:00
instance timezone and time added to post 2023-10-08 23:44:00 +02:00
migrations start of a sqlitedb 2023-07-19 22:30:33 +02:00
models timezone and time added to post 2023-10-08 23:44:00 +02:00
scheduler ability to upload text files 2023-11-04 17:34:22 +01:00
__init.py__ put posts in database 2023-10-01 21:35:14 +02:00
.gitignore ability to upload text files 2023-11-04 17:34:22 +01:00
app.py ability to upload text files 2023-11-04 17:34:22 +01:00
deploydb.py flake8 linting and other small updates 2023-11-04 12:37:35 +01:00
LICENSE Initial commit 2023-07-18 19:31:58 +02:00
pyproject.toml the smallest swiss knive 2023-07-19 19:46:49 +02:00
README.md Update 'README.md' 2023-11-05 22:00:27 +01:00
requirements.txt wip rss feed generator code 2023-10-02 20:59:47 +02:00
start.py flake8 linting and other small updates 2023-11-04 12:37:35 +01:00
updater.py flake8 linting and other small updates 2023-11-04 12:37:35 +01:00

crunk-scheduler

webapi where you can request scheduled rss feed publishing. part of the crunk suite of software

readme driven development

  • crunk-scheduler should be able to take post request from other applications

    • set the time something should be added to the rss feed.
    • what should be added to the rss feed (now it can do text, md files, images soon?)
    • optional: multiple feeds, specify which feed.
    • handle with Flask (could look into flask api packages)
  • crunk-scheduler should have a simple database (sqlite maybe) where the scheduled posts are stored.

    • store files on disk not in db.
    • use Flask-SQLAlchemy and Flask-Migrate
  • periodically check if there are new things that need to be posted.

    • check db and use Flask-APScheduler
  • generate the rss feed.

    • use feedgenerator
    • serve rss from static folder using Flask Blueprint