ModuleNotFoundError:pip install Office365-REST-Python-Client 后没有名为“tests”的模块

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

我安装了 Office365-REST-Python-Client 以使用 Python 访问 SharePoint。我想跑步

from office365.sharepoint.webs.web import Web

但是我收到错误消息“ModuleNotFoundError:没有名为“tests”的模块。”我以为 Office365-REST-Python-Client 带有“测试”,但显然不是,所以我尝试运行

pip install tests

但这仍然没有帮助。如何在 Python 中使用“测试”?谢谢你。

要运行的代码

python sharepoint office365 office365api sharepoint-api
1个回答
0
投票

我想跑步

from tests import test_user_credentials, test_team_site_url

而不是

from office365.sharepoint.webs.web import Web

这是我原来的问题中所说的。抱歉造成混乱 .

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