This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # see https://stackoverflow.com/questions/51973437/reverse-pdf-imposition | |
| import copy | |
| import sys | |
| import math | |
| import pyPdf | |
| """ | |
| Reverse imposing: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source http://stackoverflow.com/a/15741856/1301753 | |
| import copy | |
| import sys | |
| import math | |
| import pyPdf | |
| def split_pages(src, dst): | |
| src_f = file(src, 'r+b') | |
| dst_f = file(dst, 'w+b') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2 | |
| """ | |
| Other Repositories of python-ping | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| * https://github.com/l4m3rx/python-ping supports Python2 and Python3 | |
| * https://bitbucket.org/delroth/python-ping | |