'Does anyone have the "Documentation URL"s in PyCharm for the following libraries:
I'm a fan of the "quick documentation" feature of PyCharm & other Jetbrains IDEs, but it needs to know the specific "Documentation URL" for each library, that gets set under Preferences > Tools > Python External Documentation
settings.
I was wondering if anybody has worked it out for any of the following libraries:
- Tensorflow
- PyTorch
- Matplotlib
- Seaborn
- Pandas
Solution 1:[1]
These work for me (using PyCharm 2018.2.4):
Matplotlib
Module Name: matplotlib
URL/Path Pattern: https://matplotlib.org/api/_as_gen/{module.name}.{element.name}.html#{module.name}.{element.name}
Pandas
Module Name: pandas
URL/Path Pattern: https://pandas.pydata.org/pandas-docs/stable/reference/api/{element.qname}.html#{element.qname}
TensorFlow
(untested)
Module Name: tensorflow
URL/Path Pattern: https://www.tensorflow.org/api_docs/python/tf/{element.name}
Seaborn
Module Name: seaborn
URL/Path Pattern: https://seaborn.pydata.org/generated/{module.name}.{element.name}.html#{module.name}.{element.name}
scikit-learn
Module Name: sklearn
URL/Path Pattern: https://scikit-learn.org/stable/modules/generated/{element.qname}.html#{element.qname}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Amnon |