পরিষেবার মতো চলমান এমন কিছু তৈরি করতে আপনি এই জিনিসটি ব্যবহার করতে পারেন:
আপনার প্রথমে যা করতে হবে তা সিমেন্ট ফ্রেমওয়ার্কটি ইনস্টল করা : সিমেন্ট ফ্রেমের কাজ হল একটি সিএলআই ফ্রেম কাজ যা আপনি এটিতে আপনার অ্যাপ্লিকেশন স্থাপন করতে পারেন।
অ্যাপ্লিকেশনটির কমান্ড লাইন ইন্টারফেস:
interface.py
from cement.core.foundation import CementApp
from cement.core.controller import CementBaseController, expose
from YourApp import yourApp
class Meta:
label = 'base'
description = "your application description"
arguments = [
(['-r' , '--run'],
dict(action='store_true', help='Run your application')),
(['-v', '--version'],
dict(action='version', version="Your app version")),
]
(['-s', '--stop'],
dict(action='store_true', help="Stop your application")),
]
@expose(hide=True)
def default(self):
if self.app.pargs.run:
#Start to running the your app from there !
YourApp.yourApp()
if self.app.pargs.stop:
#Stop your application
YourApp.yourApp.stop()
class App(CementApp):
class Meta:
label = 'Uptime'
base_controller = 'base'
handlers = [MyBaseController]
with App() as app:
app.run()
আপনার অ্যাপ.পি ক্লাস:
import threading
class yourApp:
def __init__:
self.loger = log_exception.exception_loger()
thread = threading.Thread(target=self.start, args=())
thread.daemon = True
thread.start()
def start(self):
#Do every thing you want
pass
def stop(self):
#Do some things to stop your application
মনে রাখবেন আপনার অ্যাপটি ডেমন করার জন্য অবশ্যই একটি থ্রেডে চলবে
অ্যাপটি চালানোর জন্য কমান্ড লাইনে এটি করুন
পাইথন ইন্টারফেস.পি - হেল্প