| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g. I signed it!) and we'll verify. Thanks.
|
Sorry, something went wrong.
|
I signed it! |
Sorry, something went wrong.
|
CLAs look good, thanks! |
Sorry, something went wrong.
There was a problem hiding this comment.
This looks good to me. (Thanks for all your work, @dvaldivia!)
Sorry, something went wrong.
|
@lukesneeringer you are welcome :) What's next? Do I need to do anything else? |
Sorry, something went wrong.
| class PartOfSpeech(object): | ||
| """Part of speech of a :class:`Token`.""" | ||
| """A Google Cloud Natural Language API Part of speech object. | ||
| Rich data about the Part of Speech of a token returned by the API |
|
|
||
| from copy import copy | ||
| import unittest | ||
| from copy import copy |
|
@dhermes did as you requested, let me know if I should change anything else. |
Sorry, something went wrong.
Add support for all the data returned by the API for PartOfSpeech inside Token.
Add support for all the data returned by the API for PartOfSpeech inside Token.
Add support for all the data returned by the API for PartOfSpeech inside Token.
Add support for all the data returned by the API for PartOfSpeech inside Token.
| Back | FazBrowse Home | New Git URL |
Hi,
This PR add the missing data returned by the API to the Token, before only the Tag was being returned, I added all the data to the existing PartOfSpeech object and replaced it's hydratation on the Token as well