◐ Shell
clean mode source ↗

Scott Boyce Python Code

Pinned Loading

  1. A class that efficiently cycles through datetime intervals generated from a start date and list of (month, day) tuples.

    Python 1 1

  2. ResultContainer is a Python library inspired by Rust's Result enum, designed for robust error handling. It seamlessly supports mathematical operations, attribute access, and method chaining on Ok(v…

    Python 1

  3. NumpyDeque is a numpy.ndarray based double-ended queue (deque) with a maximum size. This double-ended queue is efficiently done by using a padded-buffer array.

    Python 1

  4. MirrorDict is a dictionary-like object that maintains a bidirectional mapping between keys and values.

    Python 1

  5. A class that provides a dynamic vector using numpy to store the values. Can access all numpy methods using a view property and includes common list functions for operating without a view. Allows fo…

    Python 1

  6. An __init__.py file that imports all submodules in the same directory.

    Python