0
What is the third-party Python modules ?
2 ответов
+ 3
" Beyond the standard library of modules packaged with Python, other developers have written their own ( third-party ) modules to extend Python’s capabilities even further. The primary way to install third-party modules is to use Python’s pip tool. "
Source: https://automatetheboringstuff.com/appendixa/
" A third party module is any code that has been written by a third party (neither you nor the python writers (PSF)).
You can use them to add functionality to your code without having to write it yourself.
Examples include things like requests that simplifies http requests and nose that helps with unit/integration testing.
"
Source: https://stackoverflow.com/questions/33503510/what-are-third-party-modules
+ 2
modules that aren't incluse in the standard python libraries