Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
191 views
in Technique[技术] by (71.8m points)

How to get a certain number of words from a website in python

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)
question from:https://stackoverflow.com/questions/65682256/how-to-get-a-certain-number-of-words-from-a-website-in-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
 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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...