Metadata-Version: 2.1
Name: slprint-pkg
Version: 1.0
Summary: Simple module to display a text with a time interval between each characters.
Home-page: https://github.com/RonaldoVasques/slowprint
Author: Ronaldo Augusto Vasques de Souza
Author-email: vasquessouza.75@gmail.com
License: MIT License

Copyright (c) 2020 Ronaldo Augusto Vasques de Souza

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Description: #Slowprint
        
        This is simple module that objective is displays a animated text on the terminal.
        
        The module has only one function called `slowprint ()` that imposes a fixed time interval between the display of each character.
        The display can be vertically or horizontally.  
        The text can also be displayed in the *yoyo* mode where after the last character is displayed the text is removed regressively by means of a fixed interval of time between the deletion of each character.
        
        ##Use:
        
              slowprint ("Hello World my friend.", delay = 0.05, yoyo = True, vertical = True)    
              slowprint ("Hello World my friend.", delay = 0.05, yoyo = True, vertical = False)   
              slowprint ("Hello World my friend.", delay = 0.05, yoyo = False, vertical = True)   
              slowprint ("Hello World my friend.", delay = 0.05, yoyo = False, vertical = False)   
        
        ##Parameters:
        `text`    
        The text to be displayed on the terminal.   
        `delay`  
        The time in seconds between the display of each character. Default is 0.2 seconds.  
        `yoyo`   
        If True after displaying the last character, it begins to remove character by character regressively. Default is False.  
        `vertical`  
        If True displays the text vertically, if False displays the text horizontally. Default is False.
        
        Copyright (c) 2020 Ronaldo Augusto Vasques de Souza
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Topic :: Terminals
Classifier: Topic :: System :: Shells
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Desktop Environment
Requires-Python: >=3.0
Description-Content-Type: text/markdown
