Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77778

Re: Example of python service running under systemd?

Subject Re: Example of python service running under systemd?
From Travis Griggs <travisgriggs@gmail.com>
Date 2014-09-11 14:06 -0700
References <FE4C3550-8958-4F72-8AFE-62AA7248D6AF@gmail.com> <CAMw+j7+LQL_+77ejCFVSqWap7Rk9gS_Wu5d3y0gT1UpB8hiZAA@mail.gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.13942.1410469620.18130.python-list@python.org> (permalink)

Show all headers | View raw


On Sep 11, 2014, at 11:18 AM, Chris “Kwpolska” Warrick <kwpolska@gmail.com> wrote:

> Depends what you want. 

Mine is not a web service. My main.py looks like this:

#!/usr/bin/env python3

import cycle
import pushTelemetry
from threading import Thread

def main():
    Thread(target=pushTelemetry.udpLoop).start()
    Thread(target=cycle.cycleLoop).start()

if __name__ == '__main__':
    main()

It basically creates two threads, one which does some local processing and control, the other which periodically does reporting via udp packets. I use the dual threads because they both work with a shared serial port at times, so I have to synchronize access through that.

What I want is to have this startup, after my board has it’s networking layer up and running (and hopefully a valid ip address by then), and to just keep running forever

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Example of python service running under systemd? Travis Griggs <travisgriggs@gmail.com> - 2014-09-11 14:06 -0700

csiph-web