All Projects â†’ yixianle â†’ Translate Api

yixianle / Translate Api

A free google translation api, support text and page

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Translate Api

Dev Folio
🔥 A collection of Free Portfolio templates for developers.
Stars: ✭ 120 (-16.67%)
Mutual labels:  free
Py3 Pinterest
Fully fledged Python Pinterest client
Stars: ✭ 133 (-7.64%)
Mutual labels:  free
Thehive4py
Python API Client for TheHive
Stars: ✭ 143 (-0.69%)
Mutual labels:  free
Startbootstrap Heroic Features
A Bootstrap HTML homepage template with feature boxes - created by Start Bootstrap
Stars: ✭ 122 (-15.28%)
Mutual labels:  free
Ggfwzs in hack
hack VIP for chrome-extension 谷歌访问助手
Stars: ✭ 129 (-10.42%)
Mutual labels:  free
Shards Ui
🎨Shards is a beautiful & modern Bootstrap 4 UI kit packed with extra templates and components.
Stars: ✭ 1,718 (+1093.06%)
Mutual labels:  free
Unsplash Js
🤖 A server-side JavaScript wrapper for the Unsplash API
Stars: ✭ 1,647 (+1043.75%)
Mutual labels:  free
Best Android Tutorials
Best Free Android Tutorials By MindOrks
Stars: ✭ 144 (+0%)
Mutual labels:  free
Free Tpu
Free TPU for FPGA with Lenet, MobileNet, Squeezenet, Resnet, Inception V3, YOLO V3, and ICNet. Deep learning acceleration using Xilinx zynq (Zedboard or ZC702 ) or kintex-7 to solve image classification, detection, and segmentation problem.
Stars: ✭ 129 (-10.42%)
Mutual labels:  free
Startbootstrap Agency
Start Bootstrap is an open source library of free Bootstrap themes and templates. All of the free themes and templates on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 1,810 (+1156.94%)
Mutual labels:  free
Theme Blog
A Free Material Blog Theme for Vuetify
Stars: ✭ 123 (-14.58%)
Mutual labels:  free
Frapper
ASP.NET Core 3.1 Beginners project template with complete Custom User Management and lot's of other useful Features Which Helps you for Rapid Application Development.
Stars: ✭ 129 (-10.42%)
Mutual labels:  free
Git Wiki Theme
A revolutionary full-featured wiki for github pages and jekyll. You don't need to compile it!
Stars: ✭ 139 (-3.47%)
Mutual labels:  free
Ipv6tools
IPv6Tools is a robust modular framework that enables the ability to visually audit an IPv6 enabled network.
Stars: ✭ 120 (-16.67%)
Mutual labels:  free
Startbootstrap Clean Blog Jekyll
Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 1,837 (+1175.69%)
Mutual labels:  free
Startbootstrap Clean Blog
Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 1,604 (+1013.89%)
Mutual labels:  free
Web Presentation
Jekyll theme template to create web presentation
Stars: ✭ 137 (-4.86%)
Mutual labels:  free
Library
ufutx share book libraries : share and manage books platform for personal and organization
Stars: ✭ 144 (+0%)
Mutual labels:  free
Free Python Games
Free Python Games
Stars: ✭ 2,166 (+1404.17%)
Mutual labels:  free
Ltecleanerfoss
The last Android cleaner you'll ever need!
Stars: ✭ 141 (-2.08%)
Mutual labels:  free

translate-api

A Node.js module for working with the Google Translation. Automatically handles bulk translations that exceed the Google Translation API query limit.

DEMO

http://translate.witbag.cn/

google translate

Npm Module

Install

  $ npm install translate-api --save

Example

  const translate = require('translate-api');

  let transUrl = 'https://nodejs.org/en/';
  translate.getPage(transUrl).then(function(htmlStr){
    console.log(htmlStr.length)
  });

  let transText = 'hello world!';
  translate.getText(transText,{to: 'zh-CN'}).then(function(text){
    console.log(text)
  });

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].