0

我正在尝试将 Notion API 用于一些自动化流程,但在导入包时遇到了一些问题,而且我已经尝试了很多导入。我有这个代码:

from notion_database.database import Database
my_token = "my_token"
D = Database(integrations_token=my_token )
print(D.list_databases(page_size=100))

要运行此代码,我进行了以下导入:

pip install notion-database
pip install notion-py
pip install "notion==0.0.25"
pip install notion

所有这些都已正确安装,我的脚本名称没有“notion.py”:D

但是当我运行我的代码时,我得到了:

from notion_database.database import Database
ModuleNotFoundError: No module named 'notion_database'

有谁知道我做错了什么?

谢谢您的帮助!

4

1 回答 1

0

看起来你的代码很好。更有可能的是,您的 python 和 pip 指向两个不同的 python 版本。

我建议您创建一个环境(virtualenv 或 pyenv)并使用以下命令重新安装软件包:

sudo python -m pip install notion-database
sudo python -m pip install notion-py
sudo python -m pip install "notion==0.0.25"
sudo python -m pip install notion
于 2021-09-04T10:30:40.410 回答