mirror of
https://gitee.com/py2cn/pyminer.git
synced 2024-11-29 18:28:11 +08:00
11 lines
327 B
Python
11 lines
327 B
Python
import os
|
||
import sys
|
||
|
||
# 项目的根路径,即pyminer项目的根文件夹
|
||
base = os.path.dirname(os.path.dirname(__file__))
|
||
sys.path.insert(0, base)
|
||
|
||
html_path = os.path.join(base, 'docs', 'build', 'html')
|
||
for line in os.popen(f'ghp-import -npfr git@gitee.com:py2cn/pyminer -b pages "{html_path}"'):
|
||
print(line, end='')
|