We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can this be turned into a command-line utility. Something like this.
import json from pprint import pprint from sys import argv from difflib import SequenceMatcher def similar(a, b): return SequenceMatcher(None, a, b).ratio() if __name__ == '__main__': SEARCH = ' '.join(argv[1:]) DATA = None with open('tips.json') as data_file: DATA = json.load(data_file) MAX = max(DATA, key=lambda x: similar(SEARCH.lower(), x['title'].lower())) print(MAX)
Maybe if we get a better string similarity heuristic it would be better something like FuzzyWuzzy. Kindly share your thoughts on it.
The text was updated successfully, but these errors were encountered:
Feel free to do a PR.
Sorry, something went wrong.
For PowerShell use this is pretty easy to put together into a simple function. http://jdhitsolutions.com/blog/powershell/5121/friday-fun-find-a-git-tip-with-powershell/
No branches or pull requests
Can this be turned into a command-line utility. Something like this.
Maybe if we get a better string similarity heuristic it would be better something like FuzzyWuzzy. Kindly share your thoughts on it.
The text was updated successfully, but these errors were encountered: