Metadata-Version: 2.4
Name: multibreak
Version: 0.0.2
Summary: A Python module to break out of multiple nested loops using break(n).
Author-email: mrwe3838 <mrwe3838@gmail.com>
License: MIT
License-File: LICENSE
Keywords: break,loops,nested loops,python
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# multibreak

`multibreak` lets you break out of multiple nested loops in Python easily.

### Example

```python
from multibreak import break_

for i in range(3):
    for j in range(3):
        if j == 1:
            break_(2)  # exits both loops
        print(i, j)
```

Works with any number of nested loops!
