Update README.md
This commit is contained in:
parent
d89ac669dd
commit
e82dd1342d
1 changed files with 24 additions and 6 deletions
30
README.md
30
README.md
|
@ -1,11 +1,29 @@
|
||||||
# Discord Chat Exporter csv parser
|
# Discord Chat Exporter csv parsers
|
||||||
[](https://wakatime.com/badge/github/BuyMyMojo/discord-chat-parser)
|
|
||||||
|
|
||||||
|
<sub> Now with a much faster version written in go! </sub>
|
||||||
|
|
||||||
this tool will take a csv (or a folder of them) from Discord Chat Exporter and create a new list of unique IDs.
|
## How to use the go version
|
||||||
Made to get all active users from a discord server.
|
|
||||||
|
|
||||||
|
To run the go versions all you need to do is download the executable for your platform and run it from the terminal/powershell:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./IdParser[.exe] -i [Path to folder/file] -o [Path to output .csv (Defaults to ./out.csv)]
|
||||||
|
```
|
||||||
|
|
||||||
> py ./main.py [csv file or dir] [output csv]
|
|
||||||
|
|
||||||
Use the same output between multiple runs works and takes into account old data to ensure no dupes
|
Use the same output between multiple runs works and takes into account old data to ensure no dupes
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./LocateID[.exe] -i [Path to folder/fil] -id "[User ID in quotes]" -o [Path to output csv (Optional)]
|
||||||
|
```
|
||||||
|
|
||||||
|
## How to use the Python version
|
||||||
|
|
||||||
|
```bash
|
||||||
|
py ./main.py [csv file or dir] [output csv]
|
||||||
|
```
|
||||||
|
|
||||||
|
Use the same output between multiple runs works and takes into account old data to ensure no dupes
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
py ./locate_id.py [User ID] [csv file or dir]
|
||||||
|
```
|
||||||
|
|
Reference in a new issue