def scan(): """ Start Paperwork and immediately scan a page. """ from paperwork import paperwork paperwork.main(hook_func=_hook_scan, skip_workdir_scan=True)
#!/usr/bin/env python # Paperwork - Using OCR to grep dead trees the easy way # Copyright (C) 2012 Jerome Flesch # # Paperwork is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Paperwork is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Paperwork. If not, see <http://www.gnu.org/licenses/>. # just here to run a non-installed version import sys sys.path += ['src'] from paperwork.paperwork import main if __name__ == "__main__": main()
# # Paperwork is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Paperwork is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Paperwork. If not, see <http://www.gnu.org/licenses/>. # just here to run a non-installed version import os import sys if __name__ == "__main__": sys.path += ['src'] from paperwork.paperwork import main os.chdir( os.path.join( os.path.dirname(os.path.realpath(__file__)), ".." ) ) main()