We need to review which libraries are imported. In many cases a lot of libraries are not needed, and importing them: 1) will raise warnings, 2) will take time making execution of the services slow.
Remember this is going to run as a dockerized service, meaning that we should try to accelerate execution as much as possible. For this, we need to import only what is actually needed. This can be done in the main after argument parsing.
We need to review which libraries are imported. In many cases a lot of libraries are not needed, and importing them: 1) will raise warnings, 2) will take time making execution of the services slow.
Remember this is going to run as a dockerized service, meaning that we should try to accelerate execution as much as possible. For this, we need to import only what is actually needed. This can be done in the main after argument parsing.