├── LICENSE ├── README.md └── non-wheel ├── active-jobs-dashboard ├── README.md ├── requirements.txt ├── root.tpl ├── row.tpl ├── screenshot.jpg ├── server.py └── tablesorter │ ├── LICENSE_tablesorter │ ├── asc.gif │ ├── asc.png │ ├── bg.gif │ ├── bg.png │ ├── desc.gif │ ├── desc.png │ ├── jquery.tablesorter.min.js │ └── style.css ├── bottle-example ├── README.md ├── cmd.tpl ├── query.tpl ├── requirements.txt ├── row.tpl ├── sample.html ├── sample.py └── screenshot.png ├── dbtocsv ├── README.md ├── dbtocsv.py └── requirements.txt ├── dbtoxlsx ├── README.md └── dbtoxlsx.py ├── flask-example ├── README.md ├── requirements.txt ├── sample.py ├── screenshot.png └── templates │ ├── cmd.html │ ├── query.html │ ├── row.html │ └── sample.html ├── netstat ├── LICENSE ├── README.md └── netstat.py └── pillow-example ├── README.md ├── ibmi.png ├── pillow-rabbit.py ├── rabbit.jpg └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/README.md -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/README.md -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/requirements.txt -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/root.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/root.tpl -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/row.tpl -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/screenshot.jpg -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/server.py -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/LICENSE_tablesorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/LICENSE_tablesorter -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/asc.gif -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/asc.png -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/bg.gif -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/bg.png -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/desc.gif -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/desc.png -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /non-wheel/active-jobs-dashboard/tablesorter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/active-jobs-dashboard/tablesorter/style.css -------------------------------------------------------------------------------- /non-wheel/bottle-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/README.md -------------------------------------------------------------------------------- /non-wheel/bottle-example/cmd.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/cmd.tpl -------------------------------------------------------------------------------- /non-wheel/bottle-example/query.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/query.tpl -------------------------------------------------------------------------------- /non-wheel/bottle-example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/requirements.txt -------------------------------------------------------------------------------- /non-wheel/bottle-example/row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/row.tpl -------------------------------------------------------------------------------- /non-wheel/bottle-example/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/sample.html -------------------------------------------------------------------------------- /non-wheel/bottle-example/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/sample.py -------------------------------------------------------------------------------- /non-wheel/bottle-example/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/bottle-example/screenshot.png -------------------------------------------------------------------------------- /non-wheel/dbtocsv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/dbtocsv/README.md -------------------------------------------------------------------------------- /non-wheel/dbtocsv/dbtocsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/dbtocsv/dbtocsv.py -------------------------------------------------------------------------------- /non-wheel/dbtocsv/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/dbtocsv/requirements.txt -------------------------------------------------------------------------------- /non-wheel/dbtoxlsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/dbtoxlsx/README.md -------------------------------------------------------------------------------- /non-wheel/dbtoxlsx/dbtoxlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/dbtoxlsx/dbtoxlsx.py -------------------------------------------------------------------------------- /non-wheel/flask-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/README.md -------------------------------------------------------------------------------- /non-wheel/flask-example/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /non-wheel/flask-example/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/sample.py -------------------------------------------------------------------------------- /non-wheel/flask-example/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/screenshot.png -------------------------------------------------------------------------------- /non-wheel/flask-example/templates/cmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/templates/cmd.html -------------------------------------------------------------------------------- /non-wheel/flask-example/templates/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/templates/query.html -------------------------------------------------------------------------------- /non-wheel/flask-example/templates/row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/templates/row.html -------------------------------------------------------------------------------- /non-wheel/flask-example/templates/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/flask-example/templates/sample.html -------------------------------------------------------------------------------- /non-wheel/netstat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/netstat/LICENSE -------------------------------------------------------------------------------- /non-wheel/netstat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/netstat/README.md -------------------------------------------------------------------------------- /non-wheel/netstat/netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/netstat/netstat.py -------------------------------------------------------------------------------- /non-wheel/pillow-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/pillow-example/README.md -------------------------------------------------------------------------------- /non-wheel/pillow-example/ibmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/pillow-example/ibmi.png -------------------------------------------------------------------------------- /non-wheel/pillow-example/pillow-rabbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/pillow-example/pillow-rabbit.py -------------------------------------------------------------------------------- /non-wheel/pillow-example/rabbit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Club-Seiden/python-for-IBM-i-examples/HEAD/non-wheel/pillow-example/rabbit.jpg -------------------------------------------------------------------------------- /non-wheel/pillow-example/requirements.txt: -------------------------------------------------------------------------------- 1 | pillow 2 | --------------------------------------------------------------------------------