Is there an Android library that scratches the image url in the article?

Asked 2 years ago, Updated 2 years ago, 47 views

Hello! I have a question~

I'm going to use the article url and spray the list view on Android. Is there an Android library that returns the image url in the article with the article url?

If you look at the RSS subscriber Feedly, they spray thumbnail images of articles with url, but in this case, do they extract image url with url from the server end? I implemented a server cluster in python... Is there such a library in Python?

I've been searching... I can only search for image url and sprinkling images through the Glide library. If you've worked on it before, please help me~

android

2022-09-22 21:58

2 Answers

Crawling itself should be implemented by performing it on the server and throwing the data to the server -> android and spraying the received data using glide or other image libraries.

I recommend http://scrapy.org/ for the crayon side!


2022-09-22 21:58

You can also parse the webpage from within the Android client through the jsoup library (jsoup.org) to obtain only the image address you need.


2022-09-22 21:58

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.