Best Flask open-source libraries and packages

Octopus

Flasky is a social blogging application made with love with Flask.You can register,login,post and like comments
Updated 1 year ago

FlaskyBlog

FlaskyBlog is a social blogging web application made with Flask. It allows users to register,login and more like posting and liking

Author

Nathan Kimutai[(https://github.com/aitumik)]

Installation

If you have a linux distro then you would setup this project by following the below instructions.

  1. Clone the repository to your local machine
$ git clone https://github.com/aitumik/Flasky
  1. Change the working directory to the cloned application
cd Flasky
  1. Install all the requirements
pip3 install -r requirements.txt

Export the environment variables

Export the following envrironment variables for confirmation emails to be sent

export MAIL_ADMIN=<YOUR ADMIN MAIL>
export MAIL_SENDER=<YOUR MAIL SENDER>
export MAIL_USERNAME=<YOUR MAIL USERNAME>
export MAIL_PASSWORD=<YOUR MAIL PASSWORD>