This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # First do pip install beautifulsoup4 pandas | |
| from bs4 import BeautifulSoup | |
| import pandas as pd | |
| import os | |
| with open('edu_log.html', 'r', encoding='utf8') as file: | |
| contents = file.read() | |
| soup = BeautifulSoup(contents, 'html.parser') | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import socket | |
| import ssl | |
| def receive_print(ss): | |
| response = b'' | |
| while True: | |
| recv = ss.recv(1024) | |
| if not recv: | |
| break | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //#include <stm32f3xx_hal.h> | |
| ////For delay | |
| //void SysTick_Handler(void) | |
| //{ | |
| // HAL_IncTick(); | |
| //} |