Python implementation ensures that only one script instance can be run, and python implementation script instance

Source: Internet
Author: User

Python implementation ensures that only one script instance can be run, and python implementation script instance

Ensure that only one script instance can be run by listening to a specific port when the program is running. If the port fails, an instance is running.

Implemented With a decorator to facilitate reuse
Copy codeThe Code is as follows:
Import functools
Def just_one_instance (func ):

'''

Decorator

Exit if an instance is running.
Copy codeThe Code is as follows:
: Return:

'''
@ Functools. wraps (func)
Def f (* args, ** kwargs ):
Import socket
Try:
# Global attribute. Otherwise, the variable will be destroyed after the method exits.
Global s
S = socket. socket ()
Host = socket. gethostname ()
S. bind (host, 60123 ))
Except t:
Print ('already has an instance ')
Return None
Return func (* args, ** kwargs)
Return f
[Code]
Use the following in the main function of the script:
[Code]
@ Just_one_instance
Main ():
Do something.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.