Skip to main content

Сlean exit for Python scripts after Ctrl-C.

Project description

Сlean exit for Python scripts after Ctrl-C. Inspired by xlab’s Closer for Go (Golang). # Usage

from pycloser import defer, listen, close

# Push inform function to stack.
@defer
def inform():
    print('You close programm with Ctrl-C.')

# Push goodbuy function to stack.
@defer
def goodbuy():
    print('Goodbuy!')

# Listening SIGINT, SIGTERM and SIGHUP OS signals.
# When it sended, listen() pop deferred functions from stack
# and call its one after the other.
listen()

# Main programm loop
for x in range(1, 10):
    print("{0}: {1}".format(x, input(">> ")))

# Pop deferred functions from stack and call its, if signal was not sended.
close()

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycloser-0.2.tar.gz (1.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page