Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 21, 2020 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/c462ad0f80d9a1930716a7bd7e55e686 to your computer and use it in GitHub Desktop.
Save r-ryantm/c462ad0f80d9a1930716a7bd7e55e686 to your computer and use it in GitHub Desktop.
/nix/store/9ys04ppx7xkagfcw1dnsplms03zfd4g0-python3.7-gtts-2.2.1
├── bin
│   └── gtts-cli
├── lib
│   └── python3.7
│   └── site-packages
│   ├── gtts
│   │   ├── cli.py
│   │   ├── __init__.py
│   │   ├── lang.py
│   │   ├── __pycache__
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── lang.cpython-37.pyc
│   │   │   ├── tts.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── version.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_cli.cpython-37.pyc
│   │   │   │   ├── test_lang.cpython-37.pyc
│   │   │   │   ├── test_tts.cpython-37.pyc
│   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   ├── test_cli.py
│   │   │   ├── test_lang.py
│   │   │   ├── test_tts.py
│   │   │   └── test_utils.py
│   │   ├── tokenizer
│   │   │   ├── core.py
│   │   │   ├── __init__.py
│   │   │   ├── pre_processors.py
│   │   │   ├── __pycache__
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── pre_processors.cpython-37.pyc
│   │   │   │   ├── symbols.cpython-37.pyc
│   │   │   │   └── tokenizer_cases.cpython-37.pyc
│   │   │   ├── symbols.py
│   │   │   └── tokenizer_cases.py
│   │   ├── tts.py
│   │   ├── utils.py
│   │   └── version.py
│   └── gTTS-2.2.1.dist-info
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
12 directories, 43 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment