是否有人在PyCharm中有以下库的“Documentation URL”:

2024-06-01 02:27:45 发布

您现在位置:Python中文网/ 问答频道 /正文

我很喜欢PyCharm&otherjetbrains IDEs的“快速文档”功能,但它需要知道每个库的具体“文档URL”,它在Preferences > Tools > Python External Documentation设置下设置。在

我想知道是否有人为以下任何一个图书馆解决过这个问题:

  • 张量流
  • 火把
  • Matplotlib库
  • 海生的
  • 熊猫

Tags: 文档功能url图书馆matplotlibdocumentation火把tools
1条回答
网友
1楼 · 发布于 2024-06-01 02:27:45

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

Matplotlib

模块名:^{}

URL/路径模式:https://matplotlib.org/api/_as_gen/{module.name}.{element.name}.html#{module.name}.{element.name}

熊猫

模块名:^{}

URL/路径模式:https://pandas.pydata.org/pandas-docs/stable/reference/api/{element.qname}.html#{element.qname}

张量流

(未经测试)

模块名:^{}

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}

相关问题 更多 >