i want to fetch data from cheat.sh using the requests lib and the discord.py lib....but since discord only allows 2000 characters at length to send at a time, i want to fetch only a certain number of words/digits/newline like 1800. how can i do so?
a small bit of code example showing my idea
import requests url = "https://cheat.sh/python/string+annotations" #this gets the docs of string annotation in python response = requests.get(url) data = response.text # This gives approximately 2403 words...but i want to get only 1809 words print(data)
import requests url = "https://cheat.sh/python/string+annotations" #this gets the docs of string annotation in python response = requests.get(url) data = response.text[:1800] print(data)
This will be the correct code
1.4m articles
1.4m replys
5 comments
57.0k users