{% extends "page.html" %} {% block title %}Price per TB{% endblock %} {% block content %}

{{self.title()}}

List of hard drives available for sale from Newegg.com, sorted by the price per TB.

Built by Edward Betts. Comments welcome: edward@4angle.com

Last updated: {{ today.strftime('%d %B %Y') }}.

{% for cat in best %} {% for hdd in cat['items'][:16] %} {% endfor %} {% endfor %}

{{ cat.label }}

Price
per TB
Price Size Drive
${{ '%.2f' | format(hdd.price_per_tb) }} ${{ hdd.price }} {{ hdd.size }} {{ hdd.title }}
more
{% endblock %}