Popular Python recipes tagged "embedded_image"http://code.activestate.com/recipes/langs/python/tags/embedded_image/2012-03-02T12:43:51-08:00ActiveState Code Recipeshandling embedded email images in python (Python)
2012-03-02T12:43:51-08:00Gregory Nicholashttp://code.activestate.com/recipes/users/4180332/http://code.activestate.com/recipes/578058-handling-embedded-email-images-in-python/
<p style="color: grey">
Python
recipe 578058
by <a href="/recipes/users/4180332/">Gregory Nicholas</a>
(<a href="/recipes/tags/appengine/">appengine</a>, <a href="/recipes/tags/email/">email</a>, <a href="/recipes/tags/embedded_image/">embedded_image</a>, <a href="/recipes/tags/python/">python</a>).
</p>
<p>this code finds all embedded images in the email and replaces them with an appropriate img tag.</p>
handling embedded email images in python (Python)
2011-10-26T15:31:45-07:00Simeon Shpizhttp://code.activestate.com/recipes/users/4178609/http://code.activestate.com/recipes/577923-handling-embedded-email-images-in-python/
<p style="color: grey">
Python
recipe 577923
by <a href="/recipes/users/4178609/">Simeon Shpiz</a>
(<a href="/recipes/tags/appengine/">appengine</a>, <a href="/recipes/tags/email/">email</a>, <a href="/recipes/tags/embedded_image/">embedded_image</a>, <a href="/recipes/tags/python/">python</a>).
Revision 2.
</p>
<p>this code finds all embedded images in the email and replaces them with an appropriate img tag.</p>
Viewing embedded pictures within docstrings (Python)
2008-10-15T01:27:26-07:00Andre Robergehttp://code.activestate.com/recipes/users/2467063/http://code.activestate.com/recipes/576538-viewing-embedded-pictures-within-docstrings/
<p style="color: grey">
Python
recipe 576538
by <a href="/recipes/users/2467063/">Andre Roberge</a>
(<a href="/recipes/tags/docstring/">docstring</a>, <a href="/recipes/tags/embedded_image/">embedded_image</a>, <a href="/recipes/tags/viewer/">viewer</a>).
</p>
<p>Python docstrings are textual information about objects. They can be displayed via help(obj). However, they can not contain images. This recipe allows the inclusion of images (encoded in base 64 in the Python file) inside docstrings in a transparent way. The images are indicated as "docpicture = file_name.ext" inside the docstring, and the encoded data is in variable "file_name" inside the same module.</p>