hikyuu2/hikyuu/trade_manage/broker_mail.py

104 lines
3.8 KiB
C++
Raw Normal View History

#!/usr/bin/python
# -*- coding: utf8 -*-
# cp936
2017-09-26 07:07:56 +08:00
#
# The MIT License (MIT)
#
# Copyright (c) 2010-2017 fasiondog
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#===============================================================================
2017-09-26 07:07:56 +08:00
# History
# 1. 20170704, Added by fasiondog
#===============================================================================
import smtplib
from email.mime.text import MIMEText
from email.header import Header
class MailOrderBroker:
2017-10-03 00:02:38 +08:00
"""
"""
def __init__(self, host, sender, pwd, receivers):
"""
2017-09-30 02:15:31 +08:00
/ Email
:param str host: smtp服务器地址
:param int port: smtp服务器端口
:param str sender:
:param str pwd:
:param list receivers:
"""
self._host = host
self._pwd = pwd
self._sender = sender
self._receivers = receivers
def _sendmail(self, title, msg):
2017-10-03 00:02:38 +08:00
"""发送邮件
:param str title:
:param str msg:
"""
message = MIMEText(msg, 'plain', 'utf-8')
message['From'] = self._sender
to_mail = ""
for r in self._receivers:
to_mail = to_mail + "," + r
message['To'] = to_mail
message['Subject'] = Header(title, 'utf-8')
smtpObj = smtplib.SMTP()
smtpObj.connect(self._host, 25)
smtpObj.login(self._sender, self._pwd)
smtpObj.sendmail(self._sender, self._receivers, message.as_string())
def buy(self, code, price, num):
2017-10-03 00:02:38 +08:00
"""执行买入操作,向指定的邮箱发送邮件,格式如下::
Hkyuu提醒
:param str code:
:param float price:
:param int num:
"""
action = "买入:{},价格:{},数量:{} ".format(code, price, num)
title = "【Hkyuu提醒】买入 {}".format(code)
self._sendmail(title, action)
2017-10-03 00:02:38 +08:00
def sell(self, code, price, num):
2017-10-03 00:02:38 +08:00
"""执行卖出操作,向指定的邮箱发送邮件,格式如下::
Hkyuu提醒
:param str code:
:param float price:
:param int num:
"""
title = "【Hkyuu提醒】卖出 {}".format(code)
action = "卖出:{},价格:{},数量:{} ".format(code, price, num)
self._sendmail(title, action)