Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yixinBC authored Jun 20, 2023
1 parent ed3e04e commit ebaad5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ from aria2_dht_dat_parser import parse
result = parse('dht.dat')
```

## Example
## Parsed Result Example

```json
{
"format_id": 2,
"version": 3,
"file_saved_time": 1620000000,
"local_node_id": "x"*20,
"local_node_id": "xxxxxxxxxxxxxxxxxxxx",
"num_node": 100,
"nodes": [
{
"ip": "127.0.0.1",
"port": 6881,
"id": "x"*20
}, ...(in total 100 nodes)
"id": "xxxxxxxxxxxxxxxxxxxx"
}, ...
]
}
```
Expand Down

0 comments on commit ebaad5a

Please sign in to comment.