• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

drawings/H03-May-2022-

pyinstaller/H29-Jul-2018-186157

src/ironscanner/H29-Jul-2018-2,5772,347

.gitignoreH A D29-Jul-20181.1 KiB10582

LICENSEH A D29-Jul-201834.3 KiB675553

MANIFEST.inH A D29-Jul-2018135 54

MakefileH A D29-Jul-20181.3 KiB8364

README.mdH A D29-Jul-2018838 3623

setup.pyH A D29-Jul-20182 KiB7458

tox.iniH A D29-Jul-201882 98

README.md

1# IronScanner
2
3![Logo](src/ironscanner/logo.png)
4
5Collect as much information as possible on a image scanner, run test scan, and send a detailed report to [OpenPaper.work](https://openpaper.work/scanner_db/).
6
7
8## Linux
9
10```sh
11cd /tmp
12wget https://download.openpaper.work/linux/amd64/ironscanner/latest/ironscanner
13chmod +x /tmp/ironscanner
14./ironscanner
15```
16
17
18## Windows
19
20[Download](https://download.openpaper.work/windows/amd64/ironscanner.exe), click "yes" on the ten of thousands of security warnings, and run.
21
22
23## From sources
24
25Requires python3 + python3-virtualenv + python3-setuptools.
26
27```sh
28cd /tmp
29git clone https://gitlab.gnome.org/World/OpenPaperwork/ironscanner.git
30cd ironscanner
31virtualenv -p python3 --system-site-packages venv
32source venv/bin/activate
33make install  # will run python3 ./setup.py install
34ironscanner
35```
36