Skip to content

Latest commit

History

52 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Draftlog

📜 Fancy logs with expandable tools. Bring life to your terminal!

demo

License: MITBuild StatusPyPISay Thanks

A module useful for CLI's, logs and pretty much any cool multi-line python tool.

All inspiration goes to Ivan Seidel with node-draftlog.

Works with Python 2 and 3.

Install

$ pip install draftlog

Intro Example

Here's about the simplest program with draftlog that actually does something:

importdraftlogimporttimedraft=draftlog.inject()
print ("The line below me will be updated!")
update_me=draft.log("I will be updated!")
print ("The line above me will be updated!")
time.sleep(3)
update_me.update("I've been updated!")

Here's a more complicated program: a scrolling banner . If you want to see some more examples in this thread, check out the examples folder!

importdraftlogdraft=draftlog.inject()
classBanner:
def__init__(self, string):
self.string=stringself.counter=0defscroll(self):
ifself.counter>=50:
# This is what exits out of the loop in:# "draft.log().set_interval"raisedraftlog.Exceptionself.counter+=1self.string=self.string[1:] +self.string[0]
returnself.stringstring=" Wow! Banners! This is so cool! All with draftlog! "print ("*"*len(string))
banner=draft.log()
print ("*"*len(string))
banner.set_interval(Banner(string).scroll, 0.1)
draft.start()
# You can still print stuff after starting the draft as well:importtimetime.sleep(2)
print ("Wow, some more text!")

set_interval is a function that takes another function and the time to wait. It overwrites the draft.log() line with whatever the function returns. The function will stop being called once it raises draftlog.Exception. draft.start() will actually start all intervals that have been set.

How

draft.log() creates a DraftLog object that keeps track of what line it was created on. You can call update(text) on it to update the line that it's set on.

draft.log().set_interval(function, time) primes an interval in a background threading process called DaemonDrafter. When draft.start() is called, it generates interval timing based off of the time specified and then runs it in "frames."

Since I've made the program open-ended, you can create a lot (see the examples folder) of stuff.

Questions

If you still have questions or need some help, check out the wiki or email me at kepoorh@gmail.com, all feedback is appreciated!

About

📜 Fancy logs with expandable tools. Bring life to your terminal!

Topics

Resources

Stars

86 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages