U kunt geoalchemy2 gebruiken whis is een uitbreiding op sqlalchemy en kan ook worden gebruikt met flask-sqlalchemy.
from sqlalchemy import Column
from geoalchemy2 import Geometry
# and import others
class Shop(db.Model):
# other fields
coordinates = Column(Geometry('POINT'))