如何在pynecone中导入一个类?

huangapple go评论58阅读模式
英文:

How to import a class in pynecone?

问题

我正在尝试在我的Pynecone项目中的另一个Python类中导入一个类。它给我一个错误。

import Constants ---> 给出错误

> ModuleNotFoundError: No module named 'Constants'

编辑:文件夹结构:

如何在pynecone中导入一个类?

从helloworld.py中,我正在尝试导入Constants。
如何完成这个操作?

英文:

I'm trying to import a class in another python class in my pynecone project. It's giving me error.

import Constants ---> Giving error 

> ModuleNotFoundError: No module named 'Constants'

Edit: Folder structure:

如何在pynecone中导入一个类?

From helloworld.py, I'm trying to import Constants.
How can this be done?

答案1

得分: 3

被库内部引入的方式是

from pynecone import constants
英文:

The way it's being imported within the library is

from pynecone import constants

huangapple
  • 本文由 发表于 2023年6月12日 19:14:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/76456115.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定