What are meant by third party libraries in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are meant by third party libraries in python

12th Jul 2020, 6:10 AM
Chikkala Mohan
Chikkala Mohan - avatar
3 Answers
+ 4
Libraries which does not come by default with python are third party libraries.
12th Jul 2020, 6:14 AM
Arsenic
Arsenic - avatar
+ 1
Thanks
12th Jul 2020, 6:23 AM
Chikkala Mohan
Chikkala Mohan - avatar
+ 1
Anyone can write a library and publish it for everyone to use. Most of these third party libraries are open source, so you can even go to their creator and request or propose changes, and bugfixes. The source code of these projects is usually hosted on a public version control server, such as github. You can upload your own library to Pypi (Python Package Index) so that it can be installed via pip and used by any Python developer. https://pypi.org/
12th Jul 2020, 6:52 AM
Tibor Santa
Tibor Santa - avatar