October 2018
Intermediate to advanced
420 pages
10h 26m
English
The structure of the project is the classical structure of a minimal Python package:
/audio-encode-server /audio_encode_server /__init__.py /server.py /encoder.py /script /audio-encode-server /config.sample.json /README.rst /setup.py
The name of the package is audio-encode-server. The name of the package is the name that is used when installing a Python package from pip. In this directory, there is the top-level module of the package: audio_encode_server. The name is the same as the package but with underscores instead of minus characters, because module names cannot contain minus characters in their names. In this directory, there are several Python files, one for each feature of the server. In this first implementation, ...