p115client 0.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 ChenyangGao <https://github.com/ChenyangGao>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.1
2
+ Name: p115client
3
+ Version: 0.0.0
4
+ Summary: Python 115 webdisk client.
5
+ Home-page: https://github.com/ChenyangGao/web-mount-packs/tree/main/python-module/p115client
6
+ License: MIT
7
+ Keywords: 115,webdisk,client
8
+ Author: ChenyangGao
9
+ Author-email: wosiwujm@gmail.com
10
+ Requires-Python: >=3.11,<4.0
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Topic :: Software Development
22
+ Classifier: Topic :: Software Development :: Libraries
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Requires-Dist: http_response
25
+ Requires-Dist: httpx
26
+ Requires-Dist: httpx_request (>=0.0.8.2)
27
+ Requires-Dist: multidict
28
+ Requires-Dist: orjson
29
+ Requires-Dist: pycryptodome
30
+ Requires-Dist: python-asynctools (>=0.0.4)
31
+ Requires-Dist: python-cookietools (>=0.0.2)
32
+ Requires-Dist: python-dictattr (>=0.0.4)
33
+ Requires-Dist: python-filewrap (>=0.2)
34
+ Requires-Dist: python-hashtools (>=0.0.3.3)
35
+ Requires-Dist: python-http_request (>=0.0.6)
36
+ Requires-Dist: python-httpfile (>=0.0.4)
37
+ Requires-Dist: python-iterutils (>=0.0.7.1)
38
+ Requires-Dist: python-startfile (>=0.0.2)
39
+ Requires-Dist: python-urlopen (>=0.0.6)
40
+ Requires-Dist: qrcode
41
+ Requires-Dist: yarl
42
+ Project-URL: Repository, https://github.com/ChenyangGao/web-mount-packs/tree/main/python-module/p115client
43
+ Description-Content-Type: text/markdown
44
+
45
+ # 115 cipher module
46
+
47
+ ## Installation
48
+
49
+ You can install via [pypi](https://pypi.org/project/cipher115/)
50
+
51
+ ```console
52
+ pip install -U cipher115
53
+ ```
54
+
55
+ ## Usage
56
+
57
+ ```python
58
+ from cipher115.fast import *
59
+ from cipher115.normal import *
60
+ ```
61
+
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env python3
2
+ # encoding: utf-8
3
+
4
+ __author__ = "ChenyangGao <https://chenyanggao.github.io>"
5
+ __version__ = (0, 0, 1)
6
+
7
+ from .client import *
8
+ from .exception import *