for accessing the Sakura Paris dictionary API
Project description
The Unofficial Sakura Paris Python API (TUSPPAPI)
✨ Because one dictionary is never enough ✨
Table of Contents
More than just a wrapper
Have you ever wanted to search 40 different Japanese dictionaries at the same time? Well now you can anyways!
Introducing the wrapper that queries the sakura-paris's free Koujien search API(広辞苑無料検索) for a lot of dictionaries. This includes Daijirin, Koujien, Daijisen, and even oddballs like a dictionary for psychological terms(心理学辞典).
If that wasn't enough, this wrapper allows you to query selected dictionaries at the same time, and also allows searches over the 40 entry limit on sakura-paris! If you've ever been at a loss for which dictionary to pick, you're at the right place!
That's enough talk. Here's an example of how easy it is to use.
#import the package!
from sakuraParisAPI.sakura import JpDict
#create JpDict object
a = JpDict()
#each dictionary will return at most 10 entries (default value is already 10)
a.setMax(10)
#add dictionary to be queries ("広辞苑" is added by default, so this will query 2 dictionaries)
a.addDict("大辞林")
#returns a dictionary where [key = dictionary_name, value = list of Entry]
results = a.search("元気")
#for every dictionary queried
for key in results:
print("______", key, "______")
#for every entry found in dictionary
for entry in results[key]:
#print out the word and its definition
print(entry.getHeading())
print(entry.getDefinition())
print()
#print out all dictionaries used in this query
print(a.getDict())
Also, by adding a single line before calling search(word)
, we can query all dictionaries at the same time.
a.addAllDict()
and voila. 40 dictionaries at your fingertips. Minus a couple cause the API returns empty jsons for them. :')
Install the Package
This package can be downloaded using PIP!
Here is the command for the latest version: pip install sakuraParisAPI==0.1.0
SPPAPI has two dependencies: bs4 and requests, and both will also be installed by the above command
Documentation
All public methods of the JpDict and Entry class are listed below.
Please note that the API does not work with a few dictionaries (e.g. 学研古語辞典, NHK日本語発音アクセント辞典). I will be using bs4 or something similar to implement these features later. Especially for the NHK accent dictionary, I hope to return the links to the .wav files for each entry.
JpDict Method | Parameter Types | Return Type | Description |
---|---|---|---|
search(word, searchType = 0) |
str, int (0 - 2) | dict[str, list[Entry]] | queries active dictionaries for word with search type searchType . searchtype = 0 by default and searches for dictionary entries with prefixes matching word . searchtype = 1 searches for suffixes matching word and searchtype = 2 searches for exact matches only. Returns a dictionary where keys are the name of the dictionary queried and value is a list of Entry |
startsWith(word) |
str | dict[str, list[Entry]] | Queries dictionary for entries that start with word . Same return type as search . |
endsWith(word) |
str | dict[str, list[Entry]] | Queries dictionary for entries that end with word . Same return type as search . |
completeMatch(word) |
str | dict[str, list[Entry]] | Queries dictionary for entries that are exact matches for word . Same return type as search . |
setMax(maxEntries) |
int | void | Sets the max number of entries (for each dictionary) returned by any of the above functions to maxEntries |
addDict(dictionaryName) |
str | void | adds dictionaryName to set of dictionaries to be queried if it exists. |
addAllDict() |
void | adds all possible dictionaries to set of dictionaries to be queried. | |
enableTags() |
void | prevents markdown tags from being removed from the heading and definition fields of Entry s returned in searches. |
|
disableTags() |
void | ensures markdown tags are removed from the heading and definition fields of Entry s returned in searches. |
Entry Method | Parameter Types | Return Type | Description |
---|---|---|---|
getHeading() |
str | returns heading listed in dictionary entry. | |
getDefinition() |
str | returns the definition listed in dictionary entry. | |
getPage() |
str | returns page number of dictionary entry | |
getOffset() |
str | returns the offset of the dictionary entry |
Note: getPage()
and getOffset()
do not currently have any use.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sakuraParisAPI-0.1.1.tar.gz
.
File metadata
- Download URL: sakuraParisAPI-0.1.1.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d984fee6cdae78cb73cd182b178d455da1a93b77f9ea6c10daba631c6f352a0a |
|
MD5 | 66df9262ad122ef1e2af210a7c8c1544 |
|
BLAKE2b-256 | 8d80ca3d49c0b6d6e39ced7862bf9e67ca1636609fc11fa1ffcbc673dcd66bae |
File details
Details for the file sakuraParisAPI-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: sakuraParisAPI-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b0daab1ff69bb5a3b676af92a37932161bc6a5c2b274c4734f7cff4f6f601d1 |
|
MD5 | fee82b932cf258ebb7d9466845745309 |
|
BLAKE2b-256 | ee55d07523369c4087ef82c908d9dad29eb6792d5b7dc1180581fdb06d2d1492 |