devwiki:python

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revisionBoth sides next revision
devwiki:python [2024/01/06 19:26] – [Python and interaction with other API] yingdevwiki:python [2024/03/21 08:53] – [Online Python run] ying
Line 1: Line 1:
 +
 +
 +====== Modern Python Practice ======
 +
 +  * nowaday, now one use python 2.x anymore, use python 3 standard, use this
 +    * use pathlib instead of os.path
 +    * use f"{keyword}" instead of "{0}".format(keyword), unless it is easier
  
  
Line 937: Line 944:
 except OSError: except OSError:
     pass     pass
 +    
 +# method 3: all in one check and create if needed, like method 2 but not need try and except since it will be ok for exist
 +os.makedirs(os.path.dirname(output_path), exist_ok=True)
 </code> </code>
   * write python data<code python>   * write python data<code python>
Line 2399: Line 2409:
 response = requests.get(url) response = requests.get(url)
 </code> </code>
-  - now, you should have got the reply from your bot+  - now, you should have got the reply from your bot <code python> 
 +result = response.json() 
 +send_state = result['ok'
 +send_result = result['result'
 +# chat (first_name, id, type); date:int; message_id; text 
 +</code>
  
  • devwiki/python.txt
  • Last modified: 2024/03/25 06:36
  • by ying