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.
- {linkincell-0.0.4/src/LinkInCell.egg-info → linkincell-1.0.0}/PKG-INFO +6 -6
- {linkincell-0.0.4 → linkincell-1.0.0}/README.md +5 -5
- {linkincell-0.0.4 → linkincell-1.0.0}/setup.py +1 -1
- {linkincell-0.0.4 → linkincell-1.0.0/src/LinkInCell.egg-info}/PKG-INFO +6 -6
- {linkincell-0.0.4 → linkincell-1.0.0}/LICENSE +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/pyproject.toml +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/setup.cfg +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell/__init__.py +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell/custom_exception.py +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell/logger.py +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell/web.py +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell/youtube.py +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell.egg-info/SOURCES.txt +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell.egg-info/dependency_links.txt +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell.egg-info/requires.txt +0 -0
- {linkincell-0.0.4 → linkincell-1.0.0}/src/LinkInCell.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: LinkInCell
|
|
3
|
-
Version: 0.0
|
|
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
|
-
[](https://
|
|
26
|
+
[](https://pypi.org/project/LinkInCell/)
|
|
27
27
|
[](https://pypi.org/project/LinkInCell/)
|
|
28
|
-
[](https://
|
|
28
|
+
[](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=
|
|
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://
|
|
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://
|
|
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
|
-
[](https://
|
|
3
|
+
[](https://pypi.org/project/LinkInCell/)
|
|
4
4
|
[](https://pypi.org/project/LinkInCell/)
|
|
5
|
-
[](https://
|
|
5
|
+
[](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=
|
|
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://
|
|
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://
|
|
63
|
+
render_web("https://pandas.pydata.org/", width="100%", height="500px")
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
### 2. Rendering a YouTube Video
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: LinkInCell
|
|
3
|
-
Version: 0.0
|
|
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
|
-
[](https://
|
|
26
|
+
[](https://pypi.org/project/LinkInCell/)
|
|
27
27
|
[](https://pypi.org/project/LinkInCell/)
|
|
28
|
-
[](https://
|
|
28
|
+
[](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=
|
|
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://
|
|
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://
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|