Puzzle-english vocabulary parser is application writes on Golang for export vocabulary from Puzzle-english site.
For manually building just download the repo and run build command.
MacOS (Intel)
GOOS=darwin GOARCH=amd64 go build -o builds/mac-os-intel/
MacOS (Apple Silicon)
GOOS=darwin GOARCH=arm64 go build -o builds/mac-os-apple-silicon/
Windows
GOOS=windows GOARCH=amd64 go build -o builds/windows/
Linux
GOOS=linux GOARCH=amd64 go build -o builds/linux/
Most likely, operation system will block the app due can't check a application publisher. You should give access for that.
Don't forget command chmod +x ./go-puzzle-english-vocabulary-parser
for mac-os, I'm not sure about linux
Unfortunately, for using you should to pass your cookie from https://puzzle-english.com
For it follow the next steps:
- Login to you account at https://puzzle-english.com
- Go to the page https://puzzle-english.com/change-my-dictionary
- Open developer tools (https://support.google.com/campaignmanager/answer/2828688?hl=en)
- Go to tab "Network"
- Click on "Clear" button.
- Click on the button on webpage
Показать еще/Show more
- There will appear new log in Network section
- Choose this item > Click to
Header
> Find and openRequest headers
> Find sectioncookie
> Right click on it >Copy value
- That's it. You can run app.
There aren't extra validations, so be careful with passed data.
After the application running there will be created a new file vocabulary.csv
in the same place where were run app, with all your dictionary.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.