Day-19 - 작업(2018-10-24)

3901 단어
첫 번째 문제: 클라이언트와 서버의 플러그인 쓰기: 클라이언트가 서버에 연결된 후 디스플레이 인터페이스:
===========================
  • 사진이 필요합니다
  • 문자가 필요합니다
  • 알림 종료 ================================== 를 선택하십시오

  • 클라이언트가 1을 선택하면 서버가 클라이언트에게 그림을 보내고, 클라이언트가 그림을 로컬에 저장하고, 클라이언트가 2를 선택하면 서버가 문자를 입력하여 클라이언트에게 보내고, 클라이언트는 문자를 메시지에 저장합니다.txt 파일에서 클라이언트가 3을 선택하면 서버에 연결을 닫고 클라이언트가 서버를 종료한다고 알려줍니다.
    import socket
    
    server = socket.socket()
    server.bind(('10.7.156.70', 10001))
    server.listen(512)
    
    def send_picture():
        name = input(' :')
        with open('./files/'+name, 'rb') as f:
            while True:
                picture = f.read(1024**3)
                #  
                if not picture:
                    print(' !')
                    conversation.send(' !'.encode(encoding='utf-8'))
                    break
                conversation.send(picture)
    
        # conversation.close()
    
    def send_text():
        text = input(' :')
        conversation.send(text.encode(encoding='utf-8'))
        # conversation.close()
    
    
    while True:
        print(' !')
        conversation, addr = server.accept()
        print(' !')
    
        while True:
            content = conversation.recv(1024).decode('utf-8')
            if content == '1':
                send_picture()
            elif content == '2':
                send_text()
            elif content == '3':
               conversation.close()
               print(' !')
               break
    

    클라이언트:
    import socket
    
    client = socket.socket()
    client.connect(('10.7.156.70', 10001))
    
    with open('./files/interface.txt', 'r', encoding='utf-8') as f:
        interface = f.read()
    
    
    def recv_picture():
        content = client.recv(1024**3)
        data = bytes()
        while content:
            data += content
            content = client.recv(1024**3)
            #  
            if content == ' !'.encode(encoding='utf-8'):
                print(' ')
                break
    
        name = input(' :')
        with open('./files/'+name, 'wb') as f:
            f.write(data)
    
    def rece_text():
        message = client.recv(1024).decode('utf-8')
        with open('./files/message.txt', 'a', encoding='utf-8') as f:
            f.write(message + '
    ') while True: print(interface) value = input(' (1-3):') client.send(value.encode(encoding='utf-8')) if value == '1': recv_picture() continue elif value == '2': rece_text() continue elif value == '3': client.send(' !'.encode(encoding='utf-8')) client.close() break else: print(' !') continue

    두 번째 문제: 요청 인터페이스:https://www.apiopen.top/satinApi?type=1&page=1네트워크 데이터를 가져옵니다.내용의 모든 name과 text에 대응하는 값을 추출하여 json 파일에 저장합니다. 저장된 형식:
    [{'name':'장삼','text':'하하, 우리 함께 자유롭게 날아갑시다'}, {'name':'喒너희 집 유리','text':'캡처 일시 정지, 캡처된 것은 너의 사랑에 대한 예언 세 단어가 될 것이다!}]
    import requests
    import re
    import json
    
    url = 'https://www.apiopen.top/satinApi?type=1&page=1'
    response = requests.get(url)
    re_str = r'"text":"(.*?)","user_id":.*?"name":"(.*?)","screen_name":'
    content = re.findall(re_str, response.text)
    # print(content)
    list1 = []
    for item in content:
        dict1 = {'name': '', 'text': ''}
        dict1['name'] = item[1]
        dict1['text'] = item[0]
        list1.append(dict1)
    
    with open('./files/api_text.json', 'w', encoding='utf-8') as f:
        json.dump(list1, f)
    with open('./files/api_text.json', 'r', encoding='utf-8') as f:
        content = json.load(f)
    print(content)
    

    좋은 웹페이지 즐겨찾기