Python 命名空间“导入 X"和“从 X 导入"

Python namespace #39;import X#39; and #39;from X import#39;(Python 命名空间“导入 X和“从 X 导入)
本文介绍了Python 命名空间“导入 X"和“从 X 导入"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

以下代码有效:

from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()

但是,以下内容:

import sqlalchemy
Base = sqlalchemy.ext.declarative.declarative_base()

抛出:模块sqlalchemy"没有属性ext".怎么可能?

推荐答案

sqlalchemy 是一个包,导入一个包并不会自动加载它的子模块.当你这样做时

sqlalchemy is a package, and importing a package doesn't automatically load its submodules. When you do

import sqlalchemy
Base = sqlalchemy.ext.declarative.declarative_base()

导入系统不会加载 sqlalchemy.ext 子模块,因为您没有要求它.

The import system doesn't load the sqlalchemy.ext submodule, because you didn't ask for it.

当你这样做时

from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()

您已明确要求加载 sqlalchemy.extsqlalchemy.ext.declarative,因此访问有效.

You've explicitly requested that sqlalchemy.ext and sqlalchemy.ext.declarative get loaded, so the access works.

你也可以这样做

import sqlalchemy.ext.declarative
Base = sqlalchemy.ext.declarative.declarative_base()

这也将加载 sqlalchemy.extsqlalchemy.ext.declarative.

有些包会在 __init__.py 中自动加载其子模块,因此您不必显式导入子模块.不过,这不是您应该依赖的东西.

Some packages automatically load their submodules inside their __init__.py, so you don't have to import submodules explicitly. This isn't something you should rely on, though.

这篇关于Python 命名空间“导入 X"和“从 X 导入"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)