Files
AIO_3D_Print_Web_Platform/tmp/test_pq3.py

10 lines
236 B
Python

from app import create_app
from app.routes import get_quality_presets
app = create_app()
with app.app_context():
presets = get_quality_presets()
print("Presets length:", len(presets))
for p in presets[:5]:
print(p)