reorganise python interface

This commit is contained in:
Vitor Santos Costa
2017-05-08 18:49:00 +01:00
parent 6e7846e210
commit d1e39368f4
15 changed files with 173 additions and 39 deletions

View File

@@ -0,0 +1,14 @@
"""The main routine of the yap python project."""
import sys
import yapi
def main(args=None):
"""The main routine."""
if args is None:
args = sys.argv[1:]
yap.yapi.live(args)
if __name__ == "__main__":
main()