about summary refs log tree commit diff stats
path: root/js/games/nluqo.github.io/~bh/v1ch14
Commit message (Expand)AuthorAgeFilesLines
* *elioat2023-08-237-0/+2934
08 17:35:56 +0100 committer hut <hut@lavabit.com> 2010-01-08 17:35:56 +0100 added license information' href='/akspecs/ranger/commit/ranger/ext/human_readable.py?h=v1.9.3&id=b4c2c703f9acdf39cbd47407ed51a7e7c807ba7d'>b4c2c703 ^
811b7c28 ^



b4c2c703 ^
811b7c28 ^






b4c2c703 ^
a1274aba ^
7bc8b3fc ^

ea87d005 ^
7bc8b3fc ^
c518f34e ^
7bc8b3fc ^
c518f34e ^
7bc8b3fc ^
c518f34e ^
7bc8b3fc ^




643c016c ^
7bc8b3fc ^


643c016c ^
7bc8b3fc ^


643c016c ^
7bc8b3fc ^


643c016c ^
7bc8b3fc ^


643c016c ^
7bc8b3fc ^



c518f34e ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
                                                                 
 



                                                                      
 






                                                                       
 
                                        

                                                                     
 
                              
              
                                
                
                                          
                




                                                    
                              


                                                              
                              


                                                              
                              


                                                              
                              


                                                              
                              



                                                              



                          
# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

def human_readable(byte, seperator=' '):
	"""
	Convert a large number of bytes to an easily readable format.

	>>> human_readable(54)
	'54 B'
	>>> human_readable(1500)
	'1.46 K'
	>>> human_readable(2 ** 20 * 1023)
	'1023 M'
	"""
	if byte <= 0:
		return '0'
	if byte < 2**10:
		return '%d%sB'   % (byte, seperator)
	if byte < 2**10 * 999:
		return '%.3g%sK' % (byte / 2**10.0, seperator)
	if byte < 2**20:
		return '%.4g%sK' % (byte / 2**10.0, seperator)
	if byte < 2**20 * 999:
		return '%.3g%sM' % (byte / 2**20.0, seperator)
	if byte < 2**30:
		return '%.4g%sM' % (byte / 2**20.0, seperator)
	if byte < 2**30 * 999:
		return '%.3g%sG' % (byte / 2**30.0, seperator)
	if byte < 2**40:
		return '%.4g%sG' % (byte / 2**30.0, seperator)
	if byte < 2**40 * 999:
		return '%.3g%sT' % (byte / 2**40.0, seperator)
	if byte < 2**50:
		return '%.4g%sT' % (byte / 2**40.0, seperator)
	if byte < 2**50 * 999:
		return '%.3g%sP' % (byte / 2**50.0, seperator)
	if byte < 2**60:
		return '%.4g%sP' % (byte / 2**50.0, seperator)
	return '>9000'

if __name__ == '__main__':
	import doctest
	doctest.testmod()