__main__.py 372 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. """
  3. pygments.__main__
  4. ~~~~~~~~~~~~~~~~~
  5. Main entry point for ``python -m pygments``.
  6. :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
  7. :license: BSD, see LICENSE for details.
  8. """
  9. import sys
  10. import pygments.cmdline
  11. try:
  12. sys.exit(pygments.cmdline.main(sys.argv))
  13. except KeyboardInterrupt:
  14. sys.exit(1)