Quote:
Originally Posted by Dereks
Sorry,
since I don't know python or any programming language it's all a bit difficult to me. Can you provide some very simple example of this?
Thanks.
|
You need a very basic understanding of Python to do this. All he's saying is that you put a line into print_version that says something like:
Code:
if (url includes some first string or startswith or endswith some string):
#this url is from feed 1
url = (code to modify the ur from feed 1)
if (url includes some other string or startswith or endswith some other string):
#this url is from feed 2
url = (different code to modify the url from feed 2)
etc.