Skip to content

Instantly share code, notes, and snippets.

View AlexWaygood's full-sized avatar
🚀
Hacking on devtools @astral-sh!

Alex Waygood AlexWaygood

🚀
Hacking on devtools @astral-sh!
View GitHub Profile
from types import SimpleNamespace
AnsiColors = SimpleNamespace(
BOLD_GREEN="\x1b[1;32m",
BOLD_MAGENTA="\x1b[1;35m",
BOLD_RED="\x1b[1;31m",
GREEN="\x1b[32m",
GREY = "\x1b[90m"
MAGENTA = "\x1b[35m"
RED = "\x1b[31m"
@AlexWaygood
AlexWaygood / last_n_lines.py
Last active March 10, 2024 16:30
Script to find the last `n` lines of a file
import os
from collections import deque
from collections.abc import Iterator, Sequence
from typing import Final, Protocol
class SeekableBytesFile(Protocol):
def seek(self, position: int, whence: int = ..., /) -> int: ...
def read(self, amount: int, /) -> bytes: ...
@AlexWaygood
AlexWaygood / find_identifier_lengths.py
Last active February 3, 2024 17:19
Script to find the distribution of lengths of Python identifiers in a given directory
import ast
import sys
import keyword
import seaborn
from pathlib import Path
from collections import Counter
from dataclasses import dataclass
LENGTHS_COUNT = Counter[int]()
from typing import Optional
from random import choice
class T:
def foo(self) -> None:
pass
var: Optional[T] = choice((None, T()))
var.foo()