SessionSmith 0.1.0__py3-none-any.whl
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.
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: SessionSmith
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Simple session save/load utility for Jupyter notebooks using dill
|
|
5
|
+
Home-page: https://github.com/yut0takagi/SessionSmith
|
|
6
|
+
Author: YutoTAKAGI
|
|
7
|
+
Author-email: yutotkg.1040@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: dill
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: author-email
|
|
17
|
+
Dynamic: classifier
|
|
18
|
+
Dynamic: description
|
|
19
|
+
Dynamic: description-content-type
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: license
|
|
22
|
+
Dynamic: requires-dist
|
|
23
|
+
Dynamic: requires-python
|
|
24
|
+
Dynamic: summary
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
# SessionSmith
|
|
28
|
+
|
|
29
|
+
**SessionSmith** は、Jupyter Notebook や Python 実行時のセッション(変数・オブジェクト)を簡単に保存・復元できる軽量ライブラリです。
|
|
30
|
+
|
|
31
|
+
## 特徴
|
|
32
|
+
|
|
33
|
+
- `dill` を使ってシームレスにセッション保存
|
|
34
|
+
- たった2行で保存&復元
|
|
35
|
+
- 簡単&高速
|
|
36
|
+
|
|
37
|
+
## インストール
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install SessionSmith
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## 使い方
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
from session_smith import save_session, load_session
|
|
47
|
+
|
|
48
|
+
# セッション保存
|
|
49
|
+
save_session("my_session.dill")
|
|
50
|
+
|
|
51
|
+
# セッション復元
|
|
52
|
+
load_session("my_session.dill")
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## ライセンス
|
|
56
|
+
|
|
57
|
+
MIT
|
|
58
|
+
"""
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
sessionsmith-0.1.0.dist-info/METADATA,sha256=kHOBS9RkgdHxCdsVIoIIoi8lullzLDvK_E1w5FCGCEE,1307
|
|
2
|
+
sessionsmith-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
3
|
+
sessionsmith-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
4
|
+
sessionsmith-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|