Skip to content

Commit dfb6cf1

Browse files
committed
Initial commit
0 parents  commit dfb6cf1

File tree

6 files changed

+1118
-0
lines changed

6 files changed

+1118
-0
lines changed

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Sphinx documentation
54+
docs/_build/
55+
56+
# PyBuilder
57+
target/
58+
59+
# pyenv
60+
.python-version
61+
62+
# Environments
63+
.env
64+
.venv
65+
env/
66+
venv/
67+
ENV/
68+
env.bak/
69+
venv.bak/

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python Scripting for System Administrators
2+
3+
The scripts written throughout the Python Scripting for Systems Administrators
4+
course videos and labs. This repository also includes the helper script to
5+
easily create a database server to follow along with the final section of the
6+
course.
7+
8+
* [Helper files](/helpers)
9+
* [Course Scripts](/scripts)
10+
* [Final Project (pgbackup)](/pgbackup)

helpers/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)