Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • tuning commmand for cpu, ip and memory stats Linux/Unix
  • Zip and unzip with tar Linux/Unix
  • move_arch_files.ksh /* Good One */ Linux/Unix
  • get_vmstat_solaris Oracle
  • pvmehta.com SQL scripts
    Find which sessions is accessing object that prevent your session to have exclusive locks in Oracle Oracle
  • How to specify 2 arch location to avoid any kind of DB hanging. Oracle
  • Handling LOB data in Oracle Oracle
  • online_bkup.sql Oracle
  • database trigger failing Oracle
  • Rman Notes -1 Oracle
  • How To Transfer Passwords Between Databases (ref note: 199582.1) Oracle
  • Adding a new disk and mount it automatically. on VMWARE LINUX Linux/Unix
  • FGA Part-I Oracle
  • Order by with ROWNUM Oracle
  • Locally Managed Tablespace and Dictionary managed tablespace (LMT-DMT) Oracle

Python class import from different folders

Posted on 22-Sep-202422-Sep-2024 By Admin No Comments on Python class import from different folders

I have following directory structure. 

root-folder

– config-folder 

json-file.config

– class-folder 

classfile.py

– tests

pytest-file1.py

Now, I need to use a class named myclass from classfile.py in my test/pytestfile1.py. How can I import that class in my pytest file??

To import the myclass from classfile.py into your pytest-file1.py, you can use a relative import assuming your Python environment treats the root-folder as the top-level package. Here’s how you can do it:

1. Relative Import

In your pytest-file1.py, use the following import statement:

from ..class_folder.classfile import myclass

This assumes that:

classfile.py contains myclass.

You are running the tests from the root-folder level (or using a testing framework like pytest that manages imports correctly).

2. Absolute Import (from the root folder)

If you’re running pytest from the root-folder, you can use an absolute import like this:

from class_folder.classfile import myclass

3.Ensure root-folder is in PYTHONPATH

In Python, the PYTHONPATH is an environment variable that specifies which directories Python should search for modules when importing. By default, Python searches for modules in the standard library and in the current working directory. However, sometimes you need to tell Python where to look, especially when dealing with custom directory structures like yours.

Why is PYTHONPATH important?

Your directory structure looks like this:

root-folder

    – config-folder 

        json-file.config

    – class-folder 

        classfile.py  (contains ‘myclass’)

    – tests

        pytest-file1.py

To import myclass from classfile.py in pytest-file1.py, Python needs to know where the class_folder is located. If the root-folder is not in the PYTHONPATH, Python won’t be able to find class_folder or classfile, leading to an ImportError.

How to set PYTHONPATH

1. Temporary way using the command line (recommended for testing)

Before running your tests, you can set PYTHONPATH to include the root-folder so that Python can find the class_folder.

– On Linux/macOS, run:

PYTHONPATH=. pytest

Here, . refers to the current directory (root-folder). This temporarily sets PYTHONPATH to the current directory for that session, allowing Python to find class_folder and any other modules under root-folder.

– On Windows, the equivalent command is:

set PYTHONPATH=. && pytest

This sets PYTHONPATH for the current terminal session.

2. Permanent way by setting it in your environment

You can add the root-folder to PYTHONPATH permanently by configuring your system environment variables.

– On Linux/macOS (in your .bashrc, .zshrc, etc.):

export PYTHONPATH=/path/to/root-folder:$PYTHONPATH

This appends root-folder to the existing PYTHONPATH. After saving, run:

source ~/.bashrc  # or source ~/.zshrc

– On Windows:

Open the System Properties (right-click “This PC” or “Computer”, then choose “Properties”).

Go to Advanced system settings > Environment Variables.

Under System Variables, find the PYTHONPATH variable (create it if it doesn’t exist).

Add the path to root-folder in the value.

This method ensures that every time you run Python, root-folder is part of its module search path.”

What happens after setting PYTHONPATH?

After setting PYTHONPATH to root-folder, you can use an absolute import in your pytest-file1.py:

from class_folder.classfile import myclass

Now, when Python sees this import statement, it knows to look in the root-folder for the class_folder and then import classfile.py.

Python/PySpark

Post navigation

Previous Post: Transfer SQL Profiles from One database to other database.
Next Post: Reading config file from other folder inside class

Related Posts

  • Read CSV File using Python Python/PySpark
  • Add new columns in dataframe Python/PySpark
  • Reading config file from other folder inside class Python/PySpark
  • Getting started with notebook Python/PySpark
  • Read CSV file using PySpark Python/PySpark
  • How to connect to Oracle Database with Wallet with Python. Oracle

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Django (0)
  • GIT (1)
  • Linux/Unix (150)
  • MYSQL (5)
  • Oracle (403)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (18)
  • rman-dataguard (26)
  • shell (151)
  • SQL scripts (349)
  • SQL Server (6)
  • Uncategorized (5)
  • Videos (0)

Recent Posts

  • Key Management in Oracle: The Core Issue: Missing Master Key12-May-2026
  • SAT Mathematics 10 questions and answer at the end.30-Apr-2026
  • top 10 AI news today30-Apr-2026
  • runon_allpdbs_show_conname.sh23-Apr-2026
  • runon_allcdbs_find_pdbs.sh23-Apr-2026
  • Running PDB on single node in RAC09-Apr-2026
  • find_arc.sql09-Apr-2026
  • pvm_pre_change.sql08-Apr-2026
  • find_encr_wallet.sql08-Apr-2026
  • find_pdbs.sql08-Apr-2026

Archives

  • 2026
  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • _B_TREE_BITMAP_PLANS issue during 8.1.7 to 9.2.0.8 upgrade Oracle
  • tab.sql Oracle
  • CTAS with LONG Column for 9i and higher Oracle
  • cp_filesystem.sql Oracle
  • Some OS level threshold for performance. Linux/Unix
  • How to calculate PROCESSES parameter Oracle
  • Find All internal Parameters Oracle
  • cif crons Linux/Unix

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme