SessionSmith 0.1.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.
@@ -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,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,6 @@
1
+ setup.py
2
+ SessionSmith.egg-info/PKG-INFO
3
+ SessionSmith.egg-info/SOURCES.txt
4
+ SessionSmith.egg-info/dependency_links.txt
5
+ SessionSmith.egg-info/requires.txt
6
+ SessionSmith.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ # setup.py
2
+ from setuptools import setup, find_packages
3
+
4
+ setup(
5
+ name="SessionSmith",
6
+ version="0.1.0",
7
+ packages=find_packages(),
8
+ install_requires=[
9
+ "dill"
10
+ ],
11
+ author="YutoTAKAGI",
12
+ author_email="yutotkg.1040@gmail.com",
13
+ description="Simple session save/load utility for Jupyter notebooks using dill",
14
+ long_description=open('README.md', encoding='utf-8').read(),
15
+ long_description_content_type='text/markdown',
16
+ url="https://github.com/yut0takagi/SessionSmith",
17
+ license="MIT",
18
+ classifiers=[
19
+ "Programming Language :: Python :: 3",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Operating System :: OS Independent",
22
+ ],
23
+ python_requires='>=3.6',
24
+ )