LinkInCell 0.0.2__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.2/src/LinkInCell.egg-info → linkincell-1.0.0}/PKG-INFO +25 -10
- {linkincell-0.0.2 → linkincell-1.0.0}/README.md +22 -9
- {linkincell-0.0.2 → linkincell-1.0.0}/setup.cfg +1 -1
- {linkincell-0.0.2 → linkincell-1.0.0}/setup.py +2 -2
- {linkincell-0.0.2 → linkincell-1.0.0/src/LinkInCell.egg-info}/PKG-INFO +25 -10
- {linkincell-0.0.2 → linkincell-1.0.0}/LICENSE +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/pyproject.toml +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell/__init__.py +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell/custom_exception.py +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell/logger.py +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell/web.py +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell/youtube.py +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell.egg-info/SOURCES.txt +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell.egg-info/dependency_links.txt +0 -0
- {linkincell-0.0.2 → linkincell-1.0.0}/src/LinkInCell.egg-info/requires.txt +0 -0
- {linkincell-0.0.2 → 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
|
|
@@ -10,6 +10,8 @@ Project-URL: Bug Tracker, https://github.com/readwanur19/LinkInCell/issues
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.8
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.9
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
13
15
|
License-File: LICENSE
|
|
14
16
|
Requires-Dist: ensure==1.0.2
|
|
15
17
|
Requires-Dist: py-youtube==1.1.7
|
|
@@ -21,9 +23,9 @@ Requires-Dist: tox>=3.25.1; extra == "testing"
|
|
|
21
23
|
|
|
22
24
|
# LinkInCell 🔗
|
|
23
25
|
|
|
24
|
-
[](https://
|
|
26
|
+
[](https://pypi.org/project/LinkInCell/)
|
|
25
27
|
[](https://pypi.org/project/LinkInCell/)
|
|
26
|
-
[](https://
|
|
28
|
+
[](https://github.com/Readwanur/LinkInCell/blob/main/LICENSE)
|
|
27
29
|
|
|
28
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.
|
|
29
31
|
|
|
@@ -44,6 +46,18 @@ You can install `LinkInCell` directly from PyPI using pip:
|
|
|
44
46
|
pip install LinkInCell
|
|
45
47
|
```
|
|
46
48
|
|
|
49
|
+
```python
|
|
50
|
+
from LinkInCell.youtube import render_youtube
|
|
51
|
+
|
|
52
|
+
render_youtube("https://www.youtube.com/watch?v=qJACTDMfBvc&pp=0gcJCUELAYcqIYzv")
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
```python
|
|
56
|
+
from LinkInCell.web import render_web
|
|
57
|
+
|
|
58
|
+
render_web("https://pytorch.org/")
|
|
59
|
+
```
|
|
60
|
+
|
|
47
61
|
# How to install this package in your system
|
|
48
62
|
|
|
49
63
|
```bash
|
|
@@ -65,25 +79,26 @@ Using `LinkInCell` is incredibly simple. Import the package and pass your target
|
|
|
65
79
|
|
|
66
80
|
### 1. Rendering a Website
|
|
67
81
|
|
|
68
|
-
python
|
|
69
|
-
from
|
|
82
|
+
```python
|
|
83
|
+
from LinkInCell.web import render_web
|
|
70
84
|
|
|
71
85
|
# Render a full webpage inside your notebook cell
|
|
72
|
-
render_web("https://
|
|
73
|
-
|
|
86
|
+
render_web("https://pandas.pydata.org/", width="100%", height="500px")
|
|
87
|
+
```
|
|
74
88
|
|
|
75
89
|
### 2. Rendering a YouTube Video
|
|
76
90
|
|
|
77
|
-
python
|
|
78
|
-
from
|
|
91
|
+
```python
|
|
92
|
+
from LinkInCell.youtube import render_youtube
|
|
79
93
|
|
|
80
94
|
# Pass the standard YouTube URL or the video ID
|
|
81
95
|
render_youtube("https://www.youtube.com/watch?v=dQw4w9WgXcQ", width=800, height=450)
|
|
96
|
+
```
|
|
82
97
|
|
|
83
98
|
|
|
84
99
|
## 🛠️ Requirements
|
|
85
100
|
|
|
86
|
-
* Python 3.
|
|
101
|
+
* Python 3.8+
|
|
87
102
|
* Jupyter Notebook or JupyterLab
|
|
88
103
|
* `IPython` (Usually comes pre-installed with Jupyter)
|
|
89
104
|
|
|
@@ -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
|
|
|
@@ -23,6 +23,18 @@ You can install `LinkInCell` directly from PyPI using pip:
|
|
|
23
23
|
pip install LinkInCell
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
```python
|
|
27
|
+
from LinkInCell.youtube import render_youtube
|
|
28
|
+
|
|
29
|
+
render_youtube("https://www.youtube.com/watch?v=qJACTDMfBvc&pp=0gcJCUELAYcqIYzv")
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```python
|
|
33
|
+
from LinkInCell.web import render_web
|
|
34
|
+
|
|
35
|
+
render_web("https://pytorch.org/")
|
|
36
|
+
```
|
|
37
|
+
|
|
26
38
|
# How to install this package in your system
|
|
27
39
|
|
|
28
40
|
```bash
|
|
@@ -44,25 +56,26 @@ Using `LinkInCell` is incredibly simple. Import the package and pass your target
|
|
|
44
56
|
|
|
45
57
|
### 1. Rendering a Website
|
|
46
58
|
|
|
47
|
-
python
|
|
48
|
-
from
|
|
59
|
+
```python
|
|
60
|
+
from LinkInCell.web import render_web
|
|
49
61
|
|
|
50
62
|
# Render a full webpage inside your notebook cell
|
|
51
|
-
render_web("https://
|
|
52
|
-
|
|
63
|
+
render_web("https://pandas.pydata.org/", width="100%", height="500px")
|
|
64
|
+
```
|
|
53
65
|
|
|
54
66
|
### 2. Rendering a YouTube Video
|
|
55
67
|
|
|
56
|
-
python
|
|
57
|
-
from
|
|
68
|
+
```python
|
|
69
|
+
from LinkInCell.youtube import render_youtube
|
|
58
70
|
|
|
59
71
|
# Pass the standard YouTube URL or the video ID
|
|
60
72
|
render_youtube("https://www.youtube.com/watch?v=dQw4w9WgXcQ", width=800, height=450)
|
|
73
|
+
```
|
|
61
74
|
|
|
62
75
|
|
|
63
76
|
## 🛠️ Requirements
|
|
64
77
|
|
|
65
|
-
* Python 3.
|
|
78
|
+
* Python 3.8+
|
|
66
79
|
* Jupyter Notebook or JupyterLab
|
|
67
80
|
* `IPython` (Usually comes pre-installed with Jupyter)
|
|
68
81
|
|
|
@@ -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
|
|
7
|
+
__version__ = "1.0.0"
|
|
8
8
|
|
|
9
9
|
REPO_NAME = "LinkInCell"
|
|
10
10
|
AUTHOR_USER_NAME = "readwanur19"
|
|
@@ -18,7 +18,7 @@ setuptools.setup(
|
|
|
18
18
|
author_email= AUTHOR_EMAIL,
|
|
19
19
|
description= "A small python package",
|
|
20
20
|
long_description= long_description,
|
|
21
|
-
|
|
21
|
+
long_description_content_type = "text/markdown",
|
|
22
22
|
url = f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
|
|
23
23
|
project_urls = {
|
|
24
24
|
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
|
|
@@ -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
|
|
@@ -10,6 +10,8 @@ Project-URL: Bug Tracker, https://github.com/readwanur19/LinkInCell/issues
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.8
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.9
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
13
15
|
License-File: LICENSE
|
|
14
16
|
Requires-Dist: ensure==1.0.2
|
|
15
17
|
Requires-Dist: py-youtube==1.1.7
|
|
@@ -21,9 +23,9 @@ Requires-Dist: tox>=3.25.1; extra == "testing"
|
|
|
21
23
|
|
|
22
24
|
# LinkInCell 🔗
|
|
23
25
|
|
|
24
|
-
[](https://
|
|
26
|
+
[](https://pypi.org/project/LinkInCell/)
|
|
25
27
|
[](https://pypi.org/project/LinkInCell/)
|
|
26
|
-
[](https://
|
|
28
|
+
[](https://github.com/Readwanur/LinkInCell/blob/main/LICENSE)
|
|
27
29
|
|
|
28
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.
|
|
29
31
|
|
|
@@ -44,6 +46,18 @@ You can install `LinkInCell` directly from PyPI using pip:
|
|
|
44
46
|
pip install LinkInCell
|
|
45
47
|
```
|
|
46
48
|
|
|
49
|
+
```python
|
|
50
|
+
from LinkInCell.youtube import render_youtube
|
|
51
|
+
|
|
52
|
+
render_youtube("https://www.youtube.com/watch?v=qJACTDMfBvc&pp=0gcJCUELAYcqIYzv")
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
```python
|
|
56
|
+
from LinkInCell.web import render_web
|
|
57
|
+
|
|
58
|
+
render_web("https://pytorch.org/")
|
|
59
|
+
```
|
|
60
|
+
|
|
47
61
|
# How to install this package in your system
|
|
48
62
|
|
|
49
63
|
```bash
|
|
@@ -65,25 +79,26 @@ Using `LinkInCell` is incredibly simple. Import the package and pass your target
|
|
|
65
79
|
|
|
66
80
|
### 1. Rendering a Website
|
|
67
81
|
|
|
68
|
-
python
|
|
69
|
-
from
|
|
82
|
+
```python
|
|
83
|
+
from LinkInCell.web import render_web
|
|
70
84
|
|
|
71
85
|
# Render a full webpage inside your notebook cell
|
|
72
|
-
render_web("https://
|
|
73
|
-
|
|
86
|
+
render_web("https://pandas.pydata.org/", width="100%", height="500px")
|
|
87
|
+
```
|
|
74
88
|
|
|
75
89
|
### 2. Rendering a YouTube Video
|
|
76
90
|
|
|
77
|
-
python
|
|
78
|
-
from
|
|
91
|
+
```python
|
|
92
|
+
from LinkInCell.youtube import render_youtube
|
|
79
93
|
|
|
80
94
|
# Pass the standard YouTube URL or the video ID
|
|
81
95
|
render_youtube("https://www.youtube.com/watch?v=dQw4w9WgXcQ", width=800, height=450)
|
|
96
|
+
```
|
|
82
97
|
|
|
83
98
|
|
|
84
99
|
## 🛠️ Requirements
|
|
85
100
|
|
|
86
|
-
* Python 3.
|
|
101
|
+
* Python 3.8+
|
|
87
102
|
* Jupyter Notebook or JupyterLab
|
|
88
103
|
* `IPython` (Usually comes pre-installed with Jupyter)
|
|
89
104
|
|
|
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
|