This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Hacky little Python script to get Windows Version directly | |
out of running process memory. | |
This is a toy. Not sure why you would really want to do this. | |
Windows undocumented API: https://stackoverflow.com/a/79014708/8524178 | |
Requires the unsafe.py file from https://github.com/DavidBuchanan314/unsafe-python/blob/main/unsafe.py | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import os | |
import csv | |
import sys | |
import textwrap | |
import subprocess | |
from io import StringIO | |
from colorama.ansitowin32 import AnsiToWin32 as AnsiToText | |
class AnsiToText: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// #include <stdio.h> | |
// #define XSTR(x) STR(x) | |
// #define STR(x) #x | |
// #pragma message "GLIBC " XSTR(__GLIBC__) "." XSTR(__GLIBC_MINOR__) | |
// strerror_.h | |
#ifndef STRERROR_H | |
#define STRERROR_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Toml Everywhere | |
A wrapper that allows any command line program to have a `--config` flag. | |
No explicit support required! | |
Call as: | |
$ toml_everywhere.py program [argument ...] --config config.cfg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simplified PathType | |
- Simplify for common case | |
- Only one type, no more (never used really) | |
- No dash support, just simplier | |
- No symilnk (never used) | |
A helper type for input validation in argparse for paths. | |
This provides a convienent way to check the path type and existance. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
PathType | |
A helper type for input validation in argparse for paths. | |
This provides a convienent way to check the paths type, existance, and | |
potentially use "-" to reference stdin or stdout. | |
This class is provided as an alternative to argparse.FileType(), which | |
does not open the path, only validates it and supports directories. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Because it turns out writing files is hard | |
# Process can crash halfway through, and a collision can overwrite the file | |
# mid operation. | |
# https://stackoverflow.com/questions/7645338/how-to-do-atomic-file-replacement | |
# http://www.weirdnet.nl/apple/rename.html | |
import os | |
import hjson | |
import filelock | |
def safe_json_read(filename, timeout = None): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simply little utility function to make it possible to pickle generators. | |
While generator instances can not actually be pickled, this saves the generator | |
function and only creates a generator instance when the first value is accessed. | |
The goal is to make it possible to pass generators, with arguments, through multiprocessing | |
which uses pickling internally to move objects between Python processes. | |
import multiprocessing |
NewerOlder