Jam.py Demo Application v5.4.112 package as EXE. Please find Jam.py here: https://github.com/jam-py/jam-py/
Just download and double click on it. It is safe. Visit the Application by pointing the Web browser to localhost:8080
It is more or less the same Application as in here: https://jampyapp.pythonanywhere.com/
With added "Data pump" to specifically demonstrate the speed of Jam.py platform.
To package Jam.py Demo Application as EXE (or any Jam.py application), we need to install X86 Python for X64 Windows, and use pip to install pyinstaller. Then navigate to Jam.py Application folder downloaded from here https://github.com/jam-py/jam-py/, copy jam folder into "demo" folder and run:
pyinstaller -c -F --onefile --noconfirm --add-data "demo.sqlite;." --add-data "admin.sqlite;." --add-data "locks;locks" --add-data "js;js" --add-data "css;css" --add-data "reports;reports" --add-data "jam;jam" --add-data "static;static" --add-data "index.html;." --add-data "server.py;." server.py --name=jampy_win_64.exe
Download https://github.com/extremecoders-re/pyinstxtractor and:
python pyinstxtractor/pyinstxtractor.py jampy_win_64.exe
The content is from https://github.com/jam-py/jam-py, jam and demo folder.
Because we can't pay enough for hosting, to demonstrate how fast Jam.py is with huge databases!
With "Data Pump" button added on Demo, one can create HUGE SQLite database and see the performance avoiding the Net! Closing the executable on X button erases all. It also clearly demonstrates the performance when using indexes. For example, all lookups should be indexed. Hence, when we do something like this:
UPDATE DEMO_TRACKS
SET TRACKS_SOLD = (SELECT SUM(QUANTITY) FROM DEMO_INVOICE_TABLE T WHERE T.TRACK = DEMO_TRACKS.ID AND T.DELETED = 0)
with huge dataset, the above update will take “forever” to finish. Not only that! Showing ALL Invoice details might be slow. So how do we speed this up and demonstrate >1000x faster performance?
We can add one single index on Application Builder/Details/InvoiceTable
, on the right hand side Indices
button, track
field.
Profit.
Yep. localhost:8080/builder.html
We tested DB File size in bytes : 4570799104
MIT License.