2020-05-12 21:01:16 +00:00
|
|
|
#! /usr/bin/env python3
|
2021-05-28 19:50:59 -04:00
|
|
|
if __name__ == "__main__":
|
|
|
|
import os
|
|
|
|
path = os.path.abspath(os.path.dirname(__file__))
|
2019-12-08 21:43:49 +00:00
|
|
|
|
2021-05-28 19:50:59 -04:00
|
|
|
import sys
|
|
|
|
sys.path.append(path)
|
2020-05-12 21:01:16 +00:00
|
|
|
|
2021-05-28 19:50:59 -04:00
|
|
|
import code
|
|
|
|
code.InteractiveConsole().interact()
|