Skip to content

tddschn/hr-tddschn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hr-tddschn

Fork of hr.py, with python3 support.

The good old hr in python3.

Why fork?

Version 0.1 of the original hr.py (the current latest version of hr on PyPI) doesn't work with python3,

this project adds python3 support and properly configured entry point so that hr is added to your $PATH after installation.

Read more

Intro

Horizontal rule for your terminal - in python3!

Tired of not finding things in your terminal because there's a lot of logs and garbage? Tired of destroying the Enter key by creating a "void zone" in your terminal so that you can see the error that you're trying to debug?

Use the old <hr /> tag, but in your terminal.

Inspiration

The original version of the hr script was implement in bash (https://github.com/LuRsT/hr), and I thought, "why not have a python version?". So here we are!

Install

$ pip install hr-tddschn

Or, if you only want to use it as a CLI app:

$ pipx install hr-tddschn

Then run it with hr.

How to use it?

From the command-line:

$ hr
################################## # Till the end of your terminal window
$

$ hr '*'
********************************** # Till the end of your terminal window
$

You can also make "beautiful" ASCII patterns

$ hr - '#' -
----------------------------------
##################################
----------------------------------
$ hr '-#-' '-' '-#-'
-#--#--#--#--#--#--#--#--#--#--#--
----------------------------------
-#--#--#--#--#--#--#--#--#--#--#--

From another python script (it could happen, right?)

>>> from hr_tddschn import hr
>>> hr()
################################## # Till the end of your terminal window
>>> hr('*')
********************************** # Till the end of your terminal window
>>> hr('-', '#', '-')
----------------------------------
##################################
----------------------------------
>>> hr('-#-', '-', '-#-')
-#--#--#--#--#--#--#--#--#--#--#--
----------------------------------
-#--#--#--#--#--#--#--#--#--#--#--

Requirements

The only requirement is python2.7+ or python3 (tested in python 3.10)

About

Horizontal rule for your terminal - in python3!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 89.8%
  • Makefile 10.2%