Estoy usando frasco, sqlalchemy, sqlite y python para mi aplicación. Cuando ejecuto db init para crear la base de datos, quiero que se agregue un conjunto predeterminado de valores a la base de datos. He intentado estas dos cosas para agregar los registros a la tabla. Un método está usando 'evento'.
from sqlalchemy.event import listen
from sqlalchemy import event, DDL
@event.listens_for(studentStatus.__table__, 'after_create')
def insert_initial_values(*args, **kwargs):
db.session.add(studentStatus(status_name='Waiting on admission'))
db.session.add(studentStatus(status_name='Waiting on student'))
db.session.add(studentStatus(status_name='Interaction Initiated'))
db.session.commit()
Cuando corro
python manage_db.py db init,
python manage_db.py db migrate,
python manage_db.py db upgrade
No tuve ningún problema, pero los registros no se están creando.
El otro método que probé es, en los modelos.py que he incluido
record_for_student_status = studentStatus(status_name="Waiting on student")
db.session.add(record_for_student_status)
db.session.commit()
print(record_for_student_status)
El código del modelo de clase:
class StudentStatus(db.Model):
status_id = db.Column(db.Integer,primary_key=True)
status_name = db.Column(db.String)
def __repr__(self):
return f"studentStatus('{self.status_id}','{self.status_name}')"
Cuando ejecuto python manage_db.py db init, recibo un error Student_status, no existe esa tabla.
¿Alguien puede ayudarme a agregar los valores predeterminados a la tabla student_status cuando ejecuto db init?
He intentado con matraz-sembradora también. Instalé la sembradora de matraces y agregué un nuevo archivo llamado seed.py y ejecuté la ejecución de semillas del matraz
My Seeds.py se ve así
class studentStatus(db.Model):
def __init__(self, status_id=None, status_name=None):
self.status_id = db.Column(db.Integer,primary_key=True)
self.status_name = db.Column(db.String,status_name)
def __str__(self):
return "ID=%d, Name=%s" % (self.status_id, self.status_name)
class DemoSeeder(Seeder):
# run() will be called by Flask-Seeder
def run(self):
# Create a new Faker and tell it how to create User objects
faker = Faker(
cls=studentStatus,
init={
"status_id": 1,
"name": "Waiting on Admission"
}
)
# Create 5 users
for user in faker.create(5):
print("Adding user: %s" % user)
self.db.session.add(user)
Ejecuté db init, db migrate y db upgrade. No tuve ningún problema. Cuando ejecuté la ejecución de la semilla del matraz, recibo este error
Error: Could not locate a Flask application. You did not provide the "FLASK_APP" environment variable, and a "wsgi.py" or "app.py" module was not found in the current directory
Lo busqué en Google e intenté exportar FLASK_APP = seeds.py
Then I ran the flask seed run ,I am getting an error ``` error could not import seeds.py```
Please help me in this.
What I need finally is when I do db initialization for the first time some default value have to be added to the database.