diff --git a/z2/app.py b/z2/app.py deleted file mode 100644 index 97eed71..0000000 --- a/z2/app.py +++ /dev/null @@ -1,314 +0,0 @@ -from flask import Flask, render_template_string -import math - -app = Flask(__name__) - -@app.route('/') -def index(): - # Calculate PI to 300 decimal places - # Since math.pi doesn't provide that many digits, we're using a string representation - # that includes the first 300 decimal places of PI - pi_digits = "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989" - - # HTML template with embedded CSS and JavaScript - html_template = """ - - - - - - PI Digits Visualization - - - -
-

PI Digits Visualization

- -
- -
Digits displayed: 0 / 1002
- -
- - - - - -
- -
-
Current speed: 0.5 seconds per digit
-
- -
-

PI digits are displayed one by one with a unique color for each digit.

-
-
- - - - - """ - - return render_template_string(html_template, pi_digits=pi_digits) - -if __name__ == "__main__": - app.run(host='0.0.0.0', port=5000, debug=True) \ No newline at end of file