pons.py 1.1.1

Last updated:

0 purchases

pons.py 1.1.1 Image
pons.py 1.1.1 Images
Add to Cart

Description:

pons.py 1.1.1

pons.py
An API wrapper for the PONS dictionary written in Python

Installation
$ pip install pons.py

Usage
from pons import Client

pons = Client("YOUR_SECRET") # see PONS API reference

# get dictionaries
# params: language (de|el|en|es|fr|it|pl|pt|ru|sl|tr|zh)
dictionaries = pons.get_dictionaries("en") # returns a list of Dictionary objects

# get translations
# required params: term, dictionary, source language
# optional params: output language, fuzzy (bool), references (bool)
entries = pons.query("term", "deen", "en")["en"] # returns a list of EntryHit objects
entries[0].translations # returns a list of translations (strings)

References

PONS API Reference
API Documentation

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.