Skip to content

Instantly share code, notes, and snippets.

@mirekfranc
Created May 5, 2019 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mirekfranc/76e03a484a203364d16f0d16ff1e6f1d to your computer and use it in GitHub Desktop.
Save mirekfranc/76e03a484a203364d16f0d16ff1e6f1d to your computer and use it in GitHub Desktop.
Dist usage from python
import os
import shutil
total, used, free = shutil.disk_usage('.')
print(total, used, free / (1024 * 1024 * 1024))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment