#!/usr/bin/env python
# -*- coding: utf-8 -*-
from locale import setlocale, LC_ALL
from curses import wrapper
from dabbiew.dabbiew import run, to_dataframe
from sys import argv


setlocale(LC_ALL, '')
wrapper(run, to_dataframe(argv[1]))
