<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jordon Mears &#187; Python</title>
	<atom:link href="http://www.finefrog.com/category/programming-languages/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.finefrog.com</link>
	<description>while(true) { write(learn(live())); }</description>
	<lastBuildDate>Thu, 22 Jul 2010 14:31:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Safely Backing Up a Zope Data.fs While the Server is Running</title>
		<link>http://www.finefrog.com/2009/01/06/safely-backing-up-a-zope-datafs-while-the-server-is-running/</link>
		<comments>http://www.finefrog.com/2009/01/06/safely-backing-up-a-zope-datafs-while-the-server-is-running/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 00:40:40 +0000</pubDate>
		<dc:creator>jordoncm</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.finefrog.com/?p=288</guid>
		<description><![CDATA[I actually don't work with Zope as much as I used to but I was going through some old notes and found this gem to backup a Zope instance's Data.fs file while the server is still running. Between the Data.fs file and the Products and Extensions folders you fundamentally have a full backup of your [...]]]></description>
		<wfw:commentRss>http://www.finefrog.com/2009/01/06/safely-backing-up-a-zope-datafs-while-the-server-is-running/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Communicating over ssh in Python</title>
		<link>http://www.finefrog.com/2008/11/04/communicating-over-ssh-in-python/</link>
		<comments>http://www.finefrog.com/2008/11/04/communicating-over-ssh-in-python/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:31:08 +0000</pubDate>
		<dc:creator>jordoncm</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.finefrog.com/?p=255</guid>
		<description><![CDATA[I am working on a project in Python and I want to be able to save files to other servers across a network. I did a little research and it seems like paramiko is the way to go.
This link has a good code sample of paramiko in action.
http://stackoverflow.com/questions/68335/how-do-i-copy-a-file-to-a-remote-server-in-python-using-scp-or-ssh
]]></description>
		<wfw:commentRss>http://www.finefrog.com/2008/11/04/communicating-over-ssh-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending Email with Attachments in Python</title>
		<link>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/</link>
		<comments>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/#comments</comments>
		<pubDate>Wed, 07 May 2008 02:11:11 +0000</pubDate>
		<dc:creator>jordoncm</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.finefrog.com/?p=125</guid>
		<description><![CDATA[Here is a function to make sending email a little easier in Python.

import smtplib
import os
from email.MIMEMultipart import MIMEMultipart
from email.MIMEBase import MIMEBase
from email.MIMEText import MIMEText
from email.Utils import COMMASPACE, formatdate
from email import Encoders

def send_mail(to, subject, text, from="", files=[], cc=[], bcc=[], server="localhost"):
    assert type(to)==list
    assert type(files)==list
    assert type(cc)==list
  [...]]]></description>
		<wfw:commentRss>http://www.finefrog.com/2008/05/06/sending-email-with-attachments-in-python/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
