File: __init__.py

package info (click to toggle)
python-clevercsv 0.7.5%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 872 kB
  • sloc: python: 5,076; ansic: 763; makefile: 81
file content (8 lines) | stat: -rw-r--r-- 133 bytes parent folder | download
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

from .application import build_application


def main():
    app = build_application()
    return app.run()