hikyuu2/hikyuu/trade_manage/broker_mail.py

104 lines
3.8 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python
# -*- coding: utf8 -*-
# cp936
#
# 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.
#===============================================================================
# History
# 1. 20170704, Added by fasiondog
#===============================================================================
import smtplib
from email.mime.text import MIMEText
from email.header import Header
class MailOrderBroker:
"""
"""
def __init__(self, host, sender, pwd, receivers):
"""
/ 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):
"""发送邮件
: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):
"""执行买入操作,向指定的邮箱发送邮件,格式如下::
Hkyuu提醒
:param str code:
:param float price:
:param int num:
"""
action = "买入:{}{}{} ".format(code, price, num)
title = "【Hkyuu提醒】买入 {}".format(code)
self._sendmail(title, action)
def sell(self, code, price, num):
"""执行卖出操作,向指定的邮箱发送邮件,格式如下::
Hkyuu提醒
:param str code:
:param float price:
:param int num:
"""
title = "【Hkyuu提醒】卖出 {}".format(code)
action = "卖出:{},价格:{},数量:{} ".format(code, price, num)
self._sendmail(title, action)