huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan-fix1 2025.3.24.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.
- HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/README.md +27 -0
- HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/__init__.py +10 -0
- HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/__main__.py +21 -0
- HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/file.pdf +0 -0
- HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/index.html +6 -0
- huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/METADATA +54 -0
- huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/RECORD +10 -0
- huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/WHEEL +5 -0
- huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/entry_points.txt +3 -0
- huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
# 华夏智诚 PMP 基础培训标准版 V11.0(刘世涵)
|
2
|
+
|
3
|
+
## 下载
|
4
|
+
|
5
|
+
### Docker
|
6
|
+
|
7
|
+
```
|
8
|
+
docker pull apachecn0/huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan
|
9
|
+
docker run -tid -p <port>:80 apachecn0/huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan
|
10
|
+
# 访问 http://localhost:{port} 查看文档
|
11
|
+
```
|
12
|
+
|
13
|
+
### PYPI
|
14
|
+
|
15
|
+
```
|
16
|
+
pip install huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan
|
17
|
+
huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan <port>
|
18
|
+
# 访问 http://localhost:{port} 查看文档
|
19
|
+
```
|
20
|
+
|
21
|
+
### NPM
|
22
|
+
|
23
|
+
```
|
24
|
+
npm install -g huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-vyiyi-0-liushihan
|
25
|
+
huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-vyiyi-0-liushihan <port>
|
26
|
+
# 访问 http://localhost:{port} 查看文档
|
27
|
+
```
|
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
# -*- coding: utf-8 -*-
|
3
|
+
|
4
|
+
"""huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan-fix1
|
5
|
+
https://github.com/apachecn/huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan-fix1"""
|
6
|
+
|
7
|
+
__author__ = "ApacheCN"
|
8
|
+
__email__ = "apachecn@163.com"
|
9
|
+
__license__ = "CC BY-NC-SA 4.0"
|
10
|
+
__version__ = "2025.3.24.0"
|
@@ -0,0 +1,21 @@
|
|
1
|
+
from http.server import \
|
2
|
+
SimpleHTTPRequestHandler, \
|
3
|
+
HTTPServer
|
4
|
+
from socketserver import ThreadingMixIn
|
5
|
+
import sys
|
6
|
+
from os import path
|
7
|
+
import os
|
8
|
+
|
9
|
+
class ThreadingHTTPServer(ThreadingMixIn, HTTPServer):
|
10
|
+
daemon_threads = True
|
11
|
+
|
12
|
+
def main():
|
13
|
+
os.chdir(path.dirname(__file__))
|
14
|
+
port = sys.argv[1] if len(sys.argv) > 1 else 3000
|
15
|
+
addr = ('localhost', int(port))
|
16
|
+
SimpleHTTPRequestHandler.protocol_version = "HTTP/1.1"
|
17
|
+
svr = ThreadingHTTPServer(addr, SimpleHTTPRequestHandler)
|
18
|
+
print(f"Serving HTTP on localhost port {port} ...")
|
19
|
+
svr.serve_forever()
|
20
|
+
|
21
|
+
if __name__ == '__main__': main()
|
Binary file
|
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/METADATA
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan-fix1
|
3
|
+
Version: 2025.3.24.0
|
4
|
+
Summary: 华夏智诚 PMP 基础培训标准版 V11.0(刘世涵)
|
5
|
+
Home-page: https://github.com/apachecn/huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan-fix1
|
6
|
+
Author: ApacheCN
|
7
|
+
Author-email: apachecn@163.com
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
9
|
+
Classifier: Environment :: Console
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: Intended Audience :: End Users/Desktop
|
12
|
+
Classifier: License :: Other/Proprietary License
|
13
|
+
Classifier: Natural Language :: Chinese (Simplified)
|
14
|
+
Classifier: Natural Language :: English
|
15
|
+
Classifier: Operating System :: OS Independent
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
18
|
+
Classifier: Programming Language :: Python :: 3.6
|
19
|
+
Classifier: Programming Language :: Python :: 3.7
|
20
|
+
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
21
|
+
Classifier: Topic :: Text Processing :: Markup :: HTML
|
22
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
23
|
+
Classifier: Topic :: Software Development :: Documentation
|
24
|
+
Classifier: Topic :: Documentation
|
25
|
+
Requires-Python: >=3.6
|
26
|
+
Description-Content-Type: text/markdown
|
27
|
+
|
28
|
+
# 华夏智诚 PMP 基础培训标准版 V11.0(刘世涵)
|
29
|
+
|
30
|
+
## 下载
|
31
|
+
|
32
|
+
### Docker
|
33
|
+
|
34
|
+
```
|
35
|
+
docker pull apachecn0/huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan
|
36
|
+
docker run -tid -p <port>:80 apachecn0/huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan
|
37
|
+
# 访问 http://localhost:{port} 查看文档
|
38
|
+
```
|
39
|
+
|
40
|
+
### PYPI
|
41
|
+
|
42
|
+
```
|
43
|
+
pip install huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan
|
44
|
+
huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan <port>
|
45
|
+
# 访问 http://localhost:{port} 查看文档
|
46
|
+
```
|
47
|
+
|
48
|
+
### NPM
|
49
|
+
|
50
|
+
```
|
51
|
+
npm install -g huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-vyiyi-0-liushihan
|
52
|
+
huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-vyiyi-0-liushihan <port>
|
53
|
+
# 访问 http://localhost:{port} 查看文档
|
54
|
+
```
|
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/RECORD
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/README.md,sha256=Ixjqnsu54UVuAV8RSHmHBHS_DD8QkG0LTiMn7kS8ufM,766
|
2
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/__init__.py,sha256=seE6nBzyHwkoHj0o2ZN2Fo-rvvzSvKLVmFUp7jdHo4g,338
|
3
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/__main__.py,sha256=StlRO3acXK2KUuyxyIo8iCn-lrgHJJFtHFGn0N6XCCM,635
|
4
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/file.pdf,sha256=c1rfxswtd3oV8VMat2KhQbyfLhWihUDB7H1-jhJAdUA,12487009
|
5
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1/index.html,sha256=_MGK6QxkE2rVGIG7ZaJ4ecKGzeeH4FZjepNV-U7xoO4,150
|
6
|
+
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/METADATA,sha256=zE2Gm3uXQQ7JbH79m1iJ2uD5_0JCmlqTmD7ZVLSHNqs,2012
|
7
|
+
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
+
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/entry_points.txt,sha256=3dLKdGno6HrFKlnBAKKhMrj82FLTurDnOOedWtC9a-k,287
|
9
|
+
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/top_level.txt,sha256=I5BNCCCLuG-5NnI6RLCiYAmreUYDt3TnAjo7AYqYnXo,57
|
10
|
+
huaxia_zhicheng_pmp_jichu_peixun_biaozhunban_v11_0_liushihan_fix1-2025.3.24.0.dist-info/RECORD,,
|
@@ -0,0 +1,3 @@
|
|
1
|
+
[console_scripts]
|
2
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1 = HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1.__main__:main
|
3
|
+
huaxia-zhicheng-pmp-jichu-peixun-biaozhunban-v11-0-liushihan-fix1 = HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1.__main__:main
|
@@ -0,0 +1 @@
|
|
1
|
+
HuaxiaZhichengPmpJichuPeixunBiaozhunbanV110LiushihanFix1
|