├── LICENSE ├── README ├── aws.go ├── cloudsettings.go ├── cmd ├── addtoqueue │ └── main.go ├── bookpipeline │ └── main.go ├── booktopipeline │ └── main.go ├── confgraph │ └── main.go ├── getallhocrs │ └── main.go ├── getandpurgequeue │ └── main.go ├── getbests │ └── main.go ├── getpipelinebook │ └── main.go ├── getsamplepages │ └── main.go ├── getstats │ └── main.go ├── logwholequeue │ └── main.go ├── lspipeline-ng │ └── main.go ├── lspipeline │ └── main.go ├── mkpipeline │ └── main.go ├── pagegraph │ └── main.go ├── pdfbook │ └── main.go ├── postprocess-bythresh │ └── main.go ├── rescribe │ ├── EMBEDDING_NOTES.md │ ├── TODO │ ├── embed_darwin.go │ ├── embed_darwin_amd64.go │ ├── embed_darwin_arm64.go │ ├── embed_linux.go │ ├── embed_other.go │ ├── embed_other2.go │ ├── embed_tessdata.go │ ├── embed_windows.go │ ├── gbook.go │ ├── gbook_test.go │ ├── getembeds.go │ ├── gui.go │ ├── gui_test.go │ ├── icon.256.png │ ├── icon.png │ ├── icon.svg │ ├── main.go │ ├── makefile │ ├── testdata │ │ └── fuzz │ │ │ └── FuzzGetBookIdFromUrl │ │ │ ├── 174f82f558636f2a │ │ │ └── 60892155cf2f7963 │ ├── xyz.rescribe.rescribe.appdata.xml │ ├── xyz.rescribe.rescribe.desktop │ └── xyz.rescribe.rescribe.yml ├── rmbook │ └── main.go ├── spotme │ └── main.go └── trimqueue │ └── main.go ├── doc.go ├── fonts.go ├── go.mod ├── go.sum ├── graph.go ├── internal └── pipeline │ ├── get.go │ ├── pipeline.go │ ├── pipeline_test.go │ ├── put.go │ ├── put_test.go │ ├── testdata │ ├── bad │ │ ├── 1.png │ │ └── bad.png │ ├── good │ │ ├── .hidden.png │ │ ├── 1.png │ │ └── 2.png │ └── notreadable │ │ └── 1.png │ ├── util.go │ └── util_windows.go ├── local.go └── pdf.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/README -------------------------------------------------------------------------------- /aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/aws.go -------------------------------------------------------------------------------- /cloudsettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cloudsettings.go -------------------------------------------------------------------------------- /cmd/addtoqueue/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/addtoqueue/main.go -------------------------------------------------------------------------------- /cmd/bookpipeline/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/bookpipeline/main.go -------------------------------------------------------------------------------- /cmd/booktopipeline/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/booktopipeline/main.go -------------------------------------------------------------------------------- /cmd/confgraph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/confgraph/main.go -------------------------------------------------------------------------------- /cmd/getallhocrs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/getallhocrs/main.go -------------------------------------------------------------------------------- /cmd/getandpurgequeue/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/getandpurgequeue/main.go -------------------------------------------------------------------------------- /cmd/getbests/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/getbests/main.go -------------------------------------------------------------------------------- /cmd/getpipelinebook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/getpipelinebook/main.go -------------------------------------------------------------------------------- /cmd/getsamplepages/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/getsamplepages/main.go -------------------------------------------------------------------------------- /cmd/getstats/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/getstats/main.go -------------------------------------------------------------------------------- /cmd/logwholequeue/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/logwholequeue/main.go -------------------------------------------------------------------------------- /cmd/lspipeline-ng/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/lspipeline-ng/main.go -------------------------------------------------------------------------------- /cmd/lspipeline/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/lspipeline/main.go -------------------------------------------------------------------------------- /cmd/mkpipeline/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/mkpipeline/main.go -------------------------------------------------------------------------------- /cmd/pagegraph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/pagegraph/main.go -------------------------------------------------------------------------------- /cmd/pdfbook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/pdfbook/main.go -------------------------------------------------------------------------------- /cmd/postprocess-bythresh/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/postprocess-bythresh/main.go -------------------------------------------------------------------------------- /cmd/rescribe/EMBEDDING_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/EMBEDDING_NOTES.md -------------------------------------------------------------------------------- /cmd/rescribe/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/TODO -------------------------------------------------------------------------------- /cmd/rescribe/embed_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_darwin.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_darwin_amd64.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_darwin_arm64.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_linux.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_other.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_other2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_other2.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_tessdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_tessdata.go -------------------------------------------------------------------------------- /cmd/rescribe/embed_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/embed_windows.go -------------------------------------------------------------------------------- /cmd/rescribe/gbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/gbook.go -------------------------------------------------------------------------------- /cmd/rescribe/gbook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/gbook_test.go -------------------------------------------------------------------------------- /cmd/rescribe/getembeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/getembeds.go -------------------------------------------------------------------------------- /cmd/rescribe/gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/gui.go -------------------------------------------------------------------------------- /cmd/rescribe/gui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/gui_test.go -------------------------------------------------------------------------------- /cmd/rescribe/icon.256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/icon.256.png -------------------------------------------------------------------------------- /cmd/rescribe/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/icon.png -------------------------------------------------------------------------------- /cmd/rescribe/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/icon.svg -------------------------------------------------------------------------------- /cmd/rescribe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/main.go -------------------------------------------------------------------------------- /cmd/rescribe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/makefile -------------------------------------------------------------------------------- /cmd/rescribe/testdata/fuzz/FuzzGetBookIdFromUrl/174f82f558636f2a: -------------------------------------------------------------------------------- 1 | go test fuzz v1 2 | string("https://www0google\xf7/books/edition/_/") 3 | -------------------------------------------------------------------------------- /cmd/rescribe/testdata/fuzz/FuzzGetBookIdFromUrl/60892155cf2f7963: -------------------------------------------------------------------------------- 1 | go test fuzz v1 2 | string("https://Books.google\xc1&id=") 3 | -------------------------------------------------------------------------------- /cmd/rescribe/xyz.rescribe.rescribe.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/xyz.rescribe.rescribe.appdata.xml -------------------------------------------------------------------------------- /cmd/rescribe/xyz.rescribe.rescribe.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/xyz.rescribe.rescribe.desktop -------------------------------------------------------------------------------- /cmd/rescribe/xyz.rescribe.rescribe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rescribe/xyz.rescribe.rescribe.yml -------------------------------------------------------------------------------- /cmd/rmbook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/rmbook/main.go -------------------------------------------------------------------------------- /cmd/spotme/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/spotme/main.go -------------------------------------------------------------------------------- /cmd/trimqueue/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/cmd/trimqueue/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/doc.go -------------------------------------------------------------------------------- /fonts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/fonts.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/go.sum -------------------------------------------------------------------------------- /graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/graph.go -------------------------------------------------------------------------------- /internal/pipeline/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/get.go -------------------------------------------------------------------------------- /internal/pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/pipeline.go -------------------------------------------------------------------------------- /internal/pipeline/pipeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/pipeline_test.go -------------------------------------------------------------------------------- /internal/pipeline/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/put.go -------------------------------------------------------------------------------- /internal/pipeline/put_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/put_test.go -------------------------------------------------------------------------------- /internal/pipeline/testdata/bad/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/testdata/bad/1.png -------------------------------------------------------------------------------- /internal/pipeline/testdata/bad/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/testdata/bad/bad.png -------------------------------------------------------------------------------- /internal/pipeline/testdata/good/.hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/testdata/good/.hidden.png -------------------------------------------------------------------------------- /internal/pipeline/testdata/good/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/testdata/good/1.png -------------------------------------------------------------------------------- /internal/pipeline/testdata/good/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/testdata/good/2.png -------------------------------------------------------------------------------- /internal/pipeline/testdata/notreadable/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/testdata/notreadable/1.png -------------------------------------------------------------------------------- /internal/pipeline/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/util.go -------------------------------------------------------------------------------- /internal/pipeline/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/internal/pipeline/util_windows.go -------------------------------------------------------------------------------- /local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/local.go -------------------------------------------------------------------------------- /pdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescribe/bookpipeline/HEAD/pdf.go --------------------------------------------------------------------------------