martelhenkedo commited on
Commit
4271880
1 Parent(s): 56e1509

Upload 6 files

Browse files
Files changed (7) hide show
  1. .gitattributes +1 -0
  2. apkafka.sh +0 -0
  3. app.py +26 -0
  4. jupyter +3 -0
  5. requirements.txt +84 -0
  6. rom.py +3 -0
  7. runtime.txt +1 -0
.gitattributes CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ jupyter filter=lfs diff=lfs merge=lfs -text
apkafka.sh ADDED
Binary file (15.4 kB). View file
 
app.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import os
3
+ os.system('python rom.py')
4
+ if not hasattr(st, 'already_started_server'):
5
+ st.already_started_server = True
6
+
7
+ st.write('''
8
+ The first time this script executes it will run forever because it's
9
+ running a Flask server.
10
+
11
+ Just close this browser tab and open a new one to see your Streamlit
12
+ app.
13
+ ''')
14
+
15
+ from flask import Flask
16
+
17
+ app = Flask(__name__)
18
+
19
+ @app.route('/foo')
20
+ def serve_foo():
21
+ return 'This page is served via Flask!'
22
+
23
+ app.run(port = 8880)
24
+
25
+ x = st.slider('Pick a number')
26
+ st.write('You picked:', x)
jupyter ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79381fbbf33ace7560163bf17ea1fb91bf705d1a4d8dd612ee524020108d0875
3
+ size 8343552
requirements.txt ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ altair==4.2.0
2
+ argon2-cffi==21.3.0
3
+ argon2-cffi-bindings==21.2.0
4
+ astor==0.8.1
5
+ attrs==21.4.0
6
+ backcall==0.2.0
7
+ base58==2.1.1
8
+ bleach==4.1.0
9
+ blinker==1.4
10
+ cachetools==5.0.0
11
+ certifi==2021.10.8
12
+ cffi==1.15.0
13
+ charset-normalizer==2.0.10
14
+ click==7.1.2
15
+ colorama==0.4.4
16
+ debugpy==1.5.1
17
+ decorator==5.1.1
18
+ defusedxml==0.7.1
19
+ entrypoints==0.3
20
+ Flask==2.0.2
21
+ gitdb==4.0.9
22
+ GitPython==3.1.25
23
+ idna==3.3
24
+ ipykernel==6.6.1
25
+ ipython==7.31.0
26
+ ipython-genutils==0.2.0
27
+ ipywidgets==7.6.5
28
+ itsdangerous==2.0.1
29
+ jedi==0.18.1
30
+ Jinja2==3.0.3
31
+ jsonschema==4.3.3
32
+ jupyter-client==7.1.0
33
+ jupyter-core==4.9.1
34
+ jupyterlab-pygments==0.1.2
35
+ jupyterlab-widgets==1.0.2
36
+ MarkupSafe==2.0.1
37
+ matplotlib-inline==0.1.3
38
+ mistune==0.8.4
39
+ nbclient==0.5.9
40
+ nbconvert==6.4.0
41
+ nbformat==5.1.3
42
+ nest-asyncio==1.5.4
43
+ notebook==6.4.6
44
+ numpy==1.22.0
45
+ packaging==21.3
46
+ pandas==1.3.5
47
+ pandocfilters==1.5.0
48
+ parso==0.8.3
49
+ pickleshare==0.7.5
50
+ Pillow==9.0.0
51
+ prometheus-client==0.12.0
52
+ prompt-toolkit==3.0.24
53
+ protobuf==3.19.1
54
+ pyarrow==6.0.1
55
+ pycparser==2.21
56
+ pydeck==0.7.1
57
+ Pygments==2.11.2
58
+ Pympler==1.0.1
59
+ pyparsing==3.0.6
60
+ pyrsistent==0.18.0
61
+ python-dateutil==2.8.2
62
+ pytz==2021.3
63
+ pytz-deprecation-shim==0.1.0.post0
64
+ pyzmq==22.3.0
65
+ requests==2.27.1
66
+ Send2Trash==1.8.0
67
+ six==1.16.0
68
+ smmap==5.0.0
69
+ streamlit==1.3.1
70
+ terminado==0.12.1
71
+ testpath==0.5.0
72
+ toml==0.10.2
73
+ toolz==0.11.2
74
+ tornado==6.1
75
+ traitlets==5.1.1
76
+ tzdata==2021.5
77
+ tzlocal==4.1
78
+ urllib3==1.26.8
79
+ validators==0.18.2
80
+ watchdog==2.1.6
81
+ wcwidth==0.2.5
82
+ webencodings==0.5.1
83
+ Werkzeug==2.0.2
84
+ widgetsnbextension==3.5.2
rom.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ import os
2
+ scraper = os.system('chmod +x apkafka.sh && ./apkafka.sh')
3
+ print(scraper)
runtime.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ python-3.9.6