美文网首页
header和cookies处理的小插件

header和cookies处理的小插件

作者: gogoforit | 来源:发表于2017-03-08 00:15 被阅读0次

    2)cookies

    print (u'请输入你要分割的 cookie,回车开始分割')
    str = input()
    print  ('\n\n\n\n\n\n')
    arr = str.split(';')
    for i in arr:
        i = '"' + i
        if not i.startswith('"'):
            i = '"' + i
        if not i.endswith('"'):
            i += '"'
        i += ','
        arrs = i.split('=', 1)
        if not arrs[0].endswith('"'):
            arrs[0] += '"'
        if not arrs[1].startswith('"'):
            arrs[1] = '"' + arrs[1]
        print (':'.join(arrs))
    

    2)header

    
    header = input("shuru\n")
    k = ''
    while header !='z':
        k += header + '\n'
        header = input("")
    arr = k.splitlines()
    
    for each in arr:
        print(each)
        kk = each.split(':')
        if not kk[0].startswith('"'):
            kk[0] ='"'+kk[0]
        if not kk[0].endswith('"'):
            kk[0] = kk[0] + '"'
        if not kk[1].startswith('"'):
            kk[1] = '"' + kk[1]
        if not kk[1].endswith('"'):
            kk[1] = kk[1] + '"' + ','
        print(":".join(kk))
    

    相关文章

      网友评论

          本文标题:header和cookies处理的小插件

          本文链接:https://www.haomeiwen.com/subject/rabzmttx.html