Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 960 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 960 Bytes

pyton-snippets

This repo is a collection of Python resources for my personal use, for future reference.

Repository structure

python-snippets
├── .gitignore
├── argparse_example.py                # Short argparse example.
├── atlassian_confluence_update.py     # Regex replace stuff on confluence pages.
├── beautifulsoup_lastname_scraper.py  # Scrape list of lastnames from website.
├── config-yaml-and-logging.py         # Initialize logging and read from a config file.
├── config.yml                         # Config file to store options in.
├── language-detection.py              # Language detection with Python `langdetect`.
├── move-mouse.py                      # Mini script to regularly move mouse, e.g. to prevent sleep or lock.
├── multiprocessing_tqdm.py            # Small multiprocessing example with progress bars.
└── README.md                          # This file.