├── start-browser.bat ├── extra └── start-server.sh ├── app ├── static │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── npm.js │ │ ├── plugins │ │ │ ├── jqplot.pointLabels.js │ │ │ └── jqplot.categoryAxisRenderer.js │ │ └── bootstrap.min.js │ └── css │ │ ├── starter-template.css │ │ ├── jquery.jqplot.min.css │ │ ├── jquery.jqplot.css │ │ ├── bootstrap-theme.min.css │ │ └── bootstrap-theme.css ├── tests │ ├── reference.dat │ ├── common.py │ ├── test_local_python.py │ ├── randomized_combo_tester_v4.py │ ├── test_upstream.py │ └── compare_html_sources.py ├── views │ ├── reporting.html │ ├── base.html │ └── index.html ├── getcsv.py ├── reporting.py ├── server.py └── evaluator.py ├── requirements.txt ├── images ├── Python-3.8.x.png ├── Python-3.9.x.png └── start-server.png ├── start-server.bat ├── .gitignore └── README.md /start-browser.bat: -------------------------------------------------------------------------------- 1 | start "IPIP-NEO" "http://localhost:8888" 2 | -------------------------------------------------------------------------------- /extra/start-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd app 4 | python3 server.py 5 | -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/app/static/favicon.ico -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bottle 2 | ipython 3 | pyquery 4 | requests 5 | selenium 6 | selenium-wire 7 | -------------------------------------------------------------------------------- /images/Python-3.8.x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/images/Python-3.8.x.png -------------------------------------------------------------------------------- /images/Python-3.9.x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/images/Python-3.9.x.png -------------------------------------------------------------------------------- /images/start-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/images/start-server.png -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/app/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/app/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/app/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/IPIP-NEO-PI/HEAD/app/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/tests/reference.dat: -------------------------------------------------------------------------------- 1 | 128211623 910113 user India 2 | 455454245414355144252442444444435454354214445435053442424254 3 | 455453415314242354554251515543245452445414245444452135425154 4 | -------------------------------------------------------------------------------- /app/views/reporting.html: -------------------------------------------------------------------------------- 1 | %#https://bottlepy.org/docs/0.12/tutorial_app.html 2 | %#template to generate a HTML table from a list of tuples (or list of lists, or tuple of tuples or ...) 3 |
Historical Reports:
4 || {{col}} | 9 | %end 10 |