summaryrefslogtreecommitdiff
path: root/README.md
blob: b59ed74bed3295905ba04991d7cb6839f134b738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# .NET Viewstate Decoder

A small Python library for decoding .NET viewstate. Can be used in various scraping scenarios.

## Usage

```python
from viewstate import ViewState
vs = ViewState(base64EncodedViewState)
```

## Test

```python
python test.py
```

## References

 - https://github.com/mutantzombie/JavaScript-ViewState-Parser