__init__.py 651 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. # *****************************************************************************
  3. # Copyright (C) 2006-2020 Jorgen Stenarson. <jorgen.stenarson@bostream.nu>
  4. # Copyright (C) 2020 Bassem Girgis. <brgirgis@gmail.com>
  5. #
  6. # Distributed under the terms of the BSD License. The full license is in
  7. # the file COPYING, distributed as part of this software.
  8. # *****************************************************************************
  9. from .api import set_clipboard_text
  10. from .get_clipboard_text_and_convert import get_clipboard_text_and_convert
  11. __all__ = [
  12. "set_clipboard_text",
  13. "get_clipboard_text_and_convert",
  14. ]