mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
14 lines
196 B
Python
Executable File
14 lines
196 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Tabbed -- CLI for Tablib
|
|
Copyright (c) 2010 Kenneth Reitz. MIT License.
|
|
"""
|
|
|
|
import tablib.cli
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
tablib.cli.start() |