I'm not a python programmer, but I'm trying to work with the Scrapy application.
The above example is what I need, this runs in chrome extension.
To explain, I need the post and all information available. In the case of the Post, the categories have some information (Short Desc, and others) and information in the Post (Long Desc). They are different information from the same Post.
My question is in the process, in the first loop I have Posts that need information from a Second Request, which after the parse extract would have the information.
Staying like this
Post.short_desc = ['xxxx'] ¹ loop
Post.long_desc = ['xxx'] return ² loop
How do I do this?
Now that complicates a little. Because inside the Second Loop, I need to add the Categories, Tags in the queue to be processed.
Fila.lista -> Add -> Url
How do I do this?
I do not know how to accomplish this, if you can help me. Thanks