14 lines
388 B
Python
14 lines
388 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
import sys, os
|
|
sys.path.insert(0, os.path.join(os.getcwd(), 'app'))
|
|
from app import create_app
|
|
from app.models import User
|
|
app = create_app()
|
|
with app.app_context():
|
|
users = User.query.all()
|
|
print(f'總用戶數: {len(users)}')
|
|
for user in users:
|
|
print(f'ID: {user.id}, 用戶名: {user.username}, Email: {user.email}')
|
|
|