statblk 1.0__py3-none-any.whl → 1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: statblk
3
- Version: 1.0
3
+ Version: 1.1
4
4
  Summary: Gather essential disk and partition info for block devices and print it in a nice table
5
5
  Home-page: https://github.com/yufei-pan/statblk
6
6
  Author: Yufei Pan
@@ -0,0 +1,6 @@
1
+ statblk.py,sha256=De3O7pzb2zDInQm0XGb-wnuyZuOyTHWtayohSBK-E_0,16384
2
+ statblk-1.1.dist-info/METADATA,sha256=k-ZmPI5eIRMc6TBefitRBEUsXlBFkONYeDUgImZZTqw,1411
3
+ statblk-1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ statblk-1.1.dist-info/entry_points.txt,sha256=JDz-sa6FIdaOckmlz9NbnhZXQaB5Yle-cTKgUQmAV40,41
5
+ statblk-1.1.dist-info/top_level.txt,sha256=dBdU6_PD4tG_7uquWEs6YremqudiePASv3u3G59scf4,8
6
+ statblk-1.1.dist-info/RECORD,,
statblk.py CHANGED
@@ -12,10 +12,10 @@ import argparse
12
12
  import shutil
13
13
  import subprocess
14
14
 
15
- version = '1.0'
15
+ version = '1.01'
16
16
  VERSION = version
17
17
  __version__ = version
18
- COMMIT_DATE = '2025-08-26'
18
+ COMMIT_DATE = '2025-08-27'
19
19
 
20
20
 
21
21
  SMARTCTL_PATH = shutil.which("smartctl")
@@ -571,7 +571,7 @@ def main():
571
571
  formated_only=args.formated_only, show_zero_size_devices=args.show_zero_size_devices)
572
572
  if args.json:
573
573
  import json
574
- print(json.dumps(results, indent=4))
574
+ print(json.dumps(results, indent=1))
575
575
  else:
576
576
  print(pretty_format_table(results))
577
577
 
@@ -1,6 +0,0 @@
1
- statblk.py,sha256=-9W55CR6aaTnhccsG6r5OmmTbOEnILD3cmClnzMQxKw,16383
2
- statblk-1.0.dist-info/METADATA,sha256=C1epg-B6KaKptWfd1Tfq5tb1BtPgNSvHl6eJ0JNQcfI,1411
3
- statblk-1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
- statblk-1.0.dist-info/entry_points.txt,sha256=JDz-sa6FIdaOckmlz9NbnhZXQaB5Yle-cTKgUQmAV40,41
5
- statblk-1.0.dist-info/top_level.txt,sha256=dBdU6_PD4tG_7uquWEs6YremqudiePASv3u3G59scf4,8
6
- statblk-1.0.dist-info/RECORD,,
File without changes