Skip to content

Instantly share code, notes, and snippets.

@ThibaudLamothe
Last active February 1, 2021 11:02
Show Gist options
  • Save ThibaudLamothe/9611edc3429e6779815c8490be9b8933 to your computer and use it in GitHub Desktop.
Save ThibaudLamothe/9611edc3429e6779815c8490be9b8933 to your computer and use it in GitHub Desktop.
def parse_hotel(self, response):
# Get hotel informations
info_1 = response.css('info_1_selector')
info_2 = response.css('info_2_selector')
# ...
yield {
"info_1":info_1,
"info_2":info_2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment