now I want to use Python to get web information recursively:
-
Web page information is very simple. When I request url_one, I get a list, such as
.[
]{ "url":"url_1", "isEnd": "no" }, { "url": "url_2", "isEnd": "yes" }
]
- if isEnd is no, then I will continue to request this url, until the isEnd of a url is yes.
how can I achieve this?