All Projects → hackersandslackers → Flask Sqlalchemy Tutorial

hackersandslackers / Flask Sqlalchemy Tutorial

Licence: mit
🐍 ℹ️ Create and manage data in your Flask app via a SQL database.

Programming Languages

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

Projects that are alternatives of or similar to Flask Sqlalchemy Tutorial

Flask Session Tutorial
💾 🙇 Example Flask project for implementing Flask-Session with Redis.
Stars: ✭ 69 (-57.41%)
Mutual labels:  flask, tutorial, tutorials
Deploying Flask To Heroku
Deploying a Flask App To Heroku Tutorial
Stars: ✭ 81 (-50%)
Mutual labels:  flask, tutorial
Flask Tutorial
A tutorial to build your first flask application
Stars: ✭ 58 (-64.2%)
Mutual labels:  flask, tutorial
Pharo Wiki
Wiki related to the Pharo programming language and environment.
Stars: ✭ 161 (-0.62%)
Mutual labels:  tutorial, tutorials
Python Beginner Programming Exercises
Practice your Python programming skills with this interactive and auto-graded set of exercises.
Stars: ✭ 47 (-70.99%)
Mutual labels:  tutorial, tutorials
Eve Building Restful Mongodb Backed Apis Course
Course materials and handouts for EVE: Building RESTful MongoDB-backed APIs course
Stars: ✭ 53 (-67.28%)
Mutual labels:  flask, tutorial
Flask Tutorial
这个项目已经很久很久了, 不推荐看, 不过倒是可以进群叨逼叨一下. 🚗 交流群:630398887
Stars: ✭ 91 (-43.83%)
Mutual labels:  flask, tutorial
Awesome Android Things
A curated list of awesome android things tutorials, libraries and much more at one place
Stars: ✭ 883 (+445.06%)
Mutual labels:  tutorial, tutorials
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 (-35.8%)
Mutual labels:  flask, tutorial
30 Days Of Python
Learn Python for the next 30 (or so) Days.
Stars: ✭ 1,748 (+979.01%)
Mutual labels:  flask, tutorial
Flask Blueprint Tutorial
📘 📦 Structure your Flask apps in a scalable and intelligent way using Blueprints.
Stars: ✭ 162 (+0%)
Mutual labels:  flask, tutorial
Tortilla
The Framework for tutorials
Stars: ✭ 43 (-73.46%)
Mutual labels:  tutorial, tutorials
Opencv Tutorials
Tutorials for learning OpenCV in Python from Scratch
Stars: ✭ 36 (-77.78%)
Mutual labels:  tutorial, tutorials
Introductiontovulkan
Source code examples for "API without Secrets: Introduction to Vulkan" tutorial
Stars: ✭ 972 (+500%)
Mutual labels:  tutorial, tutorials
Norrisbot
a Slack bot that kicks asses (roundhouse-kicks to be accurate...)
Stars: ✭ 134 (-17.28%)
Mutual labels:  tutorial, tutorials
Flask Wtform Tutorial
📝😎Tutorial to implement forms in your Flask app.
Stars: ✭ 84 (-48.15%)
Mutual labels:  flask, tutorial
Python Tutorial
A Python 3 programming tutorial for beginners.
Stars: ✭ 647 (+299.38%)
Mutual labels:  tutorial, tutorials
Haxejs
Documentation about using JavaScript with Haxe
Stars: ✭ 25 (-84.57%)
Mutual labels:  tutorial, tutorials
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-40.74%)
Mutual labels:  tutorial, tutorials
Git Cheats
Git Cheats - Interactive Cheatsheet For Git Commands
Stars: ✭ 124 (-23.46%)
Mutual labels:  tutorial, tutorials

Flask-SQLAlchemy Tutorial

Python Flask Flask-SQLAlchemy GitHub Last Commit GitHub Issues GitHub Stars GitHub Forks

Flask-SQLAlchemy Tutorial

Connect your Flask app to a database using Flask-SQLAlchemy.

Getting Started

Get set up locally in two steps:

Environment Variables

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 in which to run your application; either development or production.
  • SECRET_KEY: Randomly generated string of characters used to encrypt your app's data.
  • SQLALCHEMY_DATABASE_URI: SQLAlchemy connection URI to a SQL database.

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

Installation

Get up and running with make deploy:

$ git clone https://github.com/hackersandslackers/flask-sqlalchemy-tutorial.git
$ cd flask-sqlalchemy-tutorial
$ make deploy

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].