A simple Python n-gram calculator
Project 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
#
#
# 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
#
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyngram-1.0.1.tar.gz
(1.9 kB
view details)
File details
Details for the file pyngram-1.0.1.tar.gz
.
File metadata
- Download URL: pyngram-1.0.1.tar.gz
- Upload date:
- Size: 1.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
176ed79e96a251305a8d8572f0a2e2ab7bf48d5055ba46150f989e42dbd36994
|
|
MD5 |
2db3dbcf197041fbd2a8ba3799e61a08
|
|
BLAKE2b-256 |
53669bc5236750dac360c6ed2d0359a2cc4695db9114c5f68911a3ba28eb6f13
|