Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nezorflame/lazytranslate-tg-bot
Telegram bot for the lazy translation through the Google Translate API
https://github.com/nezorflame/lazytranslate-tg-bot
go-modules golang telegram-bot-api translator
Last synced: about 1 month ago
JSON representation
Telegram bot for the lazy translation through the Google Translate API
- Host: GitHub
- URL: https://github.com/nezorflame/lazytranslate-tg-bot
- Owner: nezorflame
- License: mit
- Created: 2018-10-12T15:29:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T03:08:22.000Z (almost 2 years ago)
- Last Synced: 2024-10-09T13:19:42.594Z (3 months ago)
- Topics: go-modules, golang, telegram-bot-api, translator
- Language: Go
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lazytranslate-tg-bot [![Build Status](https://travis-ci.org/nezorflame/lazytranslate-tg-bot.svg?branch=master)](https://travis-ci.org/nezorflame/lazytranslate-tg-bot) [![Go Report Card](https://goreportcard.com/badge/github.com/nezorflame/lazytranslate-tg-bot)](https://goreportcard.com/report/github.com/nezorflame/lazytranslate-tg-bot) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fnezorflame%2Flazytranslate-tg-bot.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fnezorflame%2Flazytranslate-tg-bot?ref=badge_shield)
Telegram bot for the lazy translation through the Google Translate API.
## Usage
Either
1. Create `.env` file... OR
2. Export env variables......according to the `example.env`:
| Env variable | Type | Mandatory | Default value | Description |
| - | - | - | - | - |
| GOOGLE_APPLICATION_CREDENTIALS | `string` | Yes | - | Google Translate API credentials, see more [here](https://cloud.google.com/translate/docs/) |
| LAZYTRANSLATE_TG_WHITELIST | `string` (comma-separated `[]int`) | Yes | - | List of Telegram user IDs |
| LAZYTRANSLATE_TG_TOKEN | `string` | Yes | - | Your Telegram bot token |
| LAZYTRANSLATE_PROXY_ADDR | `string` | No | - | Proxy address URL (skipped if URL is empty) |
| LAZYTRANSLATE_PROXY_USER | `string` | No | - | Proxy username (required if URL is not empty) |
| LAZYTRANSLATE_PROXY_PASS | `string` | No | - | Proxy password (required if URL is not empty) |
| LAZYTRANSLATE_DEFAULT_LANG | `string` | No | 'en' | Default language for translations |
| LAZYTRANSLATE_UPDATE_TIMEOUT | `int` | No | 60 | Timeout for Telegram updates (in seconds) |
| LAZYTRANSLATE_RESPONSE_TIMEOUT | `time.Duration` | No | '1m' | Context timeout (for bot operations) |## Installation
Bot requires Go 1.11+ as it's using Go modules as a dependency management tool:
```bash
export GO111MODULE=on
git clone https://github.com/nezorflame/lazytranslate-tg-bot.git
cd lazytranslate-tg-bot
# create env variables
# or edit .env file:
# cp example.env .env && nano .env
go build
./lazytranslate-tg-bot
```## License
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fnezorflame%2Flazytranslate-tg-bot.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fnezorflame%2Flazytranslate-tg-bot?ref=badge_large)