Metadata-Version: 1.0
Name: pyngram
Version: 1.0.1
Summary: A simple Python n-gram calculator
Home-page: http://jayliew.com
Author: Jay Liew
Author-email: twitter.com/jaysern
License: MIT
Description: # A simple Python n-gram calculator.
        #
        # Given an arbitrary string, and the value of n as the size of the 
        # n-gram (int), this module will show you the results, sorted from 
        # most to least frequently occuring n-gram.
        #
        # The 'sort by value' operation for the dict follows the 
        # PEP 265 recommendation.
        #
        # Installation: 
        #
        # user@host:~$ sudo pip install pyngram
        #
        # Quick start:
        #
        # >>> from pyngram import calc_ngram
        #
        # method expects inputstring as 1st arg, size of n-gram as 2nd arg
        #
        # >>> calc_ngram('bubble bobble, bubble bobble, bubble bobble', 3)
        #
        # or straight from your *nix shell prompt
        #
        # user@host:~$ ./pyngram.py
        # 
        # Enjoy!
        #
        # Jay Liew 
        # @jaysern
        #
        
Keywords: ngram,n-gram,bigram,digram,trigram,substitution,cipher,crackme,crypto,caesar,decodeme
Platform: UNKNOWN
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Utilities
