This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from os.path import basename | |
import datetime | |
import time | |
#get Size of File | |
def getSize(filename): | |
st = os.stat(filename) | |
print st | |
return st.st_size |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__all__ = ['deque', 'defaultdict', 'namedtuple', 'UserDict', 'UserList', | |
'UserString', 'Counter', 'OrderedDict', 'ChainMap'] | |
# For backwards compatibility, continue to make the collections ABCs | |
# available through the collections module. | |
from _collections_abc import * | |
import _collections_abc | |
__all__ += _collections_abc.__all__ | |
from _collections import deque, defaultdict |