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
    
  
  
    
  | [Security] | |
| EAP-Method=PEAP | |
| EAP-Identity=anonymous | |
| EAP-PEAP-Phase2-Method=MSCHAPv2 | |
| EAP-PEAP-Phase2-Identity=utorid (the short one, not the numbers or your email) | |
| EAP-PEAP-Phase2-Password=ur password | |
| EAP-CACert=/etc/ssl/certs/ca-certificates.crt (could depend on your install) | 
  
    
      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 requests | |
| import json | |
| days = [[7, 31], [8, 26]] | |
| request_string = "https://www.nytimes.com/svc/wordle/v2/2023-{:02d}-{:02d}.json" | |
| for month in days: | |
| for day in range(1, month[1] + 1): | |
| #print(request_string.format(month[0], day)) | |
| rqst = requests.get(request_string.format(month[0], day)) |