__main__.py 259 B

1234567
  1. #!/usr/bin/env python3
  2. """A command line utility to export Google Keep notes to markdown files with metadata stored as a frontmatter header."""
  3. from keep_exporter import main
  4. if __name__ == "__main__":
  5. # pylint: disable=no-value-for-parameter
  6. main()