I updated the PDF Booklet project and removed Python 2 dependencies so that it will run under Ubuntu 22.04.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB

2 years ago
  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. PdfBooklet 2.2.2 - GTK+ based utility for creating booklets
  5. and other layouts from PDF documents.
  6. <https://sourceforge.net/projects/pdfbooklet>
  7. This file is part of PdfBooklet.
  8. PdfBooklet is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 3 of the License, or
  11. (at your option) any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License along
  17. with this program; if not, write to the Free Software Foundation, Inc.,
  18. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. """
  20. try:
  21. from pdfbooklet.pdfbooklet import main
  22. main()
  23. except ImportError as e:
  24. print('Error: Could not import pdfbooklet')
  25. print('Cause: %s' % e)