Форум сайта python.su
import urllib
import smtplib
def createhtmlmail (html, subject):
"""Create a mime-message that will render HTML in popular
MUAs, text in better ones"""
import MimeWriter
import mimetools
import cStringIO
out = cStringIO.StringIO() # output buffer for our message
htmlin = cStringIO.StringIO(html)
writer = MimeWriter.MimeWriter(out)
#
# set up some basic headers... we put subject here
# because smtplib.sendmail expects it to be in the
# message body
#
writer.addheader("Subject", subject)
writer.addheader("MIME-Version", "1.0")
#
# start the multipart section of the message
# multipart/alternative seems to work better
# on some MUAs than multipart/mixed
#
writer.startmultipartbody("alternative")
writer.flushheaders()
#
# start the html subpart of the message
#
subpart = writer.nextpart()
subpart.addheader("Content-Transfer-Encoding", "quoted-printable")
#
# returns us a file-ish object we can write to
#
pout = subpart.startbody("text/html", [("charset", 'cp-1251')])
mimetools.encode(htmlin, pout, 'quoted-printable')
htmlin.close()
#
# Now that we're done, close our writer and
# return the message body
#
writer.lastpart()
msg = out.getvalue()
out.close()
return msg
# Формирование файла weather.html
citycode = '27612'
_url = "http://www.gismeteo.ru/towns/" + citycode + ".htm"
skin = 'default'
u = urllib.urlopen(_url)
s = u.read()
p1 = s.find('var frc=\'') + 9
p2 = s.find('\'',p1)
s = s[p1:p2]
s = s.replace('align=center ', '')
s = s.replace('<span class=sml>', '')
s = s.replace('</span>', '')
s = s.replace('nowrap', 'nowrap="true"')
s = s.replace('<table', '<table class="tbl"')
s = s.replace('bgcolor=F0F0F0', 'class="cl1"')
s = s.replace('bgcolor=F0FFF0', 'class="cl2"')
s = s.replace('bgcolor=F0F0FF', 'class="cl3"')
s = s.replace('bgcolor=FFF0F0', 'class="cl4"')
s = s.replace('bgcolor=FFFFF0', 'class="cl5"')
s = s.replace('bgcolor=FFFFFF', 'class="cl6"')
b = 1
while b:
p1 = s.find('<img')
if p1 == -1:
b = 0
else:
p2 = s.find('>',p1)
if p2 == -1:
b = 0
else:
_oldstr = s[p1:p2+1]
_newstr = ''
pp1 = _oldstr.find('title="')
if pp1 > -1:
pp2 = _oldstr.find('"',pp1+7)
if pp2 > -1:
_newstr = _oldstr[pp1+7:pp2]
s = s.replace(_oldstr, _newstr)
f = open('weather.html', 'w')
f.write('<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">\n</head>\n<body>\n')
f.write(s+'\n')
f.write('</body>\n</html>')
f.close()
#Отправка почты
html = open("weather.html").read()
subject = "Погода сегодня!"
message = createhtmlmail(html, subject)
server = smtplib.SMTP("111.111.111.111")
server.sendmail('my@mail.ru', ['you@mail.ru'], message)
server.quit()
exit = QtGui.QAction(QtGui.QIcon('icons/exit.png'), 'Exit', self)
exit.setShortcut('Ctrl+Q')
exit.setStatusTip('Exit application')
self.connect(exit, QtCore.SIGNAL('triggered()'), QtCore.SLOT('close()'))
QtGui.QStatusBar()
menubar = QtGui.QMenuBar()
file = menubar.addMenu('&File')
file.addAction(exit)
import sys
from PyQt4 import QtWebKit, QtCore, QtGui, QtNetwork, Qt
class MainWindow(QtGui.QMainWindow):
def __init__(self):
super(MainWindow,self).__init__()
self.setFixedWidth(800)
self.setFixedHeight(652)
self.browser = QtWebKit.QWebView(self)
self.browser.setFixedWidth(800)
self.browser.setFixedHeight(652)
self.connect(self.browser.page().networkAccessManager(), QtCore.SIGNAL("finished(QNetworkReply*)"), self.finished)
self.browser.load(QtCore.QUrl("http://ya.ru"))
def finished(self, networkReply):
## Выводим URL
print networkReply.url().toString()
## Вывод содержимого запроса.
print networkReply.readAll()
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
main = MainWindow()
main.show()
sys.exit(app.exec_())
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.mainMenu = gtk.MenuBar()
menuItem1 = gtk.MenuItem("_File")
menuItem2 = gtk.MenuItem("_Edit")
self.VBox1 = gtk.VBox(False, 0)
self.window.set_default_size(800,600)
self.window.add(self.VBox1)
self.VBox1.pack_start(self.mainMenu, False, False, 0)
list = [menuItem1, menuItem2]
for i in list:
self.mainMenu.append(menuItem1)
self.VBox1.show()
self.mainMenu.show()
menuItem1.show()
menuItem2.show()
self.window.show()
class myBar (gtk.MenuBar):
def __init__(self):
gtk.MenuBar.__init__(self)
canvas.translate()
# views.py
from ninjapaginator.util import NinjaPaginator
from annoying.decorators import render_to
from blog.models import Post
@render_to('blog_posts.html')
@NinjaPaginator(style='digg', per_page=15)
def list_posts(request):
posts = Post.objects.all()
return {'object_list': posts}
{% for post in object_list %}
{{ post.title }}
{% endfor %}
<p>
{% include "paginator.html" %}
</p>
# that's it, your page now have "digg.com" style paginator.
.__init__(*args, **kwargs)
__init__() got an unexpected keyword argument 'f'
Request Method: POST
Request URL: http://127.0.0.1:8000/accounts/register/
Exception Type: TypeError
Exception Value:
__init__() got an unexpected keyword argument 'f'
clock = EggClockFace()
clock.connect("expose_event", clock.expose)
clock.connect("button_press_event", clock.button_press)
clock.connect("button_release_event", clock.button_release)
clock.connect("time_changed", time_changed_cb)
clock.connect("motion_notify_event", clock.motion_notify)
clock.set_size_request (100, 100)
clock.show ()
main.wTree.get_widget ("table2").attach (clock, 11, 12, 1, 4)