├── .gitignore ├── README.md ├── setup.py ├── tests ├── AccountApiTest.py ├── BaseApiTest.py ├── WordApiTest.py ├── WordListApiTest.py └── WordsApiTest.py └── wordnik ├── AccountApi.py ├── WordApi.py ├── WordListApi.py ├── WordListsApi.py ├── WordsApi.py ├── __init__.py ├── models ├── ApiTokenStatus.py ├── AudioFile.py ├── AuthenticationToken.py ├── Bigram.py ├── Citation.py ├── ContentProvider.py ├── Definition.py ├── DefinitionSearchResults.py ├── Example.py ├── ExampleSearchResults.py ├── ExampleUsage.py ├── Facet.py ├── FacetValue.py ├── Frequency.py ├── FrequencySummary.py ├── Label.py ├── Note.py ├── Related.py ├── ScoredWord.py ├── ScrabbleScoreResult.py ├── Sentence.py ├── SimpleDefinition.py ├── SimpleExample.py ├── StringValue.py ├── Syllable.py ├── TextPron.py ├── User.py ├── WordList.py ├── WordListWord.py ├── WordObject.py ├── WordOfTheDay.py ├── WordSearchResult.py ├── WordSearchResults.py └── __init__.py └── swagger.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/AccountApiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/tests/AccountApiTest.py -------------------------------------------------------------------------------- /tests/BaseApiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/tests/BaseApiTest.py -------------------------------------------------------------------------------- /tests/WordApiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/tests/WordApiTest.py -------------------------------------------------------------------------------- /tests/WordListApiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/tests/WordListApiTest.py -------------------------------------------------------------------------------- /tests/WordsApiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/tests/WordsApiTest.py -------------------------------------------------------------------------------- /wordnik/AccountApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/AccountApi.py -------------------------------------------------------------------------------- /wordnik/WordApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/WordApi.py -------------------------------------------------------------------------------- /wordnik/WordListApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/WordListApi.py -------------------------------------------------------------------------------- /wordnik/WordListsApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/WordListsApi.py -------------------------------------------------------------------------------- /wordnik/WordsApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/WordsApi.py -------------------------------------------------------------------------------- /wordnik/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/__init__.py -------------------------------------------------------------------------------- /wordnik/models/ApiTokenStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/ApiTokenStatus.py -------------------------------------------------------------------------------- /wordnik/models/AudioFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/AudioFile.py -------------------------------------------------------------------------------- /wordnik/models/AuthenticationToken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/AuthenticationToken.py -------------------------------------------------------------------------------- /wordnik/models/Bigram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Bigram.py -------------------------------------------------------------------------------- /wordnik/models/Citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Citation.py -------------------------------------------------------------------------------- /wordnik/models/ContentProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/ContentProvider.py -------------------------------------------------------------------------------- /wordnik/models/Definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Definition.py -------------------------------------------------------------------------------- /wordnik/models/DefinitionSearchResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/DefinitionSearchResults.py -------------------------------------------------------------------------------- /wordnik/models/Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Example.py -------------------------------------------------------------------------------- /wordnik/models/ExampleSearchResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/ExampleSearchResults.py -------------------------------------------------------------------------------- /wordnik/models/ExampleUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/ExampleUsage.py -------------------------------------------------------------------------------- /wordnik/models/Facet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Facet.py -------------------------------------------------------------------------------- /wordnik/models/FacetValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/FacetValue.py -------------------------------------------------------------------------------- /wordnik/models/Frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Frequency.py -------------------------------------------------------------------------------- /wordnik/models/FrequencySummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/FrequencySummary.py -------------------------------------------------------------------------------- /wordnik/models/Label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Label.py -------------------------------------------------------------------------------- /wordnik/models/Note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Note.py -------------------------------------------------------------------------------- /wordnik/models/Related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Related.py -------------------------------------------------------------------------------- /wordnik/models/ScoredWord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/ScoredWord.py -------------------------------------------------------------------------------- /wordnik/models/ScrabbleScoreResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/ScrabbleScoreResult.py -------------------------------------------------------------------------------- /wordnik/models/Sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Sentence.py -------------------------------------------------------------------------------- /wordnik/models/SimpleDefinition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/SimpleDefinition.py -------------------------------------------------------------------------------- /wordnik/models/SimpleExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/SimpleExample.py -------------------------------------------------------------------------------- /wordnik/models/StringValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/StringValue.py -------------------------------------------------------------------------------- /wordnik/models/Syllable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/Syllable.py -------------------------------------------------------------------------------- /wordnik/models/TextPron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/TextPron.py -------------------------------------------------------------------------------- /wordnik/models/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/User.py -------------------------------------------------------------------------------- /wordnik/models/WordList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/WordList.py -------------------------------------------------------------------------------- /wordnik/models/WordListWord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/WordListWord.py -------------------------------------------------------------------------------- /wordnik/models/WordObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/WordObject.py -------------------------------------------------------------------------------- /wordnik/models/WordOfTheDay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/WordOfTheDay.py -------------------------------------------------------------------------------- /wordnik/models/WordSearchResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/WordSearchResult.py -------------------------------------------------------------------------------- /wordnik/models/WordSearchResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/WordSearchResults.py -------------------------------------------------------------------------------- /wordnik/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/models/__init__.py -------------------------------------------------------------------------------- /wordnik/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordnik/wordnik-python/HEAD/wordnik/swagger.py --------------------------------------------------------------------------------