Comprehensive Python Cheatsheet =============================== [Download text file](https://raw.githubusercontent.com/gto76/python-cheatsheet/master/README.md) or [Fork me on GitHub](https://github.com/gto76/python-cheatsheet). ![Monty Python](web/image_888.jpeg) Main ---- ```python if __name__ == '__main__': main() ``` List ---- ```python = [from_inclusive : to_exclusive : step_size] .append() .extend() += [] += ``` ```python .sort() .reverse() = sorted() = reversed() ``` ```python sum_of_elements = sum() elementwise_sum = [sum(pair) for pair in zip(list_a, list_b)] sorted_by_second = sorted(, key=lambda el: el[1]) sorted_by_both = sorted(, key=lambda el: (el[1], el[0])) flattened_list = list(itertools.chain.from_iterable()) list_of_chars = list() product_of_elems = functools.reduce(lambda out, x: out * x, ) no_duplicates = list(dict.fromkeys()) ``` ```python index = .index() # Returns first index of item. .insert(index, ) # Inserts item at index and moves the rest to the right. = .pop([index]) # Removes and returns item at index or from the end. .remove() # Removes first occurrence of item. .clear() # Removes all items. ``` Dictionary ---------- ```python = .keys() = .values() = .items() ``` ```python value = .get(key, default) # Returns default if key does not exist. value = .setdefault(key, default) # Same, but also adds default to dict. = collections.defaultdict() # Creates a dictionary with default value of type. = collections.defaultdict(lambda: 1) # Creates a dictionary with default value 1. ``` ```python .update() # Or: dict_a = {**dict_a, **dict_b}. = dict() # Initiates a dict from list of key-value pairs. = dict(zip(keys, values)) # Initiates a dict from two lists. = dict.fromkeys(keys [, value]) # Initiates a dict from list of keys. ``` ```python value = .pop(key) # Removes item from dictionary. {k: v for k, v in .items() if k in keys} # Filters dictionary by keys. ``` ### Counter ```python >>> from collections import Counter >>> colors = ['blue', 'red', 'blue', 'yellow', 'blue', 'red'] >>> counter = Counter(colors) Counter({'blue': 3, 'red': 2, 'yellow': 1}) >>> counter.most_common()[0][0] 'blue' ``` Set --- ```python = set() .add() .update() |= {} |= ``` ```python = .union() # Or: | = .intersection() # Or: & = .difference() # Or: - = .symmetric_difference() # Or: ^ = .issubset() # Or: <= = .issuperset() # Or: >= ``` ### Frozenset ####Is hashable and can be used as a key in dictionary. ```python = frozenset() ``` Range ----- ```python range(to_exclusive) range(from_inclusive, to_exclusive) range(from_inclusive, to_exclusive, step_size) range(from_inclusive, to_exclusive, -step_size) ``` ```python from_inclusive = .start to_exclusive = .stop ``` Enumerate --------- ```python for i, el in enumerate( [, i_start]): ... ``` Named Tuple ----------- ```python >>> Point = collections.namedtuple('Point', 'x y') >>> p = Point(1, y=2) Point(x=1, y=2) >>> p[0] 1 >>> p.x 1 >>> getattr(p, 'y') 2 >>> p._fields # Or: Point._fields ('x', 'y') ``` Iterator -------- ```python = iter() = iter(, to_exclusive) ``` #### Skips first element: ```python next() for element in : ... ``` #### Reads input until it reaches an empty line: ```python for line in iter(input, ''): ... ``` #### Same, but prints a message every time: ```python from functools import partial for line in iter(partial(input, 'Please enter value: '), ''): ... ``` Generator --------- **Convenient way to implement the iterator protocol.** ```python def step(start, step_size): while True: yield start start += step_size ``` ```python >>> stepper = step(10, 2) >>> next(stepper), next(stepper), next(stepper) (10, 12, 14) ``` Type ---- ```python = type() # / / ... ``` ```python from numbers import Number, Integral, Real, Rational, Complex = isinstance(, Number) ``` ```python = callable() ``` String ------ ```python = .strip() # Strips all whitespace characters. = .strip('') # Strips all passed characters. ``` ```python = .split() # Splits on any whitespace character. = .split(sep=None, maxsplit=-1) # Splits on 'sep' str at most 'maxsplit' times. = .join() # Joins elements using string as separator. ``` ```python = .replace(old_str, new_str) = .startswith() # Pass tuple of strings for multiple options. = .endswith() # Pass tuple of strings for multiple options. = .index() # Returns first index of a substring. = .isnumeric() # True if str contains only numeric characters. = textwrap.wrap(, width) # Nicely breaks string into lines. ``` ### Char ```python = chr() # Converts int to unicode char. = ord() # Converts unicode char to int. ``` ```python >>> ord('0'), ord('9') (48, 57) >>> ord('A'), ord('Z') (65, 90) >>> ord('a'), ord('z') (97, 122) ``` Regex ----- ```python import re = re.sub(, new, text, count=0) # Substitutes all occurrences. = re.findall(, text) # Returns all occurrences. = re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches. = re.search(, text) # Searches for first occurrence of pattern. = re.match(, text) # Searches only at the beginning of the text. = re.finditer(, text) # Searches for all occurrences of pattern. ``` * **Parameter `'flags=re.IGNORECASE'` can be used with all functions.** * **Parameter `'flags=re.DOTALL'` makes dot also accept newline.** * **Use `r'\1'` or `'\\\\1'` for backreference.** * **Use `'?'` to make operators non-greedy.** ### Match Object ```python = .group() # Whole match. = .group(1) # Part in first bracket. = .start() # Start index of a match. = .end() # Exclusive end index of a match. ``` ### Special Sequences **Use capital letter for negation.** ```python '\d' == '[0-9]' # Digit '\s' == '[ \t\n\r\f\v]' # Whitespace '\w' == '[a-zA-Z0-9_]' # Alphanumeric ``` Print ----- **Use `'file=sys.stderr'` for errors.** ```python print( [, , end='', sep='', file=]) ``` ```python >>> from pprint import pprint >>> pprint(locals()) {'__doc__': None, '__name__': '__main__', '__package__': None, ...} ``` Format ------ ```python = f'{}, {}' = '{}, {}'.format(, ) ``` ```python >>> Person = namedtuple('Person', 'name height') >>> person = Person('Jean-Luc', 187) >>> f'{person.height:10}' ' 187' >>> '{p.height:10}'.format(p=person) ' 187' ``` ### General Options ```python {:<10} # ' ' {:>10} # ' ' {:^10} # ' ' {:->10} # '------' {:>0} # '' ``` ### String Options **`'!r'` calls object's repr() method, instead of format(), to get a string.** ```python {'abcde'!r:<10} # "'abcde' " ``` ```python {'abcde':.3} # 'abc' {'abcde':10.3} # 'abc ' ``` ### Number Options ```python {1.23456:.3f} # '1.235' {1.23456:10.3f} # ' 1.235' ``` ```python { 123456:10,} # ' 123,456' { 123456:10_} # ' 123_456' { 123456:+10} # ' +123456' {-123456:=10} # '- 123456' { 123456: } # ' 123456' {-123456: } # '-123456' ``` ```python {65:c} # 'A' {3:08b} # '00000011' -> Binary with leading zeros. {3:0<8b} # '11000000' -> Binary with trailing zeros. ``` #### Float presentation types: * `'f'` - Fixed point: `.f` * `'%'` - Percent: `.%` * `'e'` - Exponent #### Integer presentation types: * `'c'` - Character * `'b'` - Binary * `'x'` - Hex * `'X'` - HEX Numbers ------- ### Basic Functions ```python = pow(, ) # Or: ** = abs() = round( [, ndigits]) ``` ### Constants ```python from math import e, pi ``` ### Trigonometry ```python from math import cos, acos, sin, asin, tan, atan, degrees, radians ``` ### Logarithm ```python from math import log, log10, log2 = log( [, base]) # Base e, if not specified. ``` ### Infinity, nan ```python from math import inf, nan, isinf, isnan ``` #### Or: ```python float('inf'), float('nan') ``` ### Random ```python from random import random, randint, choice, shuffle = random() = randint(from_inclusive, to_inclusive) = choice() shuffle() ``` Datetime -------- ```python from datetime import datetime, strptime now = datetime.now() now.month # 3 now.strftime('%Y%m%d') # '20180315' now.strftime('%Y%m%d%H%M%S') # '20180315002834' = strptime('2015-05-12 00:39', '%Y-%m-%d %H:%M') ``` Arguments --------- **`'*'` is the splat operator, that takes a list as input, and expands it into actual positional arguments in the function call.** ```python args = (1, 2) kwargs = {'x': 3, 'y': 4, 'z': 5} func(*args, **kwargs) ``` #### Is the same as: ```python func(1, 2, x=3, y=4, z=5) ``` #### Splat operator can also be used in function declarations: ```python def add(*a): return sum(a) ``` ```python >>> add(1, 2, 3) 6 ``` #### And in few other places: ```python >>> a = (1, 2, 3) >>> [*a] [1, 2, 3] ``` ```python >>> head, *body, tail = [1, 2, 3, 4] >>> body [2, 3] ``` Inline ------ ### Lambda ```python lambda: lambda , : ``` ### Comprehension ```python = [i+1 for i in range(10)] # [1, 2, ..., 10] = {i for i in range(10) if i > 5} # {6, 7, 8, 9} = {i: i*2 for i in range(10)} # {0: 0, 1: 2, ..., 9: 18} = (i+5 for i in range(10)) # (5, 6, ..., 14) ``` ```python out = [i+j for i in range(10) for j in range(10)] ``` #### Is the same as: ```python out = [] for i in range(10): for j in range(10): out.append(i+j) ``` ### Map, Filter, Reduce ```python from functools import reduce = map(lambda x: x + 1, range(10)) # (1, 2, ..., 10) = filter(lambda x: x > 5, range(10)) # (6, 7, 8, 9) = reduce(lambda out, x: out + x, range(10)) # 45 ``` ### Any, All ```python = any() # False if empty. = all(el[1] for el in ) # True if empty. ``` ### If - Else ```python if else ``` ```python >>> [a if a else 'zero' for a in (0, 1, 0, 3)] ['zero', 1, 'zero', 3] ``` ### Namedtuple, Enum, Class ```python from collections import namedtuple Point = namedtuple('Point', 'x y') point = Point(0, 0) ``` ```python from enum import Enum Direction = Enum('Direction', 'n e s w') Cutlery = Enum('Cutlery', {'knife': 1, 'fork': 2, 'spoon': 3}) ``` ```python # Warning: Objects will share the objects that are initialized in the dictionary! Creature = type('Creature', (), {'p': Point(0, 0), 'd': Direction.n}) creature = Creature() ``` Closure ------- ```python def get_multiplier(a): def out(b): return a * b return out ``` ```python >>> multiply_by_3 = get_multiplier(3) >>> multiply_by_3(10) 30 ``` #### Or: ```python from functools import partial = partial(, [, , ...]) ``` ```python >>> multiply_by_3 = partial(operator.mul, 3) >>> multiply_by_3(10) 30 ``` Decorator --------- ```python @closure_name def function_that_gets_passed_to_closure(): ... ``` #### Debugger example: ```python from functools import wraps def debug(func): @wraps(func) # Needed for metadata copying (func name, ...). def out(*args, **kwargs): print(func.__name__) return func(*args, **kwargs) return out @debug def add(x, y): return x + y ``` Class ----- ```python class : def __init__(self, a): self.a = a def __repr__(self): class_name = type(self).__name__ return f'{class_name}({self.a!r})' def __str__(self): return str(self.a) @classmethod def get_class_name(cls): return cls.__name__ ``` ### Constructor Overloading ```python class : def __init__(self, a=None): self.a = a ``` ### Inheritance ```python class Person: def __init__(self, name, age): self.name = name self.age = age class Employee(Person): def __init__(self, name, age, staff_num): super().__init__(name, age) self.staff_num = staff_num ``` ### Copy ```python from copy import copy, deepcopy = copy() = deepcopy() ``` Enum ---- ```python from enum import Enum, auto class (Enum): = = , = auto() # Can be used for automatic indexing. @classmethod def get_member_names(cls): return [a.name for a in cls.__members__.values()] ``` ```python = . = [''] = () name = .name value = .value ``` ```python list_of_members = list() member_names = [a.name for a in ] member_values = [a.value for a in ] random_member = random.choice(list()) ``` ### Inline ```python Cutlery = Enum('Cutlery', ['knife', 'fork', 'spoon']) Cutlery = Enum('Cutlery', 'knife fork spoon') Cutlery = Enum('Cutlery', {'knife': 1, 'fork': 2, 'spoon': 3}) ``` #### Functions can not be values, so they must be wrapped: ```python from functools import partial LogicOp = Enum('LogicOp', {'and': partial(lambda l, r: l and r), 'or' : partial(lambda l, r: l or r)}) ``` System ------ ### Arguments ```python import sys script_name = sys.argv[0] arguments = sys.argv[1:] ``` ### Read File ```python def read_file(filename): with open(filename, encoding='utf-8') as file: return file.readlines() ``` ### Write to File ```python def write_to_file(filename, text): with open(filename, 'w', encoding='utf-8') as file: file.write(text) ``` ### Path ```python from os import path, listdir = path.exists() = path.isfile() = path.isdir() = listdir() ``` ```python >>> from glob import glob >>> glob('../*.gif') ['1.gif', 'card.gif'] ``` ### Execute Command ```python import os = os.popen().read() ``` #### Or: ```python >>> import subprocess >>> a = subprocess.run(['ls', '-a'], stdout=subprocess.PIPE) >>> a.stdout b'.\n..\nfile1.txt\nfile2.txt\n' >>> a.returncode 0 ``` ### Input #### Reads a line from user input or pipe if present. The trailing newline gets stripped: ```python filename = input('Enter a file name: ') ``` #### Prints lines until EOF: ```python while True: try: print(input()) except EOFError: break ``` ### Recursion Limit ```python >>> import sys >>> sys.getrecursionlimit() 1000 >>> sys.setrecursionlimit(5000) ``` JSON ---- ```python import json ``` ### Serialization ```python = json.dumps(, ensure_ascii=True, indent=None) = json.loads() ``` #### To preserve order: ```python from collections import OrderedDict = json.loads(, object_pairs_hook=OrderedDict) ``` ### Read File ```python def read_json_file(filename): with open(filename, encoding='utf-8') as file: return json.load(file) ``` ### Write to File ```python def write_to_json_file(filename, an_object): with open(filename, 'w', encoding='utf-8') as file: json.dump(an_object, file, ensure_ascii=False, indent=2) ``` SQLite ------ ```python import sqlite3 db = sqlite3.connect() ... db.close() ``` ### Read ```python cursor = db.execute() if cursor: = cursor.fetchone() # First row. = cursor.fetchall() # Remaining rows. ``` ### Write ```python db.execute() db.commit() ``` Pickle ------ ```python >>> import pickle >>> favorite_color = {'lion': 'yellow', 'kitty': 'red'} >>> pickle.dump(favorite_color, open('data.p', 'wb')) >>> pickle.load(open('data.p', 'rb')) {'lion': 'yellow', 'kitty': 'red'} ``` Exceptions ---------- ```python while True: try: x = int(input('Please enter a number: ')) except ValueError: print('Oops! That was no valid number. Try again...') else: print('Thank you.') break ``` #### Raising exception: ```python raise ValueError('A very specific message!') ``` ### Finally ```python >>> try: ... raise KeyboardInterrupt ... finally: ... print('Goodbye, world!') Goodbye, world! Traceback (most recent call last): File "", line 2, in KeyboardInterrupt ``` Bytes ----- **Bytes object is immutable sequence of single bytes. Mutable version is called bytearray.** ```python = b'' = [] = [] = b''.join() ``` ### Encode ```python = .encode(encoding='utf-8') = .to_bytes(length, byteorder='big|little', signed=False) = bytes.fromhex() ``` ### Decode ```python = .decode('utf-8') = int.from_bytes(, byteorder='big|little', signed=False) = .hex() ``` ### Read Bytes from File ```python def read_bytes(filename): with open(filename, 'rb') as file: return file.read() ``` ### Write Bytes to File ```python def write_bytes(filename, bytes_obj): with open(filename, 'wb') as file: file.write(bytes_obj) ``` Struct ------ **This module performs conversions between Python values and C struct represented as Python bytes object. Machine’s native type sizes and byte order are used by default.** ```python from struct import pack, unpack, calcsize = pack('', [, , ...]) = unpack('', ) ``` ### Example ```python >>> pack('>hhl', 1, 2, 3) b'\x00\x01\x00\x02\x00\x00\x00\x03' >>> unpack('>hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03') (1, 2, 3) >>> calcsize('>hhl') 8 ``` ### Format #### For standard sizes start format string with: * `'='` - native byte order * `'<'` - little-endian * `'>'` - big-endian **Use capital leter for unsigned type. Standard size in brackets.** * `'x'` - pad byte * `'c'` - char (1) * `'h'` - short (2) * `'i'` - int (4) * `'l'` - long (4) * `'q'` - long long (8) * `'f'` - float (4) * `'d'` - double (8) Hashlib ------- ```python >>> import hashlib >>> hashlib.md5(.encode()).hexdigest() '33d0eba106da4d3ebca17fcd3f4c3d77' ``` Threading --------- ```python from threading import Thread, RLock ``` ### Thread ```python thread = Thread(target=, args=(, )) thread.start() ... thread.join() ``` ### Lock ```python lock = RLock() lock.acquire() ... lock.release() ``` Itertools --------- **Every function returns an iterator and can accept any collection and/or iterator. If you want to print the iterator, you need to pass it to the list() function!** ```python from itertools import * ``` ### Combinatoric iterators ```python >>> combinations('abc', 2) [('a', 'b'), ('a', 'c'), ('b', 'c')] >>> combinations_with_replacement('abc', 2) [('a', 'a'), ('a', 'b'), ('a', 'c'), ('b', 'b'), ('b', 'c'), ('c', 'c')] >>> permutations('abc', 2) [('a', 'b'), ('a', 'c'), ('b', 'a'), ('b', 'c'), ('c', 'a'), ('c', 'b')] >>> product('ab', [1, 2]) [('a', 1), ('a', 2), ('b', 1), ('b', 2)] >>> product([0, 1], repeat=3) [(0, 0, 0), (0, 0, 1), (0, 1, 0), (0, 1, 1), (1, 0, 0), (1, 0, 1), (1, 1, 0), (1, 1, 1)] ``` ### Infinite iterators ```python >>> i = count(5, 2) >>> next(i), next(i), next(i) (5, 7, 9) >>> a = cycle('abc') >>> [next(a) for _ in range(10)] ['a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c', 'a'] >>> repeat(10, 3) [10, 10, 10] ``` ### Iterators ```python >>> chain([1, 2], range(3, 5)) [1, 2, 3, 4] >>> compress('abc', [True, 0, 1]) ['a', 'c'] >>> islice([1, 2, 3], 1, None) # islice(, from_inclusive, to_exclusive) [2, 3] >>> people = [{'id': 1, 'name': 'Bob'}, {'id': 2, 'name': 'Bob'}, {'id': 3, 'name': 'Peter'}] >>> groups = groupby(people, key=lambda a: a['name']) >>> {name: list(group) for name, group in groups} {'Bob': [{'id': 1, 'name': 'Bob'}, {'id': 2, 'name': 'Bob'}], 'Peter': [{'id': 3, 'name': 'Peter'}]} ``` Introspection and Metaprograming -------------------------------- **Inspecting code at runtime and code that generates code. You can:** * **Look at the attributes** * **Set new attributes** * **Create functions dynamically** * **Traverse the parent classes** * **Change values in the class** ### Variables ```python = dir() # Names of in-scope variables. = locals() # Dict of local variables. Also vars(). = globals() # Dict of global variables. ``` ### Attributes ```python >>> class Z: ... def __init__(self): ... self.a = 'abcde' ... self.b = 12345 >>> z = Z() ``` ```python >>> vars(z) {'a': 'abcde', 'b': 12345} >>> getattr(z, 'a') 'abcde' >>> hasattr(z, 'c') False >>> setattr(z, 'c', 10) ``` ### Parameters ```python from inspect import signature sig = signature() no_of_params = len(sig.parameters) param_names = list(sig.parameters.keys()) ``` ### Type **Type is the root class. If only passed the object it returns it's type. Otherwise it creates a new class (and not the instance!).** ```python type(, , ) ``` ```python >>> Z = type('Z', (), {'a': 'abcde', 'b': 12345}) >>> z = Z() ``` ### Meta Class **Class that creates class.** ```python def my_meta_class(name, parents, attrs): attrs['a'] = 'abcde' return type(name, parents, attrs) ``` #### Or: ```python class MyMetaClass(type): def __new__(klass, name, parents, attrs): attrs['a'] = 'abcde' return type.__new__(klass, name, parents, attrs) ``` ### Metaclass Attribute **When class is created it checks if it has metaclass defined. If not, it recursively checks if any of his parents has it defined and eventually comes to type.** ```python class MyClass(metaclass=MyMetaClass): def __init__(self): self.b = 12345 ``` Operator -------- ```python from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs, \ eq, ne, lt, le, gt, ge, \ not_, and_, or_, \ itemgetter ``` ```python import operator as op product_of_elems = functools.reduce(op.mul, ) sorted_by_second = sorted(, key=op.itemgetter(1)) sorted_by_both = sorted(, key=op.itemgetter(1, 0)) LogicOp = enum.Enum('LogicOp', {'and': op.and_, 'or' : op.or_}) ``` Eval ---- ### Basic ```python >>> from ast import literal_eval >>> literal_eval('1 + 2') 3 >>> literal_eval('[1, 2, 3]') [1, 2, 3] >>> ast.literal_eval('abs(1)') ValueError: malformed node or string ``` ### Using Abstract Syntax Trees ```python import ast from ast import Num, BinOp, UnaryOp import operator as op legal_operators = {ast.Add: op.add, ast.Sub: op.sub, ast.Mult: op.mul, ast.Div: op.truediv, ast.Pow: op.pow, ast.BitXor: op.xor, ast.USub: op.neg} def evaluate(expression): root = ast.parse(expression, mode='eval') return eval_node(root.body) def eval_node(node): node_type = type(node) if node_type == Num: return node.n if node_type not in [BinOp, UnaryOp]: raise TypeError(node) operator_type = type(node.op) if operator_type not in legal_operators: raise TypeError(f'Illegal operator {node.op}') operator = legal_operators[operator_type] if node_type == BinOp: left, right = eval_node(node.left), eval_node(node.right) return operator(left, right) elif node_type == UnaryOp: operand = eval_node(node.operand) return operator(operand) ``` ```python >>> evaluate('2 ^ 6') 4 >>> evaluate('2 ** 6') 64 >>> evaluate('1 + 2 * 3 ** (4 ^ 5) / (6 + -7)') -5.0 ``` Coroutine --------- * **Similar to Generator, but Generator pulls data through the pipe with iteration, while Coroutine pushes data into the pipeline with send().** * **Coroutines provide more powerful data routing possibilities than iterators.** * **If you built a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc.** ### Helper Decorator * **All coroutines must be "primed" by first calling next().** * **Remembering to call next() is easy to forget.** * **Solved by wrapping coroutines with a decorator:** ```python def coroutine(func): def out(*args, **kwargs): cr = func(*args, **kwargs) next(cr) return cr return out ``` ### Pipeline Example ```python def reader(target): for i in range(10): target.send(i) target.close() @coroutine def adder(target): while True: item = (yield) target.send(item + 100) @coroutine def printer(): while True: item = (yield) print(item) reader(adder(printer())) # 100, 101, ..., 109 ```

Libraries ========= Argparse -------- ```python import argparse parser = argparse.ArgumentParser(description='calculate X to the power of Y') group = parser.add_mutually_exclusive_group() group.add_argument('-v', '--verbose', action='store_true') group.add_argument('-q', '--quiet', action='store_true') parser.add_argument('x', type=int, help='the base') parser.add_argument('y', type=int, help='the exponent') args = parser.parse_args() answer = args.x ** args.y if args.quiet: print(answer) elif args.verbose: print(f'{args.x} to the power {args.y} equals {answer}') else: print(f'{args.x}^{args.y} == {answer}') ``` #### Usage: ``` $ python3 prog.py --help usage: test2.py [-h] [-v | -q] x y calculate X to the power of Y positional arguments: x the base y the exponent optional arguments: -h, --help show this help message and exit -v, --verbose -q, --quiet ``` Plot ---- ```python # $ pip3 install matplotlib from matplotlib import pyplot pyplot.plot( [, , ...]) pyplot.savefig(, transparent=True) pyplot.show() ``` Progress Bar ------------ ```python # $ pip3 install tqdm from tqdm import tqdm from time import sleep for i in tqdm([1, 2, 3]): sleep(0.2) for i in tqdm(range(100)): sleep(0.02) ``` Table ----- #### Prints CSV file as ASCII table: ```python # $ pip3 install tabulate from csv import reader from tabulate import tabulate with open(, newline='') as csv_file: reader = reader(csv_file, delimiter=';') headers = [a.title() for a in next(reader)] print(tabulate(reader, headers)) ``` Curses ------ ```python # $ pip3 install curses from curses import wrapper def main(): wrapper(draw) def draw(screen): screen.clear() screen.addstr(0, 0, 'Press ESC to quit.') while screen.getch() != 27: pass def get_border(screen): from collections import namedtuple P = namedtuple('P', 'x y') height, width = screen.getmaxyx() return P(width - 1, height - 1) ``` Image ----- #### Creates PNG image of greyscale gradient: ```python # $ pip3 install pillow from PIL import Image width, height = 100, 100 img = Image.new('L', (width, height), 'white') img.putdata([255*a/(width*height) for a in range(width*height)]) img.save('out.png') ``` ### Modes * `'1'` - 1-bit pixels, black and white, stored with one pixel per byte. * `'L'` - 8-bit pixels, greyscale. * `'RGB'` - 3x8-bit pixels, true color. * `'RGBA'` - 4x8-bit pixels, true color with transparency mask. * `'HSV'` - 3x8-bit pixels, Hue, Saturation, Value color space. Audio ----- #### Saves a list of floats with values between 0 and 1 to a WAV file: ```python import wave, struct frames = [struct.pack('h', int((a-0.5)*60000)) for a in ] wf = wave.open(, 'wb') wf.setnchannels(1) wf.setsampwidth(4) wf.setframerate(44100) wf.writeframes(b''.join(frames)) wf.close() ``` Url --- ```python from urllib.parse import quote, quote_plus, unquote, unquote_plus ``` ### Encode ```python >>> quote("Can't be in URL!") 'Can%27t%20be%20in%20URL%21' >>> quote_plus("Can't be in URL!") 'Can%27t+be+in+URL%21' ``` ### Decode ```python >>> unquote('Can%27t+be+in+URL%21') "Can't+be+in+URL!"' >>> unquote_plus('Can%27t+be+in+URL%21') "Can't be in URL!" ``` Scraping -------- ```python # $ pip3 install requests beautifulsoup4 >>> import requests >>> from bs4 import BeautifulSoup >>> url = 'https://en.wikipedia.org/wiki/Python_(programming_language)' >>> page = requests.get(url) >>> document = BeautifulSoup(page.text, 'html.parser') >>> table = document.find('table', class_='infobox vevent') >>> rows = table.find_all('tr') >>> link = rows[11].find('a')['href'] 'https://www.python.org/' >>> latest_v = rows[6].find('div').text.split()[0] '3.7.2' ``` Web --- ```python # $ pip3 install bottle import bottle from urllib.parse import unquote ``` ### Run ```python bottle.run(host='localhost', port=8080) bottle.run(host='0.0.0.0', port=80, server='cherrypy') ``` ### Static Request ```python @route('/img/') def send_image(image): return static_file(image, 'images/', mimetype='image/png') ``` ### Dynamic Request ```python @route('/') def send_page(sport): sport = unquote(sport).lower() page = read_file(sport) return template(page) ``` ### REST Request ```python @post('/odds/') def odds_handler(sport): team = bottle.request.forms.get('team') team = unquote(team).lower() db = sqlite3.connect() home_odds, away_odds = get_odds(db, sport, team) db.close() response.headers['Content-Type'] = 'application/json' response.headers['Cache-Control'] = 'no-cache' return json.dumps([home_odds, away_odds]) ``` Profile ------- ### Basic ```python from time import time start_time = time() ... duration = time() - start_time ``` ### Timing a Snippet ```python from timeit import timeit timeit('"-".join(str(a) for a in range(100))', number=10000, globals=globals(), setup='pass') ``` ### Line Profiler ```python # $ pip3 install line_profiler @profile def main(): a = [*range(10000)] b = {*range(10000)} main() ``` ``` $ kernprof -lv test.py Line # Hits Time Per Hit % Time Line Contents ============================================================== 1 @profile 2 def main(): 3 1 1128.0 1128.0 27.4 a = [*range(10000)] 4 1 2994.0 2994.0 72.6 b = {*range(10000)} ``` ### Call Graph #### Generates a PNG image of call graph with highlighted bottlenecks: ```python # $ pip3 install pycallgraph from pycallgraph import output, PyCallGraph from datetime import datetime graph = output.GraphvizOutput() time_str = datetime.now().strftime('%Y%m%d%H%M%S') graph.output_file = f'profile-{time_str}.png' with PyCallGraph(output=graph): ``` NumPy ----- **Array manipulation mini language. Can run up to 100 times faster than equivalent Python code.** ```python # $ pip3 install numpy import numpy as np ``` ```python = np.array() = np.arange(from_inclusive, to_exclusive, step_size) = np.ones() = np.random.randint(from_inclusive, to_exclusive, ) ``` ```python value = .min([axis]) index = .argmin([axis]) ``` ```python = .reshape() = np.broadcast_to(, ) = [filter_expression] ``` ### Broadcasting **Broadcasting is a set of rules by which NumPy functions operate on arrays of different sizes and/or dimensions.** ```python left = [[0.1], [0.6], [0.8]] # Shape: (3, 1) right = [ 0.1 , 0.6 , 0.8 ] # Shape: (3) ``` #### 1. If array shapes differ, left-pad the smaller shape with ones: ```python left = [[0.1], [0.6], [0.8]] # Shape: (3, 1) right = [[0.1 , 0.6 , 0.8]] # Shape: (1, 3) <- ! ``` #### 2. If any dimensions differ in size, expand the ones that have size 1 by duplicating their elements: ```python left = [[0.1, 0.1, 0.1], [0.6, 0.6, 0.6], [0.8, 0.8, 0.8]] # Shape: (3, 3) <- ! right = [[0.1, 0.6, 0.8], [0.1, 0.6, 0.8], [0.1, 0.6, 0.8]] # Shape: (3, 3) <- ! ``` #### 3. If neither non-matching dimension has size 1, rise an error. ### Example #### For each point returns index of its nearest point: `[0.1, 0.6, 0.8] => [1, 2, 1]` ```python >>> points = np.array([0.1, 0.6, 0.8]) [ 0.1, 0.6, 0.8] >>> wrapped_points = points.reshape(3, 1) [[ 0.1], [ 0.6], [ 0.8]] >>> distances = wrapped_points - points [[ 0. , -0.5, -0.7], [ 0.5, 0. , -0.2], [ 0.7, 0.2, 0. ]] >>> distances = np.abs(distances) [[ 0. , 0.5, 0.7], [ 0.5, 0. , 0.2], [ 0.7, 0.2, 0. ]] >>> i = np.arange(3) [0, 1, 2] >>> distances[i, i] = np.inf [[ inf, 0.5, 0.7], [ 0.5, inf, 0.2], [ 0.7, 0.2, inf]] >>> distances.argmin(1) [1, 2, 1] ``` Basic Script Template --------------------- ```python #!/usr/bin/env python3 # # Usage: .py # from collections import namedtuple from enum import Enum import re import sys def main(): pass ### ## UTIL # def read_file(filename): with open(filename, encoding='utf-8') as file: return file.readlines() if __name__ == '__main__': main() ```