https://github.com/chaploud/google-ime-skk-py
https://github.com/chaploud/google-ime-skk-py
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaploud/google-ime-skk-py
- Owner: chaploud
- License: mit
- Created: 2019-11-29T20:44:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-07T03:32:38.000Z (over 4 years ago)
- Last Synced: 2025-12-16T16:57:59.478Z (7 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# google-ime-skk-py
Google IME SKK Server written in Python
## インストール
```
$ pip install google-ime-skk-py
```
## 実行
```
$ google-ime-skk-py
```
## オプション
```
-p, --port 55000 Listen port number
-h, --host "0.0.0.0" Listen hostname
-x, --proxy "http://proxy.example.com:8080" HTTP Proxy Server
```
## Emacsにおけるddskkの設定
`init.el`等に以下を追加
```lisp
;; 辞書サーバが起動していなければ起動する
(setq skk-server-inhibit-startup-server nil)
;; 辞書サーバの起動コマンド(適宜変更)
(setq skk-server-prog "/path/to/google-ime-skk-py")
;; 辞書サーバのポート番号
(setq skk-server-portnum 55000)
;; Proxy(必要な場合)
(setenv "http_proxy" "http://proxy.example.com:8080")
```
## 参考ページ
### RubyによるGoogle IME SKK辞書サーバー
https://github.com/hitode909/google-ime-skk
### ddskk/skk-server.el
https://github.com/skk-dev/ddskk/blob/master/skk-server.el
## Copyright
Copyright (c) 2022 chaploud. See LICENSE.txt for further details.