mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 13:35:16 +03:00
10 lines
188 B
Python
Executable File
10 lines
188 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os, sys
|
|
sys.path.insert(0, os.path.join((os.path.dirname(os.path.realpath(__file__))), "src"))
|
|
|
|
from you_get import *
|
|
|
|
if __name__ == "__main__":
|
|
main()
|