Metadata-Version: 2.4
Name: v2ex-tx2json
Version: 0.1.1
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_python
Project-URL: Repository, https://github.com/HelloWorldImJoe/v2ex_tx2json_python
Project-URL: Issues, https://github.com/HelloWorldImJoe/v2ex_tx2json_python/issues
Keywords: v2ex,solana,transaction,parser,json
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
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)
```
