Metadata-Version: 2.1
Name: numvarutils
Version: 1.2.0
Summary: A custom math utilities library with manual loop logic
Author: karas
Author-email: kjmcapitals1@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
numvarutils — A tiny, dependency-free collection of number and variable utilities for Python.

numvarutils is a small, lightweight library that bundles a set of handy numeric helpers in one place. It has zero external dependencies (only the standard math module), so it installs instantly and works anywhere Python 3 runs.

Features

· Sum of integers (Gauss sum)
· Integer counters and countdowns (as generators)
· Prime checking (both printable and boolean versions)
· Prime list generation
· Even / odd checks
· Fibonacci numbers

Installation

```
pip install numvarutils
```

Usage

```python
import numvarutils as nv

nv.gauss_sum(100)          # 5050
list(nv.counter(1, 5))     # [1, 2, 3, 4, 5]
list(nv.countdown(5, 5))   # [5, 4, 3, 2, 1]
nv.isprime_bool(17)        # True
nv.primes_up_to(10)        # [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]
nv.is_even(4)              # True
nv.is_odd(7)               # True
nv.fibonacci(10)           # 55
```

Design notes

· Pure Python, no dependencies.
· Generators used where possible to save memory.
· Simple, readable, beginner-friendly code.