Metadata-Version: 2.1
Name: text-to-tweets
Version: 0.1.1
Summary: Split a chunk of text into 280-character blocksAttempting to split at the end of sentences etc.
Home-page: https://github.com/nottrobin/text-to-tweets
Author: Robin Winslow
Author-email: robin@robinwinslow.co.uk
License: UNKNOWN
Description: # Text to tweets
        
        This small package simply splits a large block of text into 280 character chunks.
        
        The code is lifted wholesale from https://github.com/NaruBeast/tweet-splitter.
        
        ## Install
        
        ``` bash
        pip3 install text-to-tweets
        ```
        
        ## Usage
        
        ``` python3
        from text_to_tweets import tweet_splitter
        
        tweets = tweet_splitter(
            article_text,
            counter=True  # Add counters to tweets - e.g. "(3/10)"
        )
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
