awacke1 commited on
Commit
f5a5911
ยท
1 Parent(s): 4cd6b89

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -22
app.py CHANGED
@@ -1,26 +1,26 @@
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
  """)
 
1
  import streamlit as st
2
 
3
  st.markdown("""
4
+ | No. | Library | Type | Definition | URL |
5
+ |-----|-----------------|-----------------|------------------------------------------------------------------|--------------------------------------------------------------------------|
6
+ | 1 | Beautiful Soup | Web scraping | ๐Ÿ•ธ๏ธ Library for web scraping | https://pypi.org/project/beautifulsoup4/ |
7
+ | 2 | Keras | Neural networks | ๐Ÿง  Deep learning library for Python | https://pypi.org/project/Keras/ |
8
+ | 3 | Mahotas | Computer vision | ๐Ÿ‘๏ธ Image processing library for computer vision | https://pypi.org/project/mahotas/ |
9
+ | 4 | Matplotlib | Data analysis | ๐Ÿ“Š Data visualization library | https://pypi.org/project/matplotlib/ |
10
+ | 5 | NumPy | Numerical | ๐Ÿงฎ Library for numerical computing | https://pypi.org/project/numpy/ |
11
+ | 6 | OpenCV | Computer vision | ๐Ÿ‘๏ธ Library for computer vision | https://pypi.org/project/opencv-python/ |
12
+ | 7 | Pandas | Data analysis | ๐Ÿผ Library for data manipulation | https://pypi.org/project/pandas/ |
13
+ | 8 | PyTest | Testing | ๐Ÿงช Testing framework for Python | https://pypi.org/project/pytest/ |
14
+ | 9 | PyTorch | Machine learning| ๐Ÿ”ฅ Open-source machine learning library based on Torch | https://pypi.org/project/torch/ |
15
+ | 10 | PyUnit | Testing | ๐Ÿงช Unit testing framework for Python | https://pypi.org/project/pyunit/ |
16
+ | 11 | Requests | Web requests | ๐ŸŒ HTTP library | https://pypi.org/project/requests/ |
17
+ | 12 | Scikit-Learn | Machine learning| ๐Ÿค– Machine learning library | https://pypi.org/project/scikit-learn/ |
18
+ | 13 | SciPy | Scientific | ๐Ÿงช Library for scientific computing | https://pypi.org/project/scipy/ |
19
+ | 14 | Seaborn | Data analysis | ๐Ÿ“Š Data visualization library based on Matplotlib | https://pypi.org/project/seaborn/ |
20
+ | 15 | Selenium | Web automation | ๐Ÿš€ Web driver for browser automation | https://pypi.org/project/selenium/ |
21
+ | 16 | SimpleITK | Medical imaging| ๐Ÿฅ Medical image processing library | https://pypi.org/project/SimpleITK/ |
22
+ | 17 | TensorFlow | Machine learning| ๐Ÿค– Open-source machine learning library developed by Google | https://pypi.org/project/tensorflow/ |
23
+ | 18 | Theano | Machine learning| ๐Ÿ”ข Numerical computation library for deep learning models | https://pypi.org/project/Theano/ |
24
+ | 19 | Pillow | Image processing| ๐Ÿ–ผ๏ธ Image processing library | https://pypi.org/project/Pillow/ |
25
+ | 20 | ScraPy | Web scraping | ๐Ÿ•ท๏ธ Web crawling and scraping library | https://pypi.org/project/Scrapy/ |
26
  """)