Skip to main content

Proper Acronyms With Synonyms, creates acronyms from a list of keywords

Project description

Overview

The PAWS (Proper Acronyms With Synonyms) is a python algorithm to generate English acronyms from a set of keywords. It is inspired by ACRONYM (Acronym CReatiON for You and Me, https://github.com/bacook17/acronym) but unlike ACRONYM this algorithm creates proper acronyms using the first N letters from keywords in all possible combinations. Furthermore, it can replace any keyword with its synonyms (using nltk) to provide more alternatives.

The code is highly customizable, it is possible to set which keywords can be replaced by synonyms as well as establishing dependencies between words so that similar or contradictory keywords are not used in the same acronym. Also, it is possible to force the use of important keywords in the resulting acronyms.

Install

Can be installed with pip:

$ pip install paws_acronym

or by downloading the repository and then running

$ make install

Usage

PAWS is designed to be called in the format

$paws_acronym <keywords> ... [options]

Options:
-h --help Show this screen. --forced_words= List of words (separated by commas) that MUST be part of the acronym (these words should be already included with keywords). --min_acronymlength= Minimum length of the acronym [default: 3] --max_letters_to_use= Sets the maximum number of letters that can be used from the beginning of keywords [default: 5] --use_synonyms=<0,1,1...> Whether to add the synonyms of the given keywords to the list (any >0 number means True, all zeros by default) --use_synonyms_for_all If turned on without all keywords can have synonyms. Note that this can drastically increase the number of results --strict= Sets how strictly should words be related to English [default: None] --independence=<i1,i2...> Defines dependences between keywords, if several words have the same id, only one can be used in an acronym (i.e. to handle synonyms). If undefined all keywords are assumed to be independent.

Examples

Let's try to name an algorithm that generates acronyms using synonyms.

$ paws_acronym acronym generator synonyms
Using keywords:  acronym generator synonyms
Number of words to process 460
Words processed, 7 acronyms found, filtering for extra criteria...
        AGE : Acronym GEnerator
        AGEN : Acronym GENerator
        AGES : Acronym GEnerator Synonyms
        GAS : Generator Acronym Synonyms
        GENERA : GENERator Acronym
        SAC : Synonyms ACronym
        SAGE : Synonyms Acronym GEnerator

These are quite limited in scope, we could get a lot more options if we added some optional adjectives and prepositions. Also, we could replace 'generator' with 'algorithm' or 'code'. To avoid repetition of similar words we can define them to be dependent on each other, so we get maximum one adjective, one preposition and one of 'code'/'generator'/'algorithm'. Also, it is a good idea to enable the use of synonyms. Note that allowing synonyms for words like 'good' will lead to a lot of possible acronyms so let's filter our results to the ones that include the key words of 'acronym' and 'synonyms'.

$ paws_acronym acronym generator code algorithm synonyms with of from good proper --independence=0,1,1,1,2,3,3,3,4,4 --use_synonyms=0,0,0,0,0,1,1,1,1,1 --forced_words=acronym,synonyms
Using keywords:  acronym adept algorithm beneficial code commodity dear dependable effective estimable expert from full generator good goodness honest honorable just near of practiced proficient proper respectable right ripe safe salutary secure serious skilful skillful sound soundly synonyms thoroughly undecomposed unspoiled unspoilt upright well with
Keyword dependencies:  [0. 4. 1. 4. 1. 4. 4. 4. 4. 4. 4. 3. 4. 1. 4. 4. 4. 4. 4. 4. 3. 4. 4. 4.
 4. 4. 4. 4. 4. 4. 4. 4. 4. 4. 4. 2. 4. 4. 4. 4. 4. 4. 3.]
Number of words to process 29492
Words processed, 1718 acronyms found, filtering for extra criteria...
        ACCESS : ACronym Code EStimable Synonyms
        ...

This will put out over a hundred possible acronyms. At this point it is up to the user to peruse them and identify the ones that could work with little or no modifications, like:

ADAGES : ADept Acronym GEnerator using Synonyms
AGENTS : Acronym GENeration Through Synonyms
EASY : Expert Acronyms from SYnonyms
GAS : Generator of Acronyms from Synonyms
GREASY : Generator of REspectable Acronyms from SYnonyms
HAGS : Honest Acronym Generation from Synonyms
PAGES : Proper Acronym GEneration from Synonyms
PAWS : Proper Acronym With Synonyms
RAGES : Respectable Acronym GEneration with Synonyms
SEAS : SErious Acronyms from Synonyms

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

paws_acronym-0.2.3.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

paws_acronym-0.2.3-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page