About 2,760,000 results
Open links in new tab
  1. python - `from ... import` vs `import .` - Stack Overflow

    Feb 25, 2012 · I'm wondering if there's any difference between the code fragment from urllib import request and the fragment import urllib.request or if they are interchangeable. If they are …

  2. How to use the __import__ function to import a name from a ...

    Mar 21, 2012 · How to use python's __import__() function properly? There are two kinds of uses: direct importing a hook to alter import behavior For the most part, you don't really need to do either. For user …

  3. How do I import other Python files? - Stack Overflow

    How do I import files in Python? I want to import: a file (e.g. file.py) a folder a file dynamically at runtime, based on user input one specific part of a file (e.g. a single function)

  4. ImportError: cannot import name 'RetrievalQA' from 'langchain ...

    Nov 9, 2025 · I’m trying to use LangChain in my Python project. My current retriever.py contains: from langchain.chains import RetrievalQA But when I run my code, I get: ImportError: cannot import name …

  5. ModuleNotFoundError while importing moviepy.editor

    Dec 16, 2024 · I'm trying to work with VideoFileClip and vfx functions from the Moviepy library but my interpreter keeps throwing a 'ModuleNotFoundError: No module named 'moviepy.editor''. I've installed …

  6. javascript - import, exportがエラーになる - スタック・オーバーフロー

    Dec 14, 2017 · import, exportを使用したいのですが、エラーになってしまいます。 Uncaught SyntaxError: Unexpected identifier どこに問題があるのでしょうか?

  7. How to import a Python class that is in a directory above?

    Jun 28, 2009 · I want to inherit from a class in a file that lies in a directory above the current one. Is it possible to relatively import that file?

  8. javascript - @importするときの@の意味 - スタック・オーバーフロー

    $ vue init webpack webpack で import のショートカット (エイリアス) を設定するには、 Resolve というオプションを使用します。 このオプションは、おそらく webpack.base.conf.js の中にあります。 …

  9. python - ImportError: cannot import name - Stack Overflow

    from app import app This is not permitted in Python. See Circular import dependency in Python for more info. In short, the solution are either gather everything in one big file delay one of the import using …

  10. python - importするときに使うドットはどういう意味ですか ...

    Mar 15, 2020 · from .module3 import ClassY 相対 import はこのようにすぐそばにあるモジュールを手軽に import したいというときに便利です。 一方で相対 import はディレクトリ構造に依存するため …