Skip to content

piusdan/sqlalchemy-soft-delete

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Soft Delete Pattern for SQLAlchemy and Flask

This is the code that accompanies my article on soft deletes: http://blog.miguelgrinberg.com/post/implementing-the-soft-delete-pattern-with-flask-and-sqlalchemy.

How to Run

  • Create a virtual environment and activate it (Python 2.7 and Python 3.4+ are both okay)
  • Install the requirements: pip install -r requirements.txt
  • Set the FLASK_APP environment variable: export FLASK_APP=app.py (Linux, OS X) or set FLASK_APP=app.py (Windows)
  • Create the database: flask db upgrade
  • Run the service: flask run

How to Use

This example implements a small API that can be accessed from the command line. The httpie client is installed and you can use it to send requests. Below are some example commands:

To create a new user with name "john":

http POST http://localhost:5000/users name=john

To get the list of users:

http GET http://localhost:5000/users

To get the user with id 1:

http GET http://localhost:5000/users/1

To add a message from the user with id 2:

http POST http://localhost:5000/users/2/messages message=hello

To get the list of messages:

http GET http://localhost:5000/messages

To delete the user with id 3:

http DELETE http://localhost:5000/users/3

About

Implementation of soft deletes for Flask and SQLAlchemy

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.2%
  • Mako 4.8%