Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,47 +1,26 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.markdown("""
|
4 |
-
| Library | Definition |
|
5 |
-
|
6 |
-
|
|
7 |
-
|
8 |
-
|
|
9 |
-
|
10 |
-
|
|
11 |
-
|
12 |
-
|
|
13 |
-
|
14 |
-
|
|
15 |
-
|
16 |
-
|
|
17 |
-
|
18 |
-
|
|
19 |
-
|
20 |
-
|
|
21 |
-
|
22 |
-
|
|
23 |
-
|
24 |
-
|
|
25 |
-
|
26 |
-
| OpenCV | ๐๏ธ Computer vision library |
|
27 |
-
|-----------------|------------------------------------------------------------------|
|
28 |
-
| Mahotas | ๐๏ธ Computer vision library for image processing |
|
29 |
-
|-----------------|------------------------------------------------------------------|
|
30 |
-
| SimpleITK | ๐ฅ Medical image processing library |
|
31 |
-
|-----------------|------------------------------------------------------------------|
|
32 |
-
| Pillow | ๐ผ๏ธ Image processing library |
|
33 |
-
|-----------------|------------------------------------------------------------------|
|
34 |
-
| Requests | ๐ HTTP library |
|
35 |
-
|-----------------|------------------------------------------------------------------|
|
36 |
-
| Beautiful Soup | ๐ธ๏ธ Web scraping library |
|
37 |
-
|-----------------|------------------------------------------------------------------|
|
38 |
-
| Selenium | ๐ Web driver for browser automation |
|
39 |
-
|-----------------|------------------------------------------------------------------|
|
40 |
-
| ScraPy | ๐ท๏ธ Web crawling and scraping library |
|
41 |
-
|-----------------|------------------------------------------------------------------|
|
42 |
-
| PyTest | ๐งช Testing framework for Python |
|
43 |
-
|-----------------|------------------------------------------------------------------|
|
44 |
-
| PyUnit | ๐งช Unit testing framework for Python |
|
45 |
-
|
46 |
-
|
47 |
""")
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.markdown("""
|
4 |
+
| No. | Library | Type | Definition |
|
5 |
+
|-----|-----------------|-----------------|------------------------------------------------------------------|
|
6 |
+
| 1 | Beautiful Soup | Web scraping | ๐ธ๏ธ Library for web scraping |
|
7 |
+
| 2 | Keras | Neural networks | ๐ง Deep learning library for Python |
|
8 |
+
| 3 | Mahotas | Computer vision | ๐๏ธ Image processing library for computer vision |
|
9 |
+
| 4 | Matplotlib | Data analysis | ๐ Data visualization library |
|
10 |
+
| 5 | NumPy | Numerical | ๐งฎ Library for numerical computing |
|
11 |
+
| 6 | OpenCV | Computer vision | ๐๏ธ Library for computer vision |
|
12 |
+
| 7 | Pandas | Data analysis | ๐ผ Library for data manipulation |
|
13 |
+
| 8 | PyTest | Testing | ๐งช Testing framework for Python |
|
14 |
+
| 9 | PyTorch | Machine learning| ๐ฅ Open-source machine learning library based on Torch |
|
15 |
+
| 10 | PyUnit | Testing | ๐งช Unit testing framework for Python |
|
16 |
+
| 11 | Requests | Web requests | ๐ HTTP library |
|
17 |
+
| 12 | Scikit-Learn | Machine learning| ๐ค Machine learning library |
|
18 |
+
| 13 | SciPy | Scientific | ๐งช Library for scientific computing |
|
19 |
+
| 14 | Seaborn | Data analysis | ๐ Data visualization library based on Matplotlib |
|
20 |
+
| 15 | Selenium | Web automation | ๐ Web driver for browser automation |
|
21 |
+
| 16 | SimpleITK | Medical imaging| ๐ฅ Medical image processing library |
|
22 |
+
| 17 | TensorFlow | Machine learning| ๐ค Open-source machine learning library developed by Google |
|
23 |
+
| 18 | Theano | Machine learning| ๐ข Numerical computation library for deep learning models |
|
24 |
+
| 19 | Pillow | Image processing| ๐ผ๏ธ Image processing library |
|
25 |
+
| 20 | ScraPy | Web scraping | ๐ท๏ธ Web crawling and scraping library |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
""")
|