Metadata-Version: 2.4
Name: load-remote-module
Version: 0.3.0
Summary: Dynamically download and import remote Python modules from GitHub.
Author-email: Yassin Riyazi <yassinriyazi@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/YassinRiyazi/Main/tree/main/src/PyThon/DynamicLoader
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

To Dynamically laod the src modules. 

TODO:
    For laoding the library build them and install them with Pip

```
    $   pip install build twine
```
# load-remote-module

Download and import remote Python modules (e.g., from GitHub) into a temporary folder.

## Usage

```python
from load_remote_module import load_remote_module_to_temp

mod = load_remote_module_to_temp("https://raw.githubusercontent.com/user/repo/branch/path/module.py")
