connpy/conn/__init__.py

11 lines
266 B
Python
Raw Normal View History

2022-03-19 20:41:35 -03:00
#!/usr/bin/env python3
2022-03-30 19:51:54 -03:00
from .core import node,nodes
2022-03-22 19:54:05 -03:00
from .configfile import configfile
from .connapp import connapp
2022-04-01 17:53:51 -03:00
from pkg_resources import get_distribution
2022-03-17 19:05:23 -03:00
2022-03-30 19:51:54 -03:00
__all__ = ["node", "nodes", "configfile", "connapp"]
2022-04-01 17:53:51 -03:00
__version__ = "2.0.9"
__author__ = "Federico Luzzi"