File: __init__.py

package info (click to toggle)
python-booleanoperations 0.9.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 684 kB
  • sloc: python: 1,249; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .booleanOperationManager import BooleanOperationManager
from .exceptions import BooleanOperationsError

try:
    from ._version import version as __version__
except ImportError:
    __version__ = "0.0.0+unknown"

# export BooleanOperationManager static methods
union = BooleanOperationManager.union
difference = BooleanOperationManager.difference
intersection = BooleanOperationManager.intersection
xor = BooleanOperationManager.xor
getIntersections = BooleanOperationManager.getIntersections