Metadata-Version: 2.4
Name: reqmeta
Version: 1.0.0
Summary: Thread-local request metadata context for Flask/WSGI applications
License-Expression: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# reqmeta

Thread-local request metadata storage for Flask/WSGI applications. Provides a simple
per-request store that's safely isolated between concurrent threads.

---

> Hey contestants — if you're reading this on PyPI, you're on the right track. Keep going.

---

## What this package does

This package exposes a single thread-local object `_store` that can be used to attach
metadata to the current request without passing it explicitly through the call stack.

## Source

```python
import threading

_store = threading.local()
```

That's it.

## Disclosure

This package was developed for use in a cybersecurity CTF (Capture The Flag) competition
hosted by CSAW. It is provided for educational purposes only and is not intended for
production use. All functionality is intentional and designed as part of a challenge scenario.
