Scraping the Russian-Kazakh translation website. Requires your terminal to work with UTF-8 symbols
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #! /bin/bash
- agent="Mozilla/5.0 (Windows NT 10.0; x86_64; rv:67.0) Gecko/20100101 Firefox/67.0"
- while true
- do
- read -p "Translate what word: " word
- python3 scrape.py -i "$(echo "https://sozdik.kz/ru/dictionary/translate/ru/kk/"$word"/")" | html2text -utf8 -nobs
- done
|