File tree Expand file tree Collapse file tree 8 files changed +19
-19
lines changed Expand file tree Collapse file tree 8 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 22
22
import time
23
23
import pprint
24
24
25
- from lucit_licensing_python .manager import LucitLicensingManager
25
+ from lucit_licensing_python .licensing_manager import LucitLicensingManager
26
26
27
27
28
28
class LTC :
Original file line number Diff line number Diff line change 9
9
import sys
10
10
import time
11
11
import pprint
12
- from lucit_licensing_python .manager import LucitLicensingManager
13
- from lucit_licensing_python .exceptions import NoValidatedLucitLicense
12
+ from lucit_licensing_python .licensing_manager import LucitLicensingManager
13
+ from lucit_licensing_python .licensing_exceptions import NoValidatedLucitLicense
14
14
15
15
16
16
class LTC :
Original file line number Diff line number Diff line change 1
- from lucit_licensing_python .cli import cli
2
- from lucit_licensing_python .exceptions import NoValidatedLucitLicense
3
- from lucit_licensing_python .manager import LucitLicensingManager
1
+ from lucit_licensing_python .licensing_cli import cli
2
+ from lucit_licensing_python .licensing_exceptions import NoValidatedLucitLicense
3
+ from lucit_licensing_python .licensing_manager import LucitLicensingManager
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
# -*- coding: utf-8 -*-
3
3
#
4
- # File: lucit_licensing_python/cli .py
4
+ # File: lucit_licensing_python/licensing_cli .py
5
5
#
6
6
# Project website: https://www.lucit.tech/lucit-licensing-python.html
7
7
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
26
26
import textwrap
27
27
from pathlib import Path
28
28
try :
29
- from manager import LucitLicensingManager
30
- from exceptions import NoValidatedLucitLicense
29
+ from licensing_manager import LucitLicensingManager
30
+ from licensing_exceptions import NoValidatedLucitLicense
31
31
except ModuleNotFoundError :
32
- from lucit_licensing_python .manager import LucitLicensingManager
33
- from lucit_licensing_python .exceptions import NoValidatedLucitLicense
32
+ from lucit_licensing_python .licensing_manager import LucitLicensingManager
33
+ from lucit_licensing_python .licensing_exceptions import NoValidatedLucitLicense
34
34
35
35
36
36
async def cli ():
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
# -*- coding: utf-8 -*-
3
3
#
4
- # File: lucit_licensing_python/exceptions .py
4
+ # File: lucit_licensing_python/licensing_exceptions .py
5
5
#
6
6
# Project website: https://www.lucit.tech/lucit-licensing-python.html
7
7
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
# -*- coding: utf-8 -*-
3
3
#
4
- # File: lucit_licensing_python/manager .py
4
+ # File: lucit_licensing_python/licensing_manager .py
5
5
#
6
6
# Project website: https://www.lucit.tech/lucit-licensing-python.html
7
7
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
35
35
from simplejson .errors import JSONDecodeError
36
36
from typing import Optional , Callable
37
37
try :
38
- from exceptions import NoValidatedLucitLicense
38
+ from licensing_exceptions import NoValidatedLucitLicense
39
39
except ModuleNotFoundError :
40
- from lucit_licensing_python .exceptions import NoValidatedLucitLicense
40
+ from lucit_licensing_python .licensing_exceptions import NoValidatedLucitLicense
41
41
42
42
logger = logging .getLogger ("lucit_licensing_python" )
43
43
Original file line number Diff line number Diff line change 27
27
setup (
28
28
ext_modules = cythonize (
29
29
['lucit_licensing_python/__init__.py' ,
30
- 'lucit_licensing_python/cli .py' ,
31
- 'lucit_licensing_python/exceptions .py' ,
32
- 'lucit_licensing_python/manager .py' ],
30
+ 'lucit_licensing_python/licensing_cli .py' ,
31
+ 'lucit_licensing_python/licensing_exceptions .py' ,
32
+ 'lucit_licensing_python/licensing_manager .py' ],
33
33
annotate = False ),
34
34
name = 'lucit-licensing-python' ,
35
35
version = "1.8.2" ,
Original file line number Diff line number Diff line change 21
21
import logging
22
22
import time
23
23
import pprint
24
- from lucit_licensing_python .manager import LucitLicensingManager
24
+ from lucit_licensing_python .licensing_manager import LucitLicensingManager
25
25
26
26
27
27
class LTC :
You can’t perform that action at this time.
0 commit comments