Metadata-Version: 2.1
Name: import-here
Version: 0.3
Summary: `import` module from same directory.
Home-page: https://github.com/weaming/import-here
Author: weaming
Author-email: garden.yuen@gmail.com
License: UNKNOWN
Project-URL: Source, https://github.com/weaming/import-here
Project-URL: Bug Reports, https://github.com/weaming/import-here
Keywords: math
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Import Here

`import` module from same directory.

## Usage

```python
from import_here import import_module_here, export_all

# import file as a module
lib = import_module_here("foo.bar.com.py", "lib", file=__file__)
# export the exported variables in the lib's scope into current module scope
export_all(lib, locals())
```


