Home / Function/ list_all_removable() — fastapi Function Reference

list_all_removable() — fastapi Function Reference

Architecture documentation for the list_all_removable() function in translate.py from the fastapi codebase.

Function python FastAPI Routing calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  675ccbcc_eae2_1ff6_9bc0_6015347694a3["list_all_removable()"]
  6dda5e35_b655_8af3_cd89_8c1584a092c4["translate.py"]
  675ccbcc_eae2_1ff6_9bc0_6015347694a3 -->|defined in| 6dda5e35_b655_8af3_cd89_8c1584a092c4
  b6f80e2e_9d11_6aee_acc7_2e6d1590c746["remove_all_removable()"]
  b6f80e2e_9d11_6aee_acc7_2e6d1590c746 -->|calls| 675ccbcc_eae2_1ff6_9bc0_6015347694a3
  f52c193a_f0e3_ecf9_398f_43ce6d3d5563["get_langs()"]
  675ccbcc_eae2_1ff6_9bc0_6015347694a3 -->|calls| f52c193a_f0e3_ecf9_398f_43ce6d3d5563
  1029873d_24b6_13bb_abff_e1b1e042ff39["list_removable()"]
  675ccbcc_eae2_1ff6_9bc0_6015347694a3 -->|calls| 1029873d_24b6_13bb_abff_e1b1e042ff39
  style 675ccbcc_eae2_1ff6_9bc0_6015347694a3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

scripts/translate.py lines 284–293

def list_all_removable() -> list[Path]:
    all_removable_paths: list[Path] = []
    langs = get_langs()
    for lang in langs:
        if lang == "en":
            continue
        removable_paths = list_removable(lang)
        all_removable_paths.extend(removable_paths)
    print(all_removable_paths)
    return all_removable_paths

Domain

Subdomains

Frequently Asked Questions

What does list_all_removable() do?
list_all_removable() is a function in the fastapi codebase, defined in scripts/translate.py.
Where is list_all_removable() defined?
list_all_removable() is defined in scripts/translate.py at line 284.
What does list_all_removable() call?
list_all_removable() calls 2 function(s): get_langs, list_removable.
What calls list_all_removable()?
list_all_removable() is called by 1 function(s): remove_all_removable.

Analyze Your Own Codebase

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

Try Supermodel Free