本文整理匯總了Python中src.tools.path.Path.reset_path方法的典型用法代碼示例。如果您正苦於以下問題:Python Path.reset_path方法的具體用法?Python Path.reset_path怎麽用?Python Path.reset_path使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類src.tools.path.Path
的用法示例。
在下文中一共展示了Path.reset_path方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: create_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_book(self, book_package):
book_package.image_container.set_save_path(Path.image_pool_path)
book_package.image_container.start_download()
title = book_package.get_title()
if not title:
# 電子書題目為空時自動跳過
# 否則會發生『rm -rf / 』的慘劇
return
Path.chdir(Path.base_path + u'/知乎電子書臨時資源庫/')
epub = Epub(title)
html_tmp_path = Path.html_pool_path + u'/'
image_tmp_path = Path.image_pool_path + u'/'
epub.set_creator(u'ZhihuHelp1.7.0')
epub.set_book_id()
epub.set_output_path(Path.result_path)
epub.add_css(Path.base_path + u'/www/css/markdown.css')
epub.add_css(Path.base_path + u'/www/css/customer.css')
epub.add_css(Path.base_path + u'/www/css/normalize.css')
for book in book_package.book_list:
page = book.page_list[0]
with open(html_tmp_path + page.filename, u'w') as html:
html.write(page.content)
epub.create_chapter(html_tmp_path + page.filename, page.title)
for page in book.page_list[1:]:
with open(html_tmp_path + page.filename, u'w') as html:
html.write(page.content)
epub.add_html(html_tmp_path + page.filename, page.title)
epub.finish_chapter()
for image in book_package.image_list:
epub.add_image(image_tmp_path + image['filename'])
epub.create()
Path.reset_path()
return
示例2: create_single_html_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_single_html_book(self, book_package):
title = book_package.get_title()
if not title:
# 電子書題目為空時自動跳過
# 否則會發生『rm -rf / 』的慘劇
return
Path.reset_path()
Path.chdir(Path.result_path)
Path.rmdir(u'./' + title)
Path.mkdir(u'./' + title)
Path.chdir(u'./' + title)
page = []
for book in book_package.book_list:
page += book.page_list
content = u' \r\n '.join([Match.html_body(x.content) for x in page]).replace(u'../images/', u'./images/')
with open(TemplateConfig.content_base_uri) as html:
content = html.read().format(title=title, body=content).replace(u'../style/', u'./')
with open(title + u'.html', 'w') as html:
html.write(content)
Path.copy(Path.html_pool_path + u'/../{}/OEBPS/images'.format(title), u'./images')
Path.copy(Path.www_css + u'/customer.css', u'./customer.css')
Path.copy(Path.www_css + u'/markdown.css', u'./markdown.css')
Path.copy(Path.www_css + u'/normalize.css', u'./normalize.css')
Path.reset_path()
return
示例3: create_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_book(self, command, counter):
Path.reset_path()
Debug.logger.info(u"開始製作第 {} 本電子書".format(counter))
Debug.logger.info(u"對記錄 {} 進行分析".format(command))
task_list = CommandParser.get_task_list(command) # 分析命令
if len(task_list) == 0:
return
for task in task_list:
if Config.debug_for_create_book:
pass
else:
Worker.distribute(task)
Debug.logger.info(u"網頁信息抓取完畢")
task_result_list = []
for task in task_list:
task_result = TaskResult(task)
task_result.extract_data()
task_result_list.append(task_result)
Debug.logger.info(u"數據庫信息獲取完畢")
# 下載圖片
for task_result in task_result_list:
task_result.download_img()
Debug.logger.info(u"所有任務圖片獲取完畢")
# 按體積自動分卷
# 渲染html && 壓縮為電子書
book = Book(task_result_list)
book_list = book.auto_split(Config.max_book_size_mb * 1024)
for chapter in book_list:
chapter.create_book()
return
示例4: create_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_book(self):
# 確定文件信息
title = Match.fix_filename(self.book_title)
if self.is_split:
title = self.book_title + u'_卷{}'.format(self.chapter_no)
# 先切換到電子書臨時資源目錄下
Path.chdir(Path.book_pool_path)
epub = Epub(title)
for task_result in self.task_result_list:
chapter_src = ''
# info_page
if task_result.task.task_type == Type.question:
chapter_src = self.generate_question_info_page(task_result.info_page)
elif task_result.task.task_type == Type.answer:
chapter_src = self.generate_question_info_page(task_result.info_page)
elif task_result.task.task_type == Type.collection:
chapter_src = self.generate_collection_info_page(task_result.info_page)
elif task_result.task.task_type == Type.topic:
chapter_src = self.generate_topic_info_page(task_result.info_page)
elif task_result.task.task_type == Type.author:
chapter_src = self.generate_author_info_page(task_result.info_page)
elif task_result.task.task_type == Type.column:
chapter_src = self.generate_column_info_page(task_result.info_page)
elif task_result.task.task_type == Type.article:
chapter_src = self.generate_article_info_page(task_result.info_page)
epub.create_chapter(chapter_src, task_result.get_title())
for question in task_result.question_list:
# 添加圖片文件
for filename in question.img_filename_list:
epub.add_image(Path.image_pool_path + '/' + filename)
question_src = self.generate_question_page(question)
epub.add_html(question_src, question.question_info.title)
for column in task_result.column_list:
# 添加圖片文件
for filename in column.img_filename_list:
epub.add_image(Path.image_pool_path + '/' + filename)
for article in column.article_list:
article_src = self.generate_article_page(article)
epub.add_html(article_src, article.title)
epub.finish_chapter()
epub.set_creator(u'ZhihuHelp1.8.0')
epub.set_language(u'zh-cn')
epub.set_book_id()
epub.set_output_path(Path.result_path)
epub.add_css(Path.base_path + u'/www/css/markdown.css')
epub.add_css(Path.base_path + u'/www/css/customer.css')
epub.add_css(Path.base_path + u'/www/css/normalize.css')
epub.add_css(Path.base_path + u'/www/css/bootstrap.css')
epub.create()
Path.reset_path()
return
示例5: create_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_book(command, counter):
Path.reset_path()
Debug.logger.info(u"開始製作第 {} 本電子書".format(counter))
Debug.logger.info(u"對記錄 {} 進行分析".format(command))
task_package = ReadListParser.get_task(command) # 分析命令
if not task_package.is_work_list_empty():
worker_factory(task_package.work_list) # 執行抓取程序
Debug.logger.info(u"網頁信息抓取完畢")
if not task_package.is_book_list_empty():
Debug.logger.info(u"開始從數據庫中生成電子書")
book = Book(task_package.book_list)
book.create()
return
示例6: create_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_book(self, book_package):
book_package.image_container.set_save_path(Path.image_pool_path)
book_package.image_container.start_download()
title = book_package.get_title()
Debug.logger.debug(u"title of the e-book:" + str(title))
if not title:
# 電子書題目為空時自動跳過
# 否則會發生『rm -rf / 』的慘劇
return
Path.chdir(Path.in_base_path + u'/e-books_tmp_source')
epub = Epub(title)
html_tmp_path = Path.html_pool_path + u'/'
image_tmp_path = Path.image_pool_path + u'/'
epub.set_creator(u'EEBookV0-1')
epub.set_language(u'zh')
epub.set_book_id()
epub.set_output_path(Path.result_path)
epub.add_css(Path.in_base_path + u'/www/css/markdown.css')
epub.add_css(Path.in_base_path + u'/www/css/customer.css')
epub.add_css(Path.in_base_path + u'/www/css/normalize.css')
epub.add_css(Path.in_base_path + u'/www/css/bootstrap.css')
# epub.add_css(Path.in_base_path + u'/www/css/article.css') # TODO: 來自新浪,需要精簡
for book in book_package.book_list:
page = book.page_list[0]
with open(html_tmp_path + page.filename, 'w') as html:
html.write(page.content)
if '_' in page.title:
page.title = ''.join(page.title.split('_')[1:]) # 刪除章節前綴
epub.create_chapter(html_tmp_path + page.filename, page.title)
for page in book.page_list[1:]:
with open(html_tmp_path + page.filename, 'w') as html:
html.write(page.content)
epub.add_html(html_tmp_path + page.filename, page.title)
epub.finish_chapter()
for image in book_package.image_list:
epub.add_image(image_tmp_path + image['filename'])
epub.create()
Path.reset_path()
return
示例7: create_single_html_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_single_html_book(self):
title = '_'.join([book.epub.title for book in self.book_list])
title = title.strip()[:128] # 避開window文件名長度限製
title = ExtraTools.fix_filename(title) # 移除特殊字符
Path.reset_path()
Path.chdir(Path.result_path)
Path.rmdir(u'./' + title)
Path.mkdir(u'./' + title)
Path.chdir(u'./' + title)
page = []
for book in self.book_list:
page += book.page_list
content = ' \r\n<hr /> \r\n '.join([Match.html_body(x.content) for x in page]).replace('../images/', './images/')
with open(Path.base_path + '/src/template/content/single_html.html') as html:
template = html.read().format(title=title, content=content)
with open(title + u'.html', 'w') as html:
html.write(template)
shutil.copytree(Path.html_pool_path + u'/../{}/OEBPS/images'.format(title), './images')
shutil.copy(Path.www_css + '/front.css' , './front.css')
shutil.copy(Path.www_css + '/markdown.css' , './markdown.css')
Path.reset_path()
return
示例8: create_book
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create_book(command, counter):
Path.reset_path()
Debug.logger.info(u"Ready to make No.{} e-book".format(counter))
Debug.logger.info(u"Analysis {} ".format(command))
task_package = UrlParser.get_task(command) # 分析命令
Debug.logger.debug(u"#Debug:#task_package是:" + str(task_package))
if not task_package.is_work_list_empty():
worker_factory(task_package.work_list) # 執行抓取程序
Debug.logger.info(u"Complete fetching from web")
file_name_set = None
if not task_package.is_book_list_empty():
Debug.logger.info(u"Start generating e-book from the database")
book = Book(task_package.book_list)
file_name_set = book.create()
if file_name_set is not None:
file_name_set2list = list(file_name_set)
file_name = '-'.join(file_name_set2list[0:3])
return file_name
return u"Oops! no epub file produced"
示例9: create
# 需要導入模塊: from src.tools.path import Path [as 別名]
# 或者: from src.tools.path.Path import reset_path [as 別名]
def create(self):
self.image_container.set_save_path(Path.image_pool_path)
self.image_container.start_download()
title = '_'.join([book.epub.title for book in self.book_list])
title = title.strip()[:128] # 避開window文件名長度限製
title = ExtraTools.fix_filename(title) # 移除特殊字符
if not title:
# 電子書題目為空時自動跳過
# 否則會發生『rm -rf / 』的慘劇。。。
return
Path.chdir(Path.base_path + u'/知乎電子書臨時資源庫/')
epub = Book(title, 27149527)
html_tmp_path = Path.html_pool_path + '/'
image_tmp_path = Path.image_pool_path + '/'
for book in self.book_list:
page = book.page_list[0]
with open(html_tmp_path + page.filename, 'w') as html:
html.write(page.content)
#epub.createChapter(html_tmp_path + page.filename, ExtraTools.get_time(), page.title)
epub.addInfoPage(html_tmp_path + page.filename, page.title)
for page in book.page_list[1:]:
with open(html_tmp_path + page.filename, 'w') as html:
html.write(page.content)
epub.addHtml(html_tmp_path + page.filename, page.title)
for image in self.book.image_list:
epub.addImg(image_tmp_path + image['filename'])
epub.addLanguage('zh-cn')
epub.addCreator('ZhihuHelp1.7.0')
epub.addDesc(u'該電子書由知乎助手生成,知乎助手是姚澤源為知友製作的僅供個人使用的簡易電子書製作工具,源代碼遵循WTFPL,希望大家能認真領會該協議的真諦,為飛麵事業做出自己的貢獻 XD')
epub.addRight('CC')
epub.addPublisher('ZhihuHelp')
epub.addCss(Path.base_path + u'/www/css/markdown.css')
epub.addCss(Path.base_path + u'/www/css/front.css')
epub.buildingEpub()
Path.reset_path()
return