13 lines
251 B
Python
Executable file
13 lines
251 B
Python
Executable file
#! /usr/bin/env python3
|
|
# encoding: utf-8
|
|
|
|
import datetime
|
|
import sys
|
|
|
|
try:
|
|
import over
|
|
sys.ps1 = over.text.render("<G>>>> <.>")
|
|
sys.ps2 = over.text.render("<g>... <.>")
|
|
except:
|
|
sys.ps1 = '\x1b[1;32m>>> \x1b[0m'
|
|
sys.ps2 = '\x1b[0;32m... \x1b[0m'
|