Advertisement
Shiyan12

Untitled

Apr 29th, 2021
688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import requests
  2.  
  3. f = '\int e^{x}dx'
  4.  
  5. r = requests.get('https://latex.codecogs.com/gif.download?' + f)
  6. with open('CodeCogsEqn.gif', 'wb') as f:
  7.     f.write(r.content)
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement