deephotel icon indicating copy to clipboard operation
deephotel copied to clipboard

scraping TripAdvisor, Booking.com with Scrapy

Results 3 deephotel issues
Sort by recently updated
recently updated
newest added

Bumps [cryptography](https://github.com/pyca/cryptography) from 1.2.3 to 3.2. Changelog Sourced from cryptography's changelog. 3.2 - 2020-10-25 * **SECURITY ISSUE:** Attempted to make RSA PKCS#1v1.5 decryption more constant time, to protect against Bleichenbacher...

dependencies

``` def parse_hotel(self, response): try: list_url = response.xpath('//a[@class="show_all_reviews_btn"]/@href') url = response.urljoin(list_url[0].extract()) return scrapy.Request(url, callback=self.parse_score_scrape) except: return scrapy.Request(url, callback=self.parse) ``` I think this point is problematic: if the spider except, it...

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.13.1 to 1.24.2. Changelog *Sourced from [urllib3's changelog](https://github.com/urllib3/urllib3/blob/master/CHANGES.rst).* > 1.24.2 (2019-04-17) > ------------------- > > * Don't load system certificates by default when any other ``ca_certs``, ``ca_certs_dir``...

dependencies