当前位置: 首页>>代码示例>>Python>>正文


Python Handler.save方法代码示例

本文整理汇总了Python中handler.Handler.save方法的典型用法代码示例。如果您正苦于以下问题:Python Handler.save方法的具体用法?Python Handler.save怎么用?Python Handler.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在handler.Handler的用法示例。


在下文中一共展示了Handler.save方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: start

# 需要导入模块: from handler import Handler [as 别名]
# 或者: from handler.Handler import save [as 别名]
def start(req):
    form = util.FieldStorage(req)
    directory = 'YOUR_SAVE_FILE_DIRECTORY'
    api_key = 'YOUR_API_KEY'
    username = form.getfirst('user')
    if not username:
        raise InputDataIncorrect('Specify the username with the \'user\' GET attribute.')

    handling = Handler(directory, api_key, username, 50)
    handling.add_to_watched(form.getfirst('watched'))
    handling.add_video(form.getfirst('add_video'))
    handling.save()
    req.write(handling.build_html())

    if not form.getfirst('watched'):
        handling.update_videos()
        req.write('Refresh the page to see new videos.')
开发者ID:JohnAZoidberg,项目名称:ytsubs,代码行数:19,代码来源:index_mod_python.py

示例2: InputDataIncorrect

# 需要导入模块: from handler import Handler [as 别名]
# 或者: from handler.Handler import save [as 别名]
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

import cgi
import cgitb
import sys
from handler import Handler
from fetcher import InputDataIncorrect

cgitb.enable()
directory = "YOUR_SAVE_FILE_DIRECTORY"
api_key = "YOUR_API_KEY"

form = cgi.FieldStorage()
username = form.getvalue("user")
if not username:
    raise InputDataIncorrect("Specify the username with the 'user' GET attribute.")
handling = Handler(directory, api_key, username, 50)
handling.add_to_watched(form.getvalue("watched"))
handling.add_video(form.getvalue("add_video"))
handling.save()
xmlstr = handling.build_html()

f = sys.stdout
f.write("Content-type:text/html\r\n\r\n")
f.write("<!DOCTYPE html>")
f.write(xmlstr)

if not form.getvalue("watched"):
    handling.update_videos()
    print "Refresh the page to see new videos."
开发者ID:JohnAZoidberg,项目名称:ytsubs,代码行数:32,代码来源:index_cgi.py


注:本文中的handler.Handler.save方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。