원클릭으로
flask
Best practices for Flask web development including routing, blueprints, and testing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Best practices for Flask web development including routing, blueprints, and testing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Best practices for building CLI applications with Click including commands, groups, options, and testing.
Best practices for Django web development including models, views, templates, and testing.
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
Best practices for writing and organizing tests with pytest including fixtures, parametrize, and plugins.
Best practices for HTTP client usage with Requests including sessions, error handling, and timeouts.
| name | flask |
| description | Best practices for Flask web development including routing, blueprints, and testing. |
Best practices for Flask web development including routing, blueprints, and testing.
Apply this skill when building Flask web applications or APIs — routing, blueprints, extensions, and testing.
create_app()) to avoid global state and enable testing.config.py with classes like DevelopmentConfig, ProductionConfig.@app.get, @app.post) over generic @app.route with methods=[...].flask.abort() with appropriate HTTP codes rather than returning error responses manually.ext.init_app(app) inside the factory, not at module level.app.test_client() for HTTP-level tests and app.test_request_context() for unit tests.session for the app, function for the client).TESTING=True and use a separate test database.app.run()) in production — use Gunicorn or uWSGI.app object; use g for request-scoped data.SECRET_KEY — load from environment variables.