All Projects → toddbirchard → Flasklogin Tutorial

toddbirchard / Flasklogin Tutorial

👨‍💻 🔑 Tutorial to accompany corresponding post on hackersandslackers.com

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Labels

Projects that are alternatives of or similar to Flasklogin Tutorial

Pyflask 2k18
A workshop organised by ACM VIT every year, during Gravitas (VIT University, Tech Fest), Having sessions on python programming and website creation using flask.
Stars: ✭ 99 (-6.6%)
Mutual labels:  flask
Mdwiki
markdown wiki by python
Stars: ✭ 102 (-3.77%)
Mutual labels:  flask
Hiitpi
A workout trainer Dash/Flask app that helps track your HIIT workouts by analyzing real-time video streaming from your sweet Pi using machine learning and Edge TPU..
Stars: ✭ 106 (+0%)
Mutual labels:  flask
Votr
🌟 A polling application built with Flask and React
Stars: ✭ 100 (-5.66%)
Mutual labels:  flask
Grest
Build REST APIs with Neo4j and Flask, as quickly as possible!
Stars: ✭ 102 (-3.77%)
Mutual labels:  flask
Multivisor
Centralized supervisor WebUI and CLI
Stars: ✭ 104 (-1.89%)
Mutual labels:  flask
Booklibrary
📚Simple Book library application written on flask with SQLite database.
Stars: ✭ 98 (-7.55%)
Mutual labels:  flask
Awesome Flask
A curated list of awesome Flask resources and plugins
Stars: ✭ 10,295 (+9612.26%)
Mutual labels:  flask
Weeklyreport
基于Flask的开源周报系统,快速docker部署
Stars: ✭ 102 (-3.77%)
Mutual labels:  flask
Indian Paper Currency Prediction
Source code of Indian Paper Currency Prediction 🔥
Stars: ✭ 106 (+0%)
Mutual labels:  flask
Betanin
beets based mitm of your torrent client and music player
Stars: ✭ 101 (-4.72%)
Mutual labels:  flask
Stock Market Prediction Web App Using Machine Learning And Sentiment Analysis
Stock Market Prediction Web App based on Machine Learning and Sentiment Analysis of Tweets (API keys included in code). The front end of the Web App is based on Flask and Wordpress. The App forecasts stock prices of the next seven days for any given stock under NASDAQ or NSE as input by the user. Predictions are made using three algorithms: ARIMA, LSTM, Linear Regression. The Web App combines the predicted prices of the next seven days with the sentiment analysis of tweets to give recommendation whether the price is going to rise or fall
Stars: ✭ 101 (-4.72%)
Mutual labels:  flask
React Redux Flask
Boilerplate application for a Python/Flask JWT Backend and a Javascript/React/Redux Front-End with Material UI.
Stars: ✭ 1,431 (+1250%)
Mutual labels:  flask
Flask bestpractices
Flask最佳实践
Stars: ✭ 100 (-5.66%)
Mutual labels:  flask
Face2data
Face2Data: Extract meaningful information from a person face in less than a second. Powered by Keras and Flask.
Stars: ✭ 107 (+0.94%)
Mutual labels:  flask
Leetcode Country Ranking
Find Leetcode ranking by country, username.
Stars: ✭ 98 (-7.55%)
Mutual labels:  flask
Imagegonord
A tool that can convert your rgb images to nordtheme palette
Stars: ✭ 105 (-0.94%)
Mutual labels:  flask
Superset
Apache Superset is a Data Visualization and Data Exploration Platform
Stars: ✭ 42,634 (+40120.75%)
Mutual labels:  flask
Flask Oauthlib
YOU SHOULD USE https://github.com/lepture/authlib
Stars: ✭ 1,429 (+1248.11%)
Mutual labels:  flask
Get Started Python
A Python application and tutorial that use Flask framework to provide a REST API to receive requests from the UI. The API then persists the data to a Cloudant database.
Stars: ✭ 104 (-1.89%)
Mutual labels:  flask

Flask-Login Tutorial

Python Flask Flask-Login Flask-Assets Flask-WTF Flask-SQLAlchemy GitHub Last Commit GitHub Issues GitHub Stars GitHub Forks

Add user authentication to your Flask app. Tutorial found here: https://hackersandslackers.com/flask-login-user-authentication/

Flask Login

Installation

Installation via requirements.txt:

$ git clone https://github.com/hackersandslackers/flasklogin-tutorial.git
$ cd flasklogin-tutorial
$ python3 -m venv myenv
$ source myenv/bin/activate
$ pip3 install -r requirements.txt
$ flask run

Installation via Pipenv:

$ git clone https://github.com/hackersandslackers/flasklogin-tutorial.git
$ cd flasklogin-tutorial
$ pipenv shell
$ pipenv update
$ flask run

Installation via Poetry:

$ git clone https://github.com/hackersandslackers/flasklogin-tutorial.git
$ cd flasklogin-tutorial
$ poetry shell
$ poetry update
$ poetry run

Usage

Replace the values in .env.example with your values and rename this file to .env:

  • FLASK_APP: Entry point of your application (should be wsgi.py).
  • FLASK_ENV: The environment to run your app in (either development or production).
  • SECRET_KEY: Randomly generated string of characters used to encrypt your app's data.
  • SQLALCHEMY_DATABASE_URI: Connection URI of a SQL database.
  • LESS_BIN: Path to your local LESS installation via which lessc (optional for static assets).
  • ASSETS_DEBUG: Debug asset creation and bundling in development (optional).
  • LESS_RUN_IN_DEBUG: Debug LESS while in development (optional).
  • COMPRESSOR_DEBUG: Debug asset compression while in development (optional).

Remember never to commit secrets saved in .env files to Github.


Hackers and Slackers tutorials are free of charge. If you found this tutorial helpful, a small donation would be greatly appreciated to keep us in business. All proceeds go towards coffee, and all coffee goes towards more content.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].