Skip to content

Instantly share code, notes, and snippets.

Resources:
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: 10.0.0.0/16
EnableDnsSupport: true
EnableDnsHostnames: true
Tags:
- Key: Name
Value: "nat-test"
@supriyo-biswas
supriyo-biswas / example.py
Last active February 23, 2020 12:19
A simple progress bar in Python
import time
import progress
with progress(50) as p:
for i in range(50):
time.sleep(0.2)
p.update()