Python
notes only, nothing you can't google better version of.
Files
5/10 Filesystem
<..> Search for files in particular directory Glob Let's say I want to find path to all .csv ...
3/10 Read file
<..> Reading is mostly straightforward with r flag. You may need to define encoding, e.g. for ut...
7/10 Write or Create file
<..> Both write and create uses same open() with 3 main flags: a - append to existing file (o...
Files: read/write/create
Read Reading is mostly straightforward with r flag. You may need to define encoding, e.g. for ut...
Install packages offline
<..> any reason you could think of - server with restricted internet access, strict firewalls, s...
Install packages offline
How to install python (pip) packages offline or with limited connectivity to internet: Create re...