├── .gitignore
├── basic-functions
├── basic-functions-cs.pdf
├── basic-functions-cs.svg
├── basic-functions-en.pdf
└── basic-functions-en.svg
├── basic-git
├── basic-git-cs.pdf
└── basic-git-cs.svg
├── big-git
├── big-git-cs.pdf
└── big-git-cs.svg
├── classes
├── classes.pdf
└── classes.svg
├── combine-a4.sh
├── dicts
├── dicts-cs.pdf
└── dicts-cs.svg
├── errors
├── errors-cs.pdf
├── errors-cs.svg
├── errors-en.pdf
└── errors-en.svg
├── exceptions
├── exceptions-cs.pdf
└── exceptions-cs.svg
├── export-all.py
├── game-physics
├── game-physics-cs.pdf
├── game-physics-cs.svg
├── game-physics-en.pdf
└── game-physics-en.svg
├── keyboard
├── keyboard-cs.pdf
├── keyboard-cs.svg
├── keyboard-sk.pdf
└── keyboard-sk.svg
├── lists
├── lists-cs.pdf
└── lists-cs.svg
├── micropython
├── nodemcu-cs.pdf
├── nodemcu-cs.svg
├── nodemcu-en.pdf
├── nodemcu-en.svg
├── nodemcuv1-cs.pdf
└── nodemcuv1-cs.svg
├── numpy
├── numpy-cs.pdf
└── numpy-cs.svg
├── pathlib
├── pathlib-cs.pdf
└── pathlib-cs.svg
├── pyglet
├── pyglet-basics-cs.pdf
├── pyglet-basics-cs.svg
├── pyglet-basics-en.pdf
└── pyglet-basics-en.svg
├── sets
├── sets-cs.pdf
├── sets-cs.svg
├── sets-en.pdf
└── sets-en.svg
└── strings
├── strings-cs.pdf
├── strings-cs.svg
├── strings-en.pdf
└── strings-en.svg
/.gitignore:
--------------------------------------------------------------------------------
1 | /combined-a4.pdf
2 |
--------------------------------------------------------------------------------
/basic-functions/basic-functions-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/basic-functions/basic-functions-cs.pdf
--------------------------------------------------------------------------------
/basic-functions/basic-functions-cs.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
900 |
--------------------------------------------------------------------------------
/basic-functions/basic-functions-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/basic-functions/basic-functions-en.pdf
--------------------------------------------------------------------------------
/basic-functions/basic-functions-en.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
963 |
--------------------------------------------------------------------------------
/basic-git/basic-git-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/basic-git/basic-git-cs.pdf
--------------------------------------------------------------------------------
/big-git/big-git-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/big-git/big-git-cs.pdf
--------------------------------------------------------------------------------
/classes/classes.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/classes/classes.pdf
--------------------------------------------------------------------------------
/combine-a4.sh:
--------------------------------------------------------------------------------
1 | #! /bin/bash -ex
2 |
3 | # Combine two A5 PDFs into one A4
4 |
5 | if [ "$1" == "" ]; then
6 | echo Usage: $0 filename
7 |
8 | echo Example: $0 basic-functions/basic-functions-cs.pdf
9 | else
10 | pdfjam --landscape --paper a4paper --nup 2x1 "$1" 1,1 -o combined-a4.pdf
11 | fi
12 |
--------------------------------------------------------------------------------
/dicts/dicts-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/dicts/dicts-cs.pdf
--------------------------------------------------------------------------------
/errors/errors-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/errors/errors-cs.pdf
--------------------------------------------------------------------------------
/errors/errors-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/errors/errors-en.pdf
--------------------------------------------------------------------------------
/exceptions/exceptions-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/exceptions/exceptions-cs.pdf
--------------------------------------------------------------------------------
/export-all.py:
--------------------------------------------------------------------------------
1 | #! /usr/bin/env python3
2 |
3 | import glob
4 | import re
5 | import subprocess
6 | import shlex
7 |
8 | lines = []
9 | for filename in glob.glob('*/*.svg'):
10 | output = re.sub(r'\.svg$', '.pdf', filename)
11 | lines.append([filename, '-A', output])
12 |
13 | proc = subprocess.Popen(['inkscape', '--shell'], stdin=subprocess.PIPE)
14 | stdin_text = '\n'.join(' '.join(shlex.quote(w) for w in s) for s in lines) + '\n'
15 | print(stdin_text)
16 | proc.communicate(stdin_text.encode('utf-8'))
17 | print()
18 |
--------------------------------------------------------------------------------
/game-physics/game-physics-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/game-physics/game-physics-cs.pdf
--------------------------------------------------------------------------------
/game-physics/game-physics-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/game-physics/game-physics-en.pdf
--------------------------------------------------------------------------------
/keyboard/keyboard-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/keyboard/keyboard-cs.pdf
--------------------------------------------------------------------------------
/keyboard/keyboard-sk.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/keyboard/keyboard-sk.pdf
--------------------------------------------------------------------------------
/lists/lists-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/lists/lists-cs.pdf
--------------------------------------------------------------------------------
/micropython/nodemcu-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/micropython/nodemcu-cs.pdf
--------------------------------------------------------------------------------
/micropython/nodemcu-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/micropython/nodemcu-en.pdf
--------------------------------------------------------------------------------
/micropython/nodemcuv1-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/micropython/nodemcuv1-cs.pdf
--------------------------------------------------------------------------------
/numpy/numpy-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/numpy/numpy-cs.pdf
--------------------------------------------------------------------------------
/pathlib/pathlib-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/pathlib/pathlib-cs.pdf
--------------------------------------------------------------------------------
/pyglet/pyglet-basics-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/pyglet/pyglet-basics-cs.pdf
--------------------------------------------------------------------------------
/pyglet/pyglet-basics-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/pyglet/pyglet-basics-en.pdf
--------------------------------------------------------------------------------
/pyglet/pyglet-basics-en.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
1058 |
--------------------------------------------------------------------------------
/sets/sets-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/sets/sets-cs.pdf
--------------------------------------------------------------------------------
/sets/sets-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/sets/sets-en.pdf
--------------------------------------------------------------------------------
/strings/strings-cs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/strings/strings-cs.pdf
--------------------------------------------------------------------------------
/strings/strings-en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pyvec/cheatsheets/d257f1caefbc2e3869760ba8063eae8abd519d09/strings/strings-en.pdf
--------------------------------------------------------------------------------