Metadata-Version: 2.1
Name: absresgetter
Version: 0.0.12
Summary: Get absolute resource path of exterior package
Home-page: https://github.com/yjg30737/absresgetter.git
Author: Jung Gyu Yoon
Author-email: yjg30737@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE


# absresgetter

Get absolute resource path of exterior package



## Setup

`python -m pip install absresgetter`



## Description

There is only one method. `getabsres(res: str) -> str`



This package find the module in the stack which includes relative resource path like 'ico/sample.png'. 



You can get the absolute path like 'C:/.../sample_exists_directory/ico/sample.png'.



### Example

```python

print(getabsres('ico/dark-notepad.svg')) # C:/.../ico_dark_notepad_exists_directory/ico/dark-notepad.svg

```



