
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
com.github.sparkmuse:kotlin-oxford-dictionaries
Advanced tools
Kotlin client for the Oxford Dictionaries API.
Kotlin client for the Oxford Dictionaries API.
This projects aims to facilitate the interaction with the Oxford Dictionaries API. A complete documentation for the API can be reached at: https://developer.oxforddictionaries.com/documentation.
The API currently supports all endpoints.
Api | Supported? |
---|---|
/api/v2/entries/{source_lang}/{word_id}: | ✅ |
/api/v2/lemmas/{source_lang}/{word_id}: | ✅ |
/api/v2/translations/{source_lang_translate}/{target_lang_translate}/{word_id}: | ✅ |
/api/v2/thesaurus/{lang}/{word_id}: | ✅ |
/api/v2/sentences/{source_lang}/{word_id}: | ✅ |
/api/v2/words/{source_lang}: | ✅ |
/api/v2/inflections/{source_lang}/{word_id}: | ✅ |
Search | |
/api/v2/search/translations/{source_lang_search}/{target_lang_search}: | ✅ |
/api/v2/search/{source_lang}: | ✅ |
/api/v2/search/thesaurus/{source_lang} | ✅ |
Utility | |
/api/v2/domains/{source_lang}: | ✅ |
/api/v2/domains/{source_lang_domains}/{target_lang_domains}: | ✅ |
/api/v2/fields: | ✅ |
/api/v2/fields/{endpoint}: | ✅ |
/api/v2/filters: | ✅ |
/api/v2/filters/{endpoint}: | ✅ |
/api/v2/grammaticalFeatures/{source_lang}: | ✅ |
/api/v2/grammaticalFeatures/{source_lang_grammatical}/{target_lang_grammatical}: | ✅ |
/api/v2/languages: | ✅ |
/api/v2/lexicalCategories/{source_lang}: | ✅ |
/api/v2/lexicalCategories/{source_lang_lexical}/{target_lang_lexical}: | ✅ |
/api/v2/registers/{source_lang}: | ✅ |
/api/v2/registers/{source_lang_registers}/{target_lang_registers}: | ✅ |
All needed to start using the project is to add the dependency
Maven
<dependency>
<groupId>com.github.sparkmuse</groupId>
<artifactId>kotlin-oxford-dictionaries</artifactId>
<version>1.0.8</version>
</dependency>
Gradle Kotlin DSL
implementation("com.github.sparkmuse:kotlin-oxford-dictionaries:1.0.8")
Gradle
implementation 'com.github.sparkmuse:kotlin-oxford-dictionaries:1.0.8'
Oxford Dictionaries comes with three price tiers: Prototype, Developer and Research. A key can be obtained by following the link https://developer.oxforddictionaries.com/?tag=#plans.
Use the AppId and AppKey when creating the client.
Use the OxfordClient class to interact with the API.
@Test
fun `retrieve entries for the word 'ace'`() {
val appId = System.getenv("APP_ID")
val appKey = System.getenv("APP_KEY")
val baseUrl = "https://od-api.oxforddictionaries.com/api/v2"
val oxfordClient = OxfordClient(appId, appKey, baseUrl)
val entries = oxfordClient.entries("ace")
assertNotNull(entries)
}
@Test
@DisplayName("retrieve entries for the word 'ace'")
void entries() {
String appId = System.getenv("APP_ID");
String appKey = System.getenv("APP_KEY");
String baseUrl = "https://od-api.oxforddictionaries.com/api/v2";
OxfordClient oxfordClient = new OxfordClient(appId, appKey, baseUrl);
RetrieveEntry entries = oxfordClient.entries("ace");
assertNotNull(entries);
}
@Test
fun `gets entries for the word 'ace' with complex query`() {
val appId = System.getenv("APP_ID")
val appKey = System.getenv("APP_KEY")
val baseUrl = "https://od-api.oxforddictionaries.com/api/v2"
val oxfordClient = OxfordClient(appId, appKey, baseUrl)
val query = EntryQuery(
word = "ace",
sourceLanguage = LanguageMonolingual.English_us,
fields = listOf(DataField.definitions),
lexicalCategory = listOf("noun"),
strictMatch = true
)
val entries = oxfordClient.entries(query)
assertNotNull(entries)
}
@Test
@DisplayName("gets entries for the word 'ace' with complex query")
void complexQueryEntries() {
String appId = System.getenv("APP_ID");
String appKey = System.getenv("APP_KEY");
String baseUrl = "https://od-api.oxforddictionaries.com/api/v2";
OxfordClient oxfordClient = new OxfordClient(appId, appKey, baseUrl);
EntryQuery query = new EntryQuery(
"ace",
LanguageMonolingual.English_us,
List.of(DataField.definitions),
List.of(),
List.of("noun"),
List.of(),
List.of(),
true);
RetrieveEntry entries = oxfordClient.entries(query);
assertNotNull(entries);
}
@Test
fun `gets grammatical features for 'en-us' language`() {
val appId = System.getenv("APP_ID")
val appKey = System.getenv("APP_KEY")
val baseUrl = "https://od-api.oxforddictionaries.com/api/v2"
val oxfordClient = OxfordClient(appId, appKey, baseUrl)
val query = GrammaticalFeatureMonolingualQuery(
sourceLanguage = LanguageMonolingual.English_us
)
val grammaticalFeature = oxfordClient.grammaticalFeatures(query)
assertNotNull(grammaticalFeature)
}
@Test
@DisplayName("gets grammatical features for 'en-us' language")
void grammaticalFeatures() {
String appId = System.getenv("APP_ID");
String appKey = System.getenv("APP_KEY");
String baseUrl = "https://od-api.oxforddictionaries.com/api/v2";
OxfordClient oxfordClient = new OxfordClient(appId, appKey, baseUrl);
GrammaticalFeatureMonolingualQuery query =
new GrammaticalFeatureMonolingualQuery(LanguageMonolingual.English_us);
RetrieveGrammaticalFeature grammaticalFeature = oxfordClient.grammaticalFeatures(query);
assertNotNull(grammaticalFeature);
}
FAQs
Kotlin client for the Oxford Dictionaries API.
We found that com.github.sparkmuse:kotlin-oxford-dictionaries demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.