tempfile.TemporaryDirectory()

tempfile.TemporaryDirectory(suffix=None, prefix=None, dir=None) This function securely creates a temporary directory using the

2016-10-07 17:44:20
tempfile.gettempprefix()

tempfile.gettempprefix() Return the filename prefix used to create temporary files. This does not contain the directory component

2016-10-07 17:44:19
fileinput.hook_compressed()

fileinput.hook_compressed(filename, mode) Transparently opens files compressed with gzip and bzip2 (recognized by the extensions

2016-10-07 17:33:11
pathlib.WindowsPath

class pathlib.WindowsPath(*pathsegments) A subclass of Path and PureWindowsPath, this class represents

2016-10-07 17:40:36
tempfile.SpooledTemporaryFile()

tempfile.SpooledTemporaryFile(max_size=0, mode='w+b', buffering=None, encoding=None, newline=None, suffix=None, prefix=None, dir=None) This

2016-10-07 17:44:20
pathlib.Path.write_bytes()

Path.write_bytes(data) Open the file pointed to in bytes mode, write data to it, and close the file:

2016-10-07 17:40:32
pathlib.PurePath.joinpath()

PurePath.joinpath(*other) Calling this method is equivalent to combining the path with each of the other arguments

2016-10-07 17:40:34
pathlib.Path.is_dir()

Path.is_dir() Return True if the path points to a directory (or a symbolic link pointing to a directory), False

2016-10-07 17:40:28
fileinput.filename()

fileinput.filename() Return the name of the file currently being read. Before the first line has been read, returns None

2016-10-07 17:33:11
pathlib.PurePath.as_uri()

PurePath.as_uri() Represent the path as a file URI.

2016-10-07 17:40:33