File: statistics.py

package info (click to toggle)
pypaperless 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,440 kB
  • sloc: python: 5,607; sh: 26; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 546 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Statistics snapshot."""

DATA_STATISTICS = {
    "documents_total": 1337,
    "documents_inbox": 2,
    "inbox_tag": 1,
    "inbox_tags": [1],
    "document_file_type_counts": [
        {"mime_type": "application/pdf", "mime_type_count": 1334},
        {"mime_type": "image/jpeg", "mime_type_count": 2},
        {"mime_type": "message/rfc822", "mime_type_count": 1},
    ],
    "character_count": 13371337,
    "tag_count": 5,
    "correspondent_count": 42,
    "document_type_count": 23,
    "storage_path_count": 5,
    "current_asn": 84,
}