Posts by anapaulagomes • 171 points
4 posts
-
1
votes2
answers354
viewsA: Scrapy xpath href or span inside the div
Based on your example, we can see that there are two patterns: Dates within the span (case 1 and 2): response.xpath('//div/span/text()').extract() Output: ['01/12/2017\n ', '\n ', '\xa0-…
-
2
votes3
answers304
viewsA: Crawler that detects changes on a page and saves screenshots
For Rawler you can use the Scrapy.
pythonanswered anapaulagomes 171 -
2
votes2
answers132
viewsA: Hybrid Android Apps. Is the performance loss that big?
In some cases the slowness problem happens because hybrid applications run on top of a native layer (webview). So instead of having a direct access, the app does an emulation to run. In your case, I…
-
2
votes3
answers6724
viewsA: How to set the size of layout buttons in version 2.2
If you want to fill the size of the button horizontally, just leave the default Linear Layout setting. If you want to place a button next to the other you can use two different layout types: Table…