Skip to content

Latest commit

 

History

History
39 lines (39 loc) · 712 Bytes

File metadata and controls

39 lines (39 loc) · 712 Bytes

reels-workflow - Code Dependency Graph

graph TD
    N0["README.md"]
    N1["requirements.txt"]
    N2["src/__init__.py"]
    N3["src/downloader.py"]
    N4["src/transcriber.py"]
    N5["src/editor.py"]
    N6["src/uploader.py"]
    N7["src/config.py"]
    N8["src/utils.py"]
    N9["scripts/setup.sh"]
    N10["scripts/run.sh"]
    N11["config/"]
    N12[".env.example"]
    N13[".gitignore"]
    N14["tests/"]
    N0 --> N1
    N0 --> N2
    N2 --> N3
    N2 --> N4
    N2 --> N5
    N2 --> N6
    N3 --> N7
    N4 --> N7
    N5 --> N7
    N6 --> N7
    N3 --> N8
    N4 --> N8
    N5 --> N8
    N6 --> N8
    N0 --> N9
    N0 --> N10
    N0 --> N11
    N0 --> N12
    N0 --> N13
    N2 --> N14
Loading