pyloid 0.18.1__py3-none-any.whl → 0.18.3__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
pyloid/utils.py CHANGED
@@ -24,18 +24,23 @@ def get_production_path(path: Optional[str] = None) -> Optional[str]:
24
24
  >>> else:
25
25
  >>> print("Not in a production environment.")
26
26
  """
27
- if getattr(sys, 'frozen', False) or '__compiled__' in globals():
28
- # Nuitka
27
+ if is_production():
29
28
  if hasattr(sys, '_MEIPASS'):
30
29
  # PyInstaller
31
30
  base_path = sys._MEIPASS
32
31
  else:
33
- # Nuitka의 경우 실행 파일이 있는 디렉토리를 기준으로 함
34
- base_path = os.path.dirname(os.path.abspath(sys.argv[0]))
32
+ # Nuitka
33
+ base_path = globals()['__compiled__'].containing_dir
34
+
35
+ print(base_path)
36
+
37
+ if base_path is None:
38
+ # 환경변수가 없는 경우 실행 파일 디렉토리 사용
39
+ base_path = os.path.dirname(os.path.abspath(sys.argv[0]))
40
+
35
41
 
36
42
  return os.path.join(base_path, path) if path else base_path
37
43
  else:
38
- # 일반 Python 스크립트로 실행 중일 때
39
44
  return None
40
45
 
41
46
 
@@ -56,7 +61,11 @@ def is_production() -> bool:
56
61
  >>> else:
57
62
  >>> print("Not in production environment.")
58
63
  """
59
- return getattr(sys, 'frozen', False) or '__compiled__' in globals()
64
+ # Nuitka 환경 확인을 추가
65
+ if '__compiled__' in globals():
66
+ return True
67
+ # PyInstaller 환경 확인
68
+ return getattr(sys, 'frozen', False)
60
69
 
61
70
 
62
71
  def get_platform() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyloid
3
- Version: 0.18.1
3
+ Version: 0.18.3
4
4
  Summary:
5
5
  Author: aesthetics-of-record
6
6
  Author-email: 111675679+aesthetics-of-record@users.noreply.github.com
@@ -11,8 +11,8 @@ pyloid/pyloid.py,sha256=YKE2a5yZFbBZrtMND2X5I7CVnFRK40NFzDp3kYN-oQg,44091
11
11
  pyloid/thread_pool.py,sha256=fKOBb8jMfZn_7crA_fJCno8dObBRZE31EIWaNQ759aw,14616
12
12
  pyloid/timer.py,sha256=RqMsChFUd93cxMVgkHWiIKrci0QDTBgJSTULnAtYT8M,8712
13
13
  pyloid/tray.py,sha256=D12opVEc2wc2T4tK9epaN1oOdeziScsIVNM2uCN7C-A,1710
14
- pyloid/utils.py,sha256=YQxuRMsbUSLTNGu8e2hDkPOLJxxZczxayq5OFzhYM9A,2964
15
- pyloid-0.18.1.dist-info/LICENSE,sha256=F96EzotgWhhpnQTW2TcdoqrMDir1jyEo6H915tGQ-QE,11524
16
- pyloid-0.18.1.dist-info/METADATA,sha256=N2Wp_nP7rzrynEctGiFUO4H4NcX3rNlosGUbQZukY7c,3050
17
- pyloid-0.18.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
18
- pyloid-0.18.1.dist-info/RECORD,,
14
+ pyloid/utils.py,sha256=SomwDO0flG_JvjKpv9PsFDFLSnI0MJYd1h0Px5gjb8Y,3109
15
+ pyloid-0.18.3.dist-info/LICENSE,sha256=F96EzotgWhhpnQTW2TcdoqrMDir1jyEo6H915tGQ-QE,11524
16
+ pyloid-0.18.3.dist-info/METADATA,sha256=NlINNeMANDqPlAcDMUaG5TJlq0jZfg4AaXDZ0EzBgyI,3050
17
+ pyloid-0.18.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
18
+ pyloid-0.18.3.dist-info/RECORD,,