Python Forum
confusion on importing modules
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
confusion on importing modules
#3
thanks, I get
RuntimeError: <module 'webbrowser' from '/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/webbrowser.py'>
so it seems like the library module is imported. I changed webbrowser to Browser to run this
import unittest

import Browser.src.URL

class test_URL(unittest.TestCase):
	
	def test_init(self):
		test_URL = URL("http://www.example.org/index.html")
		test_URL.print_URL()
		assertEquals(1,1)

	if __name__ == '__main__':
	    unittest.main()
and I get
ModuleNotFoundError: No module named 'Browser'
Reply


Messages In This Thread
confusion on importing modules - by carter187 - Mar-03-2024, 12:27 PM
RE: confusion on importing modules - by Gribouillis - Mar-03-2024, 01:44 PM
RE: confusion on importing modules - by carter187 - Mar-03-2024, 04:05 PM
RE: confusion on importing modules - by Gribouillis - Mar-03-2024, 05:13 PM
RE: confusion on importing modules - by snippsat - Mar-03-2024, 08:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Importing modules from different folders Tomli 3 1,538 Jun-26-2022, 10:44 AM
Last Post: snippsat
  Importing modules issue mp3909 9 3,671 Jun-24-2020, 10:07 PM
Last Post: snippsat
  Importing Custom Modules in Python 3 Flexico 1 2,657 Aug-24-2019, 08:11 PM
Last Post: snippsat
  Trouble importing modules on a new python version snackman_barry 2 2,643 Jul-12-2019, 11:15 AM
Last Post: snackman_barry
  importing modules PiaNa 1 2,029 Jun-24-2019, 12:50 PM
Last Post: ichabod801
  Importing all modules and using it rohitnirantar 2 2,615 Aug-28-2018, 08:15 PM
Last Post: snippsat
  Importing modules SBachar 2 3,129 Apr-06-2018, 09:08 PM
Last Post: snippsat
  Importing modules Pistolpete 2 2,767 Nov-29-2017, 05:24 PM
Last Post: nilamo
  Modules issue, pip3 download modules only to pyhton3.5.2 not the latest 3.6.1 bmohanraj91 6 8,585 May-25-2017, 08:15 AM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020