{% extends "base.html" %} {% block fullbody %}

file {{ file.ident }}

{% if file.extra != None %}

Extra Metadata (raw JSON)

{% for (key, value) in file.extra.items() %} {{ key }}: {{ value }}
{% endfor %} {% endif %}

Releases

{% if file.releases != None %}

Releases associated with this file:

{% else %} This file is not associated with any fatcat release. {% endif %}

URLs

{% if file.url != None %}

Known locations of this file:

{% else %} No known public URL, mirror, or archive for this file. {% endif %}

Checksums

{% if file.sha1 != None %}
Algorithm Value
SHA-1 {{ file.sha1 }} {% endif %} {% if file.sha1 != None %}
SHA-256 {{ file.sha256 }} {% endif %} {% if file.md5!= None %}
MD5 {{ file.md5 }} {% endif %}
{% if file.urls != None and file.urls != [] %} Download File {% else %} No Download Available {% endif %}
{% if file.size != None %}

Size  {{ file.size }} (bytes)

{% endif %} {% if file.mimetype != None %}

File Type  {{ file.mimetype }}

{% endif %} Fatcat Bits

State is "{{ file.state }}". Revision:
{{ file.revision }}
As JSON object via API

{% endblock %}