Metadata-Version: 2.4
Name: superMagIcmporter
Version: 0.0.2
Summary: This module transfers the import path to the project root so you can easily import from neighboring folders.
Author-email: mahziar hemati <mahziarhemati.programmer@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/mahziarHematiProgrammer
Project-URL: Issues, https://github.com/mahziarHematiProgrammer
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

This module transfers the import path to the project root so you can easily import from neighboring folders.

### how to use:
from superMagIcmporter import set_root_folder

set_root_folder(__file__,'yourRootFolder')
|Args|Description|
|----|-----------|
|file|"The file parameter provides the current file's path to the function, allowing it to resolve the path to your desired root directory. By passing the __file__ magic variable, the current script's location is automatically set."|
|root_folder_name|Enter the name of your project's root folder as a string.|


The set_root_folder function stores the input folder in Python memory.
Note: From this line onwards, you must specify the root address to import from. If you need to use Python's own installed import, you must do so before setting with this module.
