Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stylesuxx/anagram-checker
https://github.com/stylesuxx/anagram-checker
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/stylesuxx/anagram-checker
- Owner: stylesuxx
- Created: 2013-10-07T17:21:44.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-12T20:28:08.000Z (about 11 years ago)
- Last Synced: 2023-03-13T08:15:45.115Z (over 1 year ago)
- Language: Python
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### Anagram checker and generator
If only one string is passed, all possible anagrams of this string are generated.
If multiple strings are passed, all strings are checked if they are anagrams of each other.```
usage: anagram_checker.py [-h] BASE [STRING [STRING ...]]Generates anagrams if one string is provided, otherwise checks if all strings
are anagrams of each other. Identical strings are treated as anagrams as well.positional arguments:
BASE The string to generate anagrams or check other strings against.
STRING Strings to be checked.optional arguments:
-h, --help show this help message and exit
```