Skip to content

Instantly share code, notes, and snippets.

View flarco's full-sized avatar
Targeting

Fritz Larco flarco

Targeting
View GitHub Profile
import os
data = {
'1MB' : 1*1024*1024, # 1MB
'10MB' : 10*1024*1024, # 10MB
'100MB' : 100*1024*1024, # 100MB
'1GB' : 1*1024*1024*1024, # 1GB
'10GB' : 10*1024*1024*1024, # 10GB
'50GB' : 50*1024*1024*1024, # 50GB
}