About This filter changes a given text to Title Caps, and attempts to be clever about SMALL words like a/an/the in the input. The list of SMALL words which are not capped comes from the New York Times Manual of Style, plus some others like 'vs' and 'v'.
Project description
This filter changes a given text to Title Caps, and attempts to be clever about SMALL words like a/an/the in the input. The list of "SMALL words" which are not capped comes from the New York Times Manual of Style, plus some others like 'vs' and 'v'.
The filter employs some heuristics to guess abbreviations that don't need conversion.
Example ... 'this is a text' is converted to 'This Is The Text'.
More examples and expected behavior for corner cases are available in the package test suite.
Issues, updates, pull requests, etc should be directed to github.
Installation
The easiest method is to simply use pip:
(sudo) pip install headline_style
Usage
headline_style provides only one function, simply:
>>> from headLineStyle import headLineStyle
>>> headLineStyle('a thing')
'A Thing'
A callback function may also be supplied, which will be called for every word:
>>> def abbreviations(word, **kwargs):
... if word.upper() in ('TCP', 'UDP'):
... return word.upper()
...
>>> headLineStyle.headLineStyle('a simple tcp and udp wrapper', callback=abbreviations)
'A Simple TCP and UDP Wrapper'
The callback function is supplied with an all_caps
keyword argument, indicating
whether the entire line of text was entirely capitalized. Returning None
from
the callback function will allow headLineStyle to process the word as normal.
Command Line Usage
headLineStyle also provides a command line utility headLineStyle
:
>>> $ headLineStyle make me a title
... Make Me a Title
... $ echo "Can pipe and/or whatever else" | headLineStyle
... Can Pipe and/or Whatever Else
... # Or read/write files:
... $ headLineStyle -f infile -o outfile
In addition, commonly used acronyms can be kept in a local file
at ~/.headLineStyle.txt
. This file contains one acronym per line.
The acronym will be maintained in the title as it is provided.
Once there is e.g. one line saying TCP
, then it will be automatically
used when used from the command line.
>>> $ headLineStyle I LOVE TCP
>>> I Love TCP
Limitations
This is a best-effort library that uses regexes to try to do intelligent things, but will have limitations. For example, it does not have the contextual awareness to distinguish acronyms from words: us (we) versus US (United States).
The regexes and titlecasing rules were written for American English. While there is basic support for Unicode characters, such that something like "El Niño" will work, it is likely that accents or non-English phrases will not be handled correctly.
If anyone has concrete solutions to improve these or other shortcomings of the library, pull requests are very welcome!
License
Copyright [2022] [Vinod Baste]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
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
Built Distribution
File details
Details for the file headline_style-1.5.7.tar.gz
.
File metadata
- Download URL: headline_style-1.5.7.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5dd292315204ac7570503455f2cae0df93f12916a7551fbfe8a567b95e3a5ab |
|
MD5 | 399ebc56d31c200a1e90e778004e0507 |
|
BLAKE2b-256 | 3c5c2576c3b4f7836e2946d3854c3a5870320be5caee5942e01fb3c9b5836fab |
File details
Details for the file headline_style-1.5.7-py3-none-any.whl
.
File metadata
- Download URL: headline_style-1.5.7-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b956323b1c6cb6e294988c1aaeb468861a4a9e5075d71f07e3fef567143fca29 |
|
MD5 | 809d46553c0afeed37426675fb8c905a |
|
BLAKE2b-256 | a05dbe160839d4910039880e4e025c3dd57f62c8b2375b38e85dbaf9e8699e9e |