Skip to content

Commit

Permalink
fix ssd
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabrielolobo committed Jun 2, 2023
1 parent a7e7f95 commit 24fbd31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawley/crawlers/vultr.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _parse(self, main_page) -> List[Result]:
cpus = card.find("h3", "package__title h6 center").text.strip()
price = card.find("span", "price__value").text.strip()
ram = self.clean_element(card, 'li:-soup-contains("Memory")')
ssd = self.clean_element(card, 'li:-soup-contains("SSD")')
ssd = self.clean_element(card, 'li:-soup-contains("SSD","NVMe")')
band = self.clean_element(card, 'li:-soup-contains("Bandwidth")')

# pdb.set_trace()
Expand Down

0 comments on commit 24fbd31

Please sign in to comment.