Python Forum
importing same python library in multiple custom module
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
importing same python library in multiple custom module
#5
I don't think this is a concern. As a test I import PySide2 which is a fairly large package
import PySide2
input()
When I run this in Windows the task manager reports memory usage is 15.5 MB. I imported a second file that also imports PySide2
test.py

import PySide2
import test2.py
input()

test2.py
import PySide2
x = 2
With two modules importing PySide2 the memory usage is still 15.5 MB.
Reply


Messages In This Thread
RE: import python library in custom module - by deanhystad - May-10-2020, 03:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Merge htm files with shutil library (TypeError: 'module' object is not callable) Melcu54 7 3,276 Mar-09-2025, 04:25 PM
Last Post: Pedroski55
  Pyinstaller and a custom python script mentat 0 932 Sep-27-2024, 04:42 PM
Last Post: mentat
  importing variables from module 8376459 1 883 Feb-18-2024, 02:24 PM
Last Post: deanhystad
  no module named 'docx' when importing docx MaartenRo 1 5,232 Dec-31-2023, 11:21 AM
Last Post: deanhystad
  python convert multiple files to multiple lists MCL169 6 3,165 Nov-25-2023, 05:31 AM
Last Post: Iqratech
  I want to create custom charts in Python. js1152410 1 1,138 Nov-13-2023, 05:45 PM
Last Post: gulshan212
  python standard way of importing library mg24 1 1,494 Nov-15-2022, 01:41 AM
Last Post: deanhystad
  Problem with importing python-telegram library into the project gandonio 1 2,992 Nov-01-2022, 02:19 AM
Last Post: deanhystad
  My code displays too much output when importing class from a module lil_e 4 2,103 Oct-22-2022, 12:56 AM
Last Post: Larz60+
Question How to move a class to a custom module? python300 4 2,395 Mar-08-2022, 09:19 PM
Last Post: python300

Forum Jump:

User Panel Messages

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