是否有人在 PyCharm 中拥有以下库的“文档 URL”:

问题描述 投票:0回答:2

我是 PyCharm 和其他 Jetbrains IDE 的“快速文档”功能的粉丝,但它需要知道每个库的特定“文档 URL”,该 URL 在

Preferences > Tools > Python External Documentation
设置下设置。

我想知道是否有人为以下任何库解决了这个问题:

  • 张量流
  • 火炬
  • Matplotlib
  • 海运
  • 熊猫
python pycharm code-documentation
2个回答
14
投票

这些对我有用(使用 PyCharm 2018.2.4):

Matplotlib

模块名称:

matplotlib

URL/路径模式:

https://matplotlib.org/api/_as_gen/{module.name}.{element.name}.html#{module.name}.{element.name}

熊猫

模块名称:

pandas

URL/路径模式:

https://pandas.pydata.org/pandas-docs/stable/reference/api/{element.qname}.html#{element.qname}

张量流

(未经测试)

模块名称:

tensorflow

URL/路径模式:

https://www.tensorflow.org/api_docs/python/tf/{element.name}

海运

模块名称:

seaborn

URL/路径模式:

https://seaborn.pydata.org/generated/{module.name}.{element.name}.html#{module.name}.{element.name}

scikit-学习

模块名称:sklearn

URL/路径模式:

https://scikit-learn.org/stable/modules/generated/{element.qname}.html#{element.qname}


1
投票

我做了一个网站来做这个,它应该比 URL 模式方法更好用。 https://github.com/guoci/external_documentation_redirect

© www.soinside.com 2019 - 2024. All rights reserved.