archive
/
Printr
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Printr/printr/__init__.py

15 lines
324 B
Python

import os
from json import load as json_load
PRINTR_PATH = os.path.dirname(os.path.abspath(__file__))
from .ItterPrintr import ItterPrintr
from .EllipsisPrintr import EllipsisPrintr
with open(PRINTR_PATH + '/../details.json') as file:
PRINTR_DETAILS = json_load(file)
def get_version():
return PRINTR_DETAILS.version