mirror of
https://github.com/weewx/weewx.git
synced 2026-04-21 01:57:00 -04:00
31 lines
709 B
Python
Executable File
31 lines
709 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright (c) 2009 Tom Keffer <tkeffer@gmail.com>
|
|
#
|
|
# See the file LICENSE.txt for your full rights.
|
|
#
|
|
# $Revision$
|
|
# $Author$
|
|
# $Date$
|
|
#
|
|
"""weewxd.py
|
|
|
|
Entry point to the weewx weather system.
|
|
|
|
If you wish to use a different engine than the default,
|
|
then subclass the default engine "StdEngine" and specify that class in
|
|
the call to the main entry point as parameter 'EngineClass'.
|
|
|
|
See the document "customizing.htm" for details.
|
|
"""
|
|
|
|
import weewx.wxengine
|
|
|
|
# Enter the main loop. This call will use the default
|
|
# engine, StdEngine, but this can be overridden with
|
|
# keyword EngineClass. E.g.,
|
|
#
|
|
# weewx.wxengine.main(EngineClass = MyEngine)
|
|
#
|
|
weewx.wxengine.main()
|