zoukankan      html  css  js  c++  java
  • some code

    找题目:

    # -* coding:utf-8 *-
    import urllib.request
    import re
    import os
    
    your_id = 0
    his_id = 0
    
    
    def input_ids():
        y_id = str(input("请输入你的id>>"))
        h_id = str(input("请输入Ta的id>>"))
        with open('id.txt', 'w') as f:
            f.write(y_id)
            f.write('
    ')
            f.write(h_id)
    
    
    def get_ids():
        global your_id, his_id
        with open('id.txt', 'r') as f:
            your_id, his_id = [i.strip() for i in f.readlines()]
    
    
    def get_problems(Id):
        url = 'http://acm.zcmu.edu.cn/JudgeOnline/userinfo.php?user=' + str(Id)
        try:
            html = urllib.request.urlopen(url).read().decode('utf-8')
            return re.findall(r'(dddd)', html)
    
        except:
            print("请输入正确ID")
    
    
    def output_problems(choice):
        get_ids()
        your_problems = get_problems(your_id)
        his_problems = get_problems(his_id)
        pros_you_havent_solved = [n for n in his_problems if n not in your_problems]
        pros_he_havent_solved = [n for n in your_problems if n not in his_problems]
        if choice == 1:
            print("共有%d个问题" % (len(pros_you_havent_solved)))
            print("----------------------------------------")
            for problem in pros_you_havent_solved:
                print(problem)
        else:
            print("共有%d个问题" % len(pros_he_havent_solved))
            print("----------------------------------------")
            for problem in pros_he_havent_solved:
                print(problem)
    
    
    def main():
        print("1--查看你没有解决的问题 2--查看Ta没有解决的问题 3--modify或新输入账号")
        choice = int(input("please input your choice>>>"))
        if choice == 1 or choice == 2:
            if not os.path.exists('id.txt'):
                print("--------there is No local data,please input ids first!!!--------")
                input_ids()
            else:
                get_problems(id)
                output_problems(choice)
        elif choice == 3:
            input_ids()
            main()
    
    
    if __name__ == "__main__":
        while True:
            main()
    View Code

    花瓣:

    # coding=utf-8
    import random
    import time
    from multiprocessing import Pool
    import requests
    from requests.exceptions import RequestException
    import json
    import os
    import re
    
    #    <img src="http://s2.doyo.cn/img/5a/0a/684c9e9e780a3000002e.jpg" id="big_picture">
    pattern = re.compile('<img src="(.*?)" id="big_picture" />', re.S)
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
                      "Chrome/65.0.3325.146 Safari/537.36 "
    }
    data_url = 'http://www.doyo.cn/tu/getdata'
    root_url = 'http://www.doyo.cn/picture/{number}/{index}/view'
    try:
        os.mkdir('mm')
        os.chdir('mm')
    except:
        pass
    parent_path = os.getcwd()
    j = open('picinfo.json', 'w', encoding='utf-8')
    
    
    def get_one_page(start):
        params = {
            "cate": "all",
            "tag": "all",
            "sort": "updatetime",
            "start": "0",
            "count": start
        }
        try:
            response = requests.get(url=data_url, params=params)
            if response.status_code == 200:
                return response.text
            return None
        except RequestException:
            print("NetWork Error")
    
    
    def get_one_data(html):
        data = json.loads(html)
        if data and 'info' in data.keys():
            for info in data.get('info'):
                yield {
                    'title': info[0],
                    'count': info[1],
                    'pic': info[6],
                    'number': info[7]
                }
    
    
    def write_to_file(res):
        os.chdir(parent_path)
        j.write(json.dumps(res, ensure_ascii=False) + '
    ')
    
    
    def get_img_urllist(res):
        # root_url = 'http://www.doyo.cn/picture/{number}/{index}/view'
        for index in range(1, int(res.get('count')) + 1):
            yield root_url.format(number=res.get('number'), index=index)
    
    
    def save_img(res):
        os.chdir(parent_path)
        try:
            os.mkdir(res.get('title'))
            os.chdir(res.get('title'))
        except:
            pass
        url_list = get_img_urllist(res)
        for imag_url in url_list:
            url = get_img_url(imag_url)
            print(url)
            try:
                filename = str(random.random())
                time.sleep(0.1)
                response = requests.get(url, headers=headers)
                with open(filename + '.jpg', 'wb') as f:
                    f.write(response.content)
            except:
                pass
    
    
    def get_html(url):
        try:
            response = requests.get(url, headers=headers)
            if response.status_code == 200:
                return response.text
            else:
                return None
        except RequestException:
            print("connection error")
    
    
    def get_img_url(imag_url):
        html = get_html(imag_url)
        res = re.search(pattern=pattern, string=html)
        if res:
            return res.group(1)
    
    
    def main(start):
        html = get_one_page(start)
        res = get_one_data(html)
        for each in res:
            write_to_file(each)
            save_img(each)
    
    
    if __name__ == '__main__':
        start = [n * 25 for n in range(0, 1)]
        for i in start:
            main(i)
        j.close()
    View Code

    字幕to数字:

    while True:
         eng = list(str(input(">>")).upper())
         num = len(eng)
         asc = [ord(word)-64 for word in eng]
         cols = 0
         for n in asc:
              rank = num -1
              num = num -1 
              cols += 26**rank * n
         print(cols)
              
    View Code

    数字to字幕:

  • 相关阅读:
    网络叠加路由叠加小型网络解决方案
    分辨率类[置顶] c# winform窗口自适应各种分辨率类
    vista dbgview
    web 设置日期格式(
    ChangeServiceConfig2设置SERVICE_CONFIG_FAILURE_ACTIONS
    设置默认调试器 (vc)
    C#的多线程机制初探(转)
    符号(pdb)
    GetModuleFileNameEx
    ClearDirectory 删除目录
  • 原文地址:https://www.cnblogs.com/francischeng/p/9714061.html
Copyright © 2011-2022 走看看