mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 21:45:02 +03:00
25 lines
759 B
Python
Executable File
25 lines
759 B
Python
Executable File
#!/usr/bin/env python
|
|
# This file is Python 2 compliant.
|
|
|
|
import os, sys
|
|
|
|
_srcdir = 'src/'
|
|
if getattr(sys, 'frozen', False):
|
|
# The application is frozen
|
|
_filepath = os.path.dirname(os.path.realpath(sys.executable))
|
|
else:
|
|
# The application is not frozen
|
|
# Change this bit to match where you store your data files:
|
|
_filepath = os.path.dirname(os.path.realpath(__file__))
|
|
sys.path.insert(1, os.path.join(_filepath, _srcdir))
|
|
|
|
if sys.version_info[0] == 3:
|
|
import you_get
|
|
if __name__ == '__main__':
|
|
you_get.main(repo_path=_filepath)
|
|
else:
|
|
from you_get.util import log
|
|
log.wtf("""
|
|
[Fatal] Python 3 is required.
|
|
If Python 3 is already installed on your machine, try to run this script using 'python3 you-get'.""")
|