Metadata-Version: 2.1
Name: block-tracing
Version: 1.0.1
Summary: Protect process memory
Home-page: https://github.com/rianhunter/block_tracing
Author: Rian Hunter
Author-email: rian@alum.mit.edu
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# block_tracing

block_tracing is a tiny Python library that can be used to prevent
debuggers and other applications from inspecting the memory within
your process.

This is important for applications that store sensitive material
in memory, like keys.

# How to Use

Just call a function at the start of execution of your script.

```python
from block_tracing import block_tracing

try:
    block_tracing()
except (NotImplementedError, OSError):
    # handle failures
    pass
```

# Contact

Rian Hunter [@cejetvole](https://twitter.com/cejetvole)


