Metadata-Version: 2.4
Name: v2ex-tx2json
Version: 0.1.0
Summary: Parse v2ex solana tx pages and return JSON-like dicts
Author-email: Joe <sdauwangzh@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/HelloWorldImJoe/v2ex_tx2json
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv>=1.0
Dynamic: license-file

# v2ex_tx2json
将 solana 的 tx 解析为 JSON 数据.

快速开始:

```python
from v2ex_tx2json import TX2JSON

client = TX2JSON("https://v2ex.com", cookie="your_cookie_here")
info = client.parse("<tx_hash_here>")
print(info)
```
