Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8838601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:02:34+00:00 2026-06-14T10:02:34+00:00

I need to have an import in __init__() method (because i need to run

  • 0

I need to have an import in __init__() method (because i need to run that import only when i instance the class).

But i cannot see that import outside __init__(), is the scope limited to__init__? how to do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:02:35+00:00Added an answer on June 14, 2026 at 10:02 am

    Imported names are bound to the current scope, so an import inside a function binds to a local name only.

    If you absolutely have to import something in __init__ that then needs to be globally avaliable, mark the imported name as global first:

    >>> def foo():
    ...     global sys
    ...     import sys
    ... 
    >>> sys
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    NameError: name 'sys' is not defined
    >>> foo()
    >>> sys
    <module 'sys' (built-in)>
    

    but this usually leads to strange and wonderfully difficult to locate bugs. Don’t do that, just make your imports at module scope instead.

    If you need the imported name within other class methods, you could also assign the imported name to a instance variable:

    class Foo(object):
        def __init__(self):
            import os
            self.join = os.path.join
    

    but again, that’s not the best practice to use.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Excel file that I need to import into a (new) Oracle
I have created the class like below. But Override method is not called. Is
I have a method in my dataaccess layer that processes a file import. Such
I have a class that need to make some magic with every operator, like
So I have this need to import (currently) about 15k products. Each product has
I have a database which I regularly need to import large amounts of data
I have few text and excel file, from which I need to import data
I have need for a function pointer that takes two arguments and returns a
I need to have custom checkboxes which wasn't that tricky. I made checkbox_selector to
I have a Java application and a NSIS script . I need to run

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.