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

  • SEARCH
  • Home
  • 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 4004080
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:13:46+00:00 2026-05-20T08:13:46+00:00

Sorry, if this question has been asked before. I’ve looked around for quite a

  • 0

Sorry, if this question has been asked before. I’ve looked around for quite a while and I haven’t found a solution.

So I’ve created a class in the file ResourceOpen.py

class ResourceOpen():

    import urllib.request

    def __init__(self, source):
            try:
                # Try to open URL
                page = urllib.request.urlopen(source)
                self.text = page.read().decode("utf8")
            except ValueError:
                # Fail? Print error.
                print ("Woops!  Can't find the URL.")
                self.text = ''

    def getText(self):
        return self.text

I would like to use this class in another program,youTubeCommentReader.py…

import ResourceOpen
import urllib.request

pageToOpen = "http://www.youtube.com"
resource = ResourceOpen.ResourceOpen(pageToOpen)
text = resource.getText()

Whenever I try and run youTubeCommentReader, I get the error:

Traceback               
    <module>    D:\myPythonProgs\youTubeCommentReader.py
    __init__    D:\myPythonProgs\ResourceOpen.py
NameError: global name 'urllib' is not defined

What am I doing wrong? Also, I should note that ResourceOpen.py works fine when I access the class within the same file.

  • 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-05-20T08:13:46+00:00Added an answer on May 20, 2026 at 8:13 am

    Don’t import on the class level, just do:

    import urllib.request
    
    class ResourceOpen():    
    
        def __init__(self, source):
                try:
                    # Try to open URL
                    page = urllib.request.urlopen(source)
                    self.text = page.read().decode("utf8")
                except ValueError:
                    # Fail? Print error.
                    print ("Woops!  Can't find the URL.")
                    self.text = ''
    
        def getText(self):
            return self.text
    

    In the other script:

    import ResourceOpen
    s = ResourceOpen.ResourceOpen('http://google.com')
    print(s.getText())
    

    In your case the module is imported just fine, but only added to the classes namespace. You always want imports on the global level.

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

Sidebar

Related Questions

Sorry if this question has been asked 100 times before, unfortunately, i haven't found
Sorry if this question has been asked before. On my search through SO I
[I'm not sure if this question has been asked, though I've looked around a
sorry if this question has been asked before, I searched but wasn't sure on
Sorry I know this question has probably been asked before, but do you know
So, if this question has been asked before, I'm sorry. I'm not exactly sure
I'm sorry if this question has been asked before, but I can't seem to
I'm new to this, so sorry if my question has been asked before. I
Sorry if this has been asked before, but I couldn't find a solution to
Sorry if this has been asked before or it's a really dumb question, but

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.