Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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
like image 899
retnuH Avatar asked Apr 11 '18 14:04

retnuH


1 Answers

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}

like image 126
hohlb Avatar answered Nov 18 '22 20:11

hohlb