Home / File/ factory.py — flask Source File

factory.py — flask Source File

Architecture documentation for factory.py, a python file in the flask codebase. 1 imports, 0 dependents.

File python ApplicationCore AppLifeCycle 1 imports 3 functions

Entity Profile

Dependency Diagram

graph LR
  fc073346_57fa_ff09_3521_00ff70dc9061["factory.py"]
  8c762fc5_c0b6_0d4d_3889_896d80fbf225["flask"]
  fc073346_57fa_ff09_3521_00ff70dc9061 --> 8c762fc5_c0b6_0d4d_3889_896d80fbf225
  style fc073346_57fa_ff09_3521_00ff70dc9061 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

from flask import Flask


def create_app():
    return Flask("app")


def create_app2(foo, bar):
    return Flask("_".join(["app2", foo, bar]))


def no_app():
    pass

Subdomains

Dependencies

  • flask

Frequently Asked Questions

What does factory.py do?
factory.py is a source file in the flask codebase, written in python. It belongs to the ApplicationCore domain, AppLifeCycle subdomain.
What functions are defined in factory.py?
factory.py defines 3 function(s): create_app, create_app2, no_app.
What does factory.py depend on?
factory.py imports 1 module(s): flask.
Where is factory.py in the architecture?
factory.py is located at tests/test_apps/cliapp/factory.py (domain: ApplicationCore, subdomain: AppLifeCycle, directory: tests/test_apps/cliapp).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free