LinkInCell 0.0.4__tar.gz → 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: LinkInCell
3
- Version: 0.0.4
3
+ Version: 1.0.0
4
4
  Summary: A small python package
5
5
  Home-page: https://github.com/readwanur19/LinkInCell
6
6
  Author: readwanur19
@@ -23,9 +23,9 @@ Requires-Dist: tox>=3.25.1; extra == "testing"
23
23
 
24
24
  # LinkInCell 🔗
25
25
 
26
- [![PyPI version](https://badge.fury.io/py/LinkInCell.svg)](https://badge.fury.io/py/LinkInCell)
26
+ [![PyPI version](https://badge.fury.io/py/LinkInCell.svg)](https://pypi.org/project/LinkInCell/)
27
27
  [![Python Versions](https://img.shields.io/pypi/pyversions/LinkInCell.svg)](https://pypi.org/project/LinkInCell/)
28
- [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
28
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://github.com/Readwanur/LinkInCell/blob/main/LICENSE)
29
29
 
30
30
  **LinkInCell** is a lightweight PyPI package that brings the web to your Jupyter environment. It allows you to seamlessly render fully interactive websites and embedded YouTube videos directly inside your `.ipynb` notebook cells.
31
31
 
@@ -49,13 +49,13 @@ pip install LinkInCell
49
49
  ```python
50
50
  from LinkInCell.youtube import render_youtube
51
51
 
52
- render_youtube("https://www.youtube.com/watch?v=h25pePMdoPA&t=712s")
52
+ render_youtube("https://www.youtube.com/watch?v=qJACTDMfBvc&pp=0gcJCUELAYcqIYzv")
53
53
  ```
54
54
 
55
55
  ```python
56
56
  from LinkInCell.web import render_web
57
57
 
58
- render_web("https://www.google.com/")
58
+ render_web("https://pytorch.org/")
59
59
  ```
60
60
 
61
61
  # How to install this package in your system
@@ -83,7 +83,7 @@ Using `LinkInCell` is incredibly simple. Import the package and pass your target
83
83
  from LinkInCell.web import render_web
84
84
 
85
85
  # Render a full webpage inside your notebook cell
86
- render_web("https://en.wikipedia.org/wiki/Python_(programming_language)", width="100%", height="500px")
86
+ render_web("https://pandas.pydata.org/", width="100%", height="500px")
87
87
  ```
88
88
 
89
89
  ### 2. Rendering a YouTube Video
@@ -1,8 +1,8 @@
1
1
  # LinkInCell 🔗
2
2
 
3
- [![PyPI version](https://badge.fury.io/py/LinkInCell.svg)](https://badge.fury.io/py/LinkInCell)
3
+ [![PyPI version](https://badge.fury.io/py/LinkInCell.svg)](https://pypi.org/project/LinkInCell/)
4
4
  [![Python Versions](https://img.shields.io/pypi/pyversions/LinkInCell.svg)](https://pypi.org/project/LinkInCell/)
5
- [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://github.com/Readwanur/LinkInCell/blob/main/LICENSE)
6
6
 
7
7
  **LinkInCell** is a lightweight PyPI package that brings the web to your Jupyter environment. It allows you to seamlessly render fully interactive websites and embedded YouTube videos directly inside your `.ipynb` notebook cells.
8
8
 
@@ -26,13 +26,13 @@ pip install LinkInCell
26
26
  ```python
27
27
  from LinkInCell.youtube import render_youtube
28
28
 
29
- render_youtube("https://www.youtube.com/watch?v=h25pePMdoPA&t=712s")
29
+ render_youtube("https://www.youtube.com/watch?v=qJACTDMfBvc&pp=0gcJCUELAYcqIYzv")
30
30
  ```
31
31
 
32
32
  ```python
33
33
  from LinkInCell.web import render_web
34
34
 
35
- render_web("https://www.google.com/")
35
+ render_web("https://pytorch.org/")
36
36
  ```
37
37
 
38
38
  # How to install this package in your system
@@ -60,7 +60,7 @@ Using `LinkInCell` is incredibly simple. Import the package and pass your target
60
60
  from LinkInCell.web import render_web
61
61
 
62
62
  # Render a full webpage inside your notebook cell
63
- render_web("https://en.wikipedia.org/wiki/Python_(programming_language)", width="100%", height="500px")
63
+ render_web("https://pandas.pydata.org/", width="100%", height="500px")
64
64
  ```
65
65
 
66
66
  ### 2. Rendering a YouTube Video
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as f:
4
4
  long_description = f.read()
5
5
 
6
6
 
7
- __version__ = "0.0.4"
7
+ __version__ = "1.0.0"
8
8
 
9
9
  REPO_NAME = "LinkInCell"
10
10
  AUTHOR_USER_NAME = "readwanur19"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: LinkInCell
3
- Version: 0.0.4
3
+ Version: 1.0.0
4
4
  Summary: A small python package
5
5
  Home-page: https://github.com/readwanur19/LinkInCell
6
6
  Author: readwanur19
@@ -23,9 +23,9 @@ Requires-Dist: tox>=3.25.1; extra == "testing"
23
23
 
24
24
  # LinkInCell 🔗
25
25
 
26
- [![PyPI version](https://badge.fury.io/py/LinkInCell.svg)](https://badge.fury.io/py/LinkInCell)
26
+ [![PyPI version](https://badge.fury.io/py/LinkInCell.svg)](https://pypi.org/project/LinkInCell/)
27
27
  [![Python Versions](https://img.shields.io/pypi/pyversions/LinkInCell.svg)](https://pypi.org/project/LinkInCell/)
28
- [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
28
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://github.com/Readwanur/LinkInCell/blob/main/LICENSE)
29
29
 
30
30
  **LinkInCell** is a lightweight PyPI package that brings the web to your Jupyter environment. It allows you to seamlessly render fully interactive websites and embedded YouTube videos directly inside your `.ipynb` notebook cells.
31
31
 
@@ -49,13 +49,13 @@ pip install LinkInCell
49
49
  ```python
50
50
  from LinkInCell.youtube import render_youtube
51
51
 
52
- render_youtube("https://www.youtube.com/watch?v=h25pePMdoPA&t=712s")
52
+ render_youtube("https://www.youtube.com/watch?v=qJACTDMfBvc&pp=0gcJCUELAYcqIYzv")
53
53
  ```
54
54
 
55
55
  ```python
56
56
  from LinkInCell.web import render_web
57
57
 
58
- render_web("https://www.google.com/")
58
+ render_web("https://pytorch.org/")
59
59
  ```
60
60
 
61
61
  # How to install this package in your system
@@ -83,7 +83,7 @@ Using `LinkInCell` is incredibly simple. Import the package and pass your target
83
83
  from LinkInCell.web import render_web
84
84
 
85
85
  # Render a full webpage inside your notebook cell
86
- render_web("https://en.wikipedia.org/wiki/Python_(programming_language)", width="100%", height="500px")
86
+ render_web("https://pandas.pydata.org/", width="100%", height="500px")
87
87
  ```
88
88
 
89
89
  ### 2. Rendering a YouTube Video
File without changes
File without changes
File without changes