Skip to content

Instantly share code, notes, and snippets.

View Tabea-K's full-sized avatar

Tabea Kischka Tabea-K

  • Münster, Germany
View GitHub Profile
@Tabea-K
Tabea-K / create_empty_python_project_template.sh
Last active August 28, 2018 12:38
Bash script to generate the directory structure and files needed for the generation of an empty python project template. The first argument supplied is used as the main name of the python project, the second as the name of the main python code file. A directory "tests" is generated for unit tests, which also includes an example test case.
#!/bin/bash
# This creates a more or less empty template for a python package
# containing unit tests
# Author: Tabea Kischka, 2018-07-02
# Version 2.0, last update: 2018-08-28
###########################################################################################################
# get options
###########################################################################################################
@Tabea-K
Tabea-K / bash_cheatsheet.md
Last active July 9, 2020 08:14
BASH commands
author date title
Tabea Kischka
2018-06-26
BASH Cheatsheet

BASH Cheatsheet

check for file on remote

# to list files that already exist on the server
@Tabea-K
Tabea-K / bare_logging_argparse_example.py
Last active July 2, 2018 11:21
This script is an example for using argparse and logging module in one script!
#!/usr/bin/env python
# File created by Tabea Kischka at Mon Aug 1 2016
import sys
import os
import argparse
import logging