Skip to main content

translate X language into Chinese

Project description

Installation

pip3 install --verbose x2cdict 

Usage

Environment setting

  • DICT_DB_HOST is 127.0.0.1 by default
  • DICT_DB_USER is dict by default
  • DICT_DB_PASS is turingmachine by default
  • DEEPL_AUTH_KEY has to be set by yourself

The dictionary db IS NOT BUILT in this project, you HAVE TO install the DB by yourself, refer to BaJiu Dictionary Installation.

Binary Usage

  • Search vocabs with PoS assgined
x2cdict_vocab --fromlang en --tolang cn --pos ADJ --word happy --external False
x2cdict_vocab --help
  • Search vocabs without PoS
x2cdict_vocab_without_pos --fromlang en --tolang cn --word happy --external False
x2cdict_vocab_without_pos --help
  • Search phrase
x2cdict_phrase --fromlang en --tolang cn --phrase "overcome the problem"
x2cdict_phrase --help

Issues

  • PATH issue:

    • The folder where the exectuable is installed may not be in your PATH. For Linux, check the $HOME/.local/bin to see whether the executable x2cdict_* is installed.
    • Add export PATH="$HOME/.local/bin:$PATH" in $HOME/.bashrc
  • hpack issue:

    pip3 uninstall hpack
    pip3 install hpack==3.0.0
    

Package Usage

from x2cdict import VocabDict, PhraseDict
def search_vocab(word, pos, fromlang, tolang, external):
  vd = VocabDict(fromlang, tolang)
  r = vd.search(word, pos, external)
  print(r)

def search_vocab_without_pos(word, fromlang, tolang, external):
  vd = VocabDict(fromlang, tolang)
  r = vd.search_without_pos(word, external)
  print(r)

def search_phrase(phrase, fromlang, tolang):
  vd = PhraseDict(fromlang, tolang)
  r = vd.search(phrase)
  print(r)

From above, external is a boolean variable to switch whether using external translation, default is True.

Development

Clone the project

git clone https://github.com/qishe-nlp/x2cdict.git

Install poetry

Install dependencies

poetry update

Test

poetry run pytest -rP

which run tests under tests/*

Execute

poetry run x2cdict_vocab --help
poetry run x2cdict_vocab_without_pos --help
poetry run xc2dict_phrase --help

Build

  • Change version in
    • pyproject.toml
    • x2cdict/__init__.py
    • tests/test_x2cdict.py
  • Build python package by poetry build

Publish from local dev env

  • Set pypi test environment variables in poetry, refer to poetry doc
  • Publish to pypi test by poetry publish -r test

Publish through CI

git tag [x.x.x]
git push origin master

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

x2cdict-0.1.48.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

x2cdict-0.1.48-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file x2cdict-0.1.48.tar.gz.

File metadata

  • Download URL: x2cdict-0.1.48.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.0 Linux/6.2.0-1019-azure

File hashes

Hashes for x2cdict-0.1.48.tar.gz
Algorithm Hash digest
SHA256 fe090a097359f9d57c67bc556de0c6e184a0720183597c5d5d02aa2fe1caf991
MD5 e4cae573f7d4ed0a8060e8eaa714290f
BLAKE2b-256 8194fcb6ff2ba65e271ceaf041048ffb4fd2514846bbba3323a77976b458d45a

See more details on using hashes here.

File details

Details for the file x2cdict-0.1.48-py3-none-any.whl.

File metadata

  • Download URL: x2cdict-0.1.48-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.0 Linux/6.2.0-1019-azure

File hashes

Hashes for x2cdict-0.1.48-py3-none-any.whl
Algorithm Hash digest
SHA256 2048e8c3f1e8c43751ffc4fb7c38c8cffe930e1d132ba8e8718041a3a6f4a3a3
MD5 231edba29648807914f0ba250800a677
BLAKE2b-256 6494ba56a9683b745ec940fc1a61305903bd62ff7b9d25338ddae409dc5538e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page