Metadata-Version: 2.1
Name: use
Version: 0.1.0
Summary: A Library For Dynamically Importing Modules. Inspired By **Node.js** `require` Function.
Home-page: https://github.com/ShardulNalegave/use.py
Author: Shardul Nalegave
Author-email: nalegaveshardul40@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown


# Use
A Library For Dynamically Importing Modules. Inspired By **Node.js** `require` Function.


-----------------------------------------------------------------------------------------------------------


## Installation
Use can be installed using Pip by the command:-


````

    [sudo] pip install use

````


## Usage
If the file structure is like:-

````

    test/
    	test/
    		__init__.py
    		test.py
    		utils/
    			__init__.py
    			utils.py

````

If you want to import `test/test/__init__.py` in the file `test/test/utils/utils.py` it is not possible, but using **Use** you can do it by putting the following snippet in `test/test/utils/utils.py` file.

````

    from use import use

    initFile = use("./../__init__")

````


-----------------------------------------------------------------------------------------------------------


**License Under The [MIT](./LICENSE) License**
**A Project By [Shardul Nalegave](https://shardul.netlify.com)**

