freemt-utils

baidu translate for free with async and proxy support


Keywords
machine, translation, free, sign
License
MIT
Install
pip install freemt-utils==0.1.1

Documentation

freemt-utils Python3.6|3.7 packageCodecovPyPI version

various utils for freemt

Update v.0.0.7

langcode_to_tmxcode: need (marisa-trie) and langcodes.

If you don't have VC in the system, you'll need to install a whl version of marisa-trie that can be downloaded from https://www.lfd.uci.edu/~gohlke/pythonlibs/#marisa-trie

Installation

pip install freemt-utils

Validate installation

python -c "import freemt_utils; print(freemt_utils.__version__)"
0.0.1

Usage

from pathlib import Path
import asyncio
from freemt_utils import save_tempfile, switch_to, httpx_get, make_url, arun, fetch_proxies, logger_level

with switch_to():
  print(Path.cwd())  # home dir
print(Path.cwd())  # back to the current work directory

try:
  arun(httpx_get('www.baidu.com'))
except Exception as exc:
  print(exc)  # InvalidURL: No scheme included in URL.

res = arun(httpx_get(make_url('www.baidu.com')))
print(res.headers)
# Headers([('bdpagetype', '1'), ('bdqid',...

logger_level('info')

res.encoding = 'UTF-8'
save_tempfile(res.text)  # display res.text in the default browser