Add import path shortcuts for Classes

This is so you don't have to do e.g., `from pywidevine.pssh import PSSH` and instead can do `from  pywidevine import PSSH`. You can still do it the other way, but now you have the choice.
This commit is contained in:
rlaphoenix 2022-09-28 06:40:52 +01:00
parent 24297d577e
commit a4c6f98650
1 changed files with 8 additions and 0 deletions

View File

@ -1 +1,9 @@
from .cdm import *
from .device import *
from .key import *
from .pssh import *
from .remotecdm import *
from .session import *
__version__ = "1.5.0" __version__ = "1.5.0"