shallowsky.com/software/topo/
<shallowsky.com/software/topo/>shallowsky.com/blog/tags/python/
AW: windows: install requests module
stackoverflow.com/questions/4750806/how-do-i-install-pip-on-windows
pypi.org/project/setuptools/#files
________________________________ Von: Markus <m.spring@gmx.de> Gesendet: Samstag, 23. Juni 2018 20:30 An: notizbuch; Markus Spring; Markus Spring Betreff: [python] windows: install requests module
stackoverflow.com/questions/18345763/installing-requests-module-in-python-2-7-windows
windows: install requests module
Move directory tree
docs.python.org/2/library/shutil.html
shutil.move(src, dst)
Recursively move a file or directory (src) to another location (dst).
If the destination is an existing directory, then src is moved inside that directory. If the destination already exists but is not a directory, it may be overwritten depending on os.rename() semantics.
If the destination is on the current filesystem, then os.rename() is used. Otherwise, src is copied (using shutil.copy2()) to dst and then removed.
New in version 2.3.