<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>python &#8211; TOMASZ &quot;CeDeROM&quot; CEDRO (SQ7MHZ)</title>
	<atom:link href="https://www.tomek.cedro.info/tag/python/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tomek.cedro.info</link>
	<description></description>
	<lastBuildDate>Wed, 14 Dec 2022 06:30:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">201759287</site>	<item>
		<title>Python float color list to WebRGB</title>
		<link>https://www.tomek.cedro.info/python-float-color-list-to-webrgb/</link>
		
		<dc:creator><![CDATA[CeDeROM]]></dc:creator>
		<pubDate>Wed, 14 Dec 2022 06:28:11 +0000</pubDate>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Kivy]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.tomek.cedro.info/?p=1940</guid>

					<description><![CDATA[You can easily convert&#160; float color list (i.e. used in Kivy [1]) to Web RGB in Python [2] with oneliner: c = [0.5019607843137255, 0.796078431372549, 0.7686274509803922, 1.0] rgb = '#%02X%02X%02X%02X' % tuple(int(255*i) for i in c) '#80CBC4FF' [1] https://kivy.org/ [2] https://www.python.org/]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1940</post-id>	</item>
		<item>
		<title>Blender Player Python</title>
		<link>https://www.tomek.cedro.info/blender-player-python/</link>
		
		<dc:creator><![CDATA[CeDeROM]]></dc:creator>
		<pubDate>Wed, 23 Jan 2019 22:45:54 +0000</pubDate>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[DIY (Do It Yourself)]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Virtual Reality]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[virtual-reality]]></category>
		<guid isPermaLink="false">http://www.tomek.cedro.info/?p=1593</guid>

					<description><![CDATA[If you encounter a problem with running Python [python] scripts on a &#8220;bare&#8221; Blender Player [blender], make sure that both PYTHONHOME and PYTHONPATH are set correctly to match your needs. You can also use native Blender python with a simple shell script: #!/bin/sh export PYTHONHOME="/path/to/blender/python/" export PYTHONPATH=$PYTHONHOME"/bin" /path/to/your/blenderplayer $@ [python] https://www.python.org/[blender] https://www.blender.org/]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1593</post-id>	</item>
		<item>
		<title>binary file hexdump</title>
		<link>https://www.tomek.cedro.info/binary-file-hexdump/</link>
		
		<dc:creator><![CDATA[CeDeROM]]></dc:creator>
		<pubDate>Thu, 08 Feb 2018 21:52:45 +0000</pubDate>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[DIY (Do It Yourself)]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[modifications]]></category>
		<category><![CDATA[binary]]></category>
		<category><![CDATA[dump]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[hex]]></category>
		<category><![CDATA[hexedit]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://www.tomek.cedro.info/?p=1571</guid>

					<description><![CDATA[Sometimes you need to quickly create a hexeditor like dump of a binary file. HEXDUMP is your friend. It may be a standard Unix application or Python module. Unix hexdump use example: hexdump -Cv file.bin 00000000 12 01 00 02 ef 02 01 40 28 0d 04 02 00 10 01 02 &#124;.......@(.......&#124; 00000010 03 [&#8230;]]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1571</post-id>	</item>
		<item>
		<title>Python Matplotlib macOS backend</title>
		<link>https://www.tomek.cedro.info/python-matplotlib-macos-backend/</link>
		
		<dc:creator><![CDATA[CeDeROM]]></dc:creator>
		<pubDate>Tue, 25 Jul 2017 23:16:02 +0000</pubDate>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[diagram]]></category>
		<category><![CDATA[macOS]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[virtualenv]]></category>
		<guid isPermaLink="false">http://www.tomek.cedro.info/?p=1481</guid>

					<description><![CDATA[Matplotlib is a nice Matlab-like environment for Python. If you encounter a backend related problem while using Matplotlib [1] on a Python Virtualenv [2], then you need to explicitly select one (i.e. backend : Qt5Agg) in a ~/.config/matplotlib/matplotlibrc (or directly in a matplotlib file located in current working directory) configuration file. Then remember to use [&#8230;]]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1481</post-id>	</item>
		<item>
		<title>PIP and Python Modules inside Blender</title>
		<link>https://www.tomek.cedro.info/pip-and-python-modules-inside-blender/</link>
		
		<dc:creator><![CDATA[CeDeROM]]></dc:creator>
		<pubDate>Wed, 01 Feb 2017 17:32:32 +0000</pubDate>
				<category><![CDATA[3D print]]></category>
		<category><![CDATA[CAD]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[DIY (Do It Yourself)]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[modifications]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Virtual Reality]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[numpy]]></category>
		<category><![CDATA[PIP]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[scipy]]></category>
		<guid isPermaLink="false">http://www.tomek.cedro.info/?p=1373</guid>

					<description><![CDATA[If you want to install additional Python [1] modules inside your Blender [2] environment, you can install PIP using this recommended script [3], then use PIP to install all modules that you want. Note Blender&#8217;s Python Virtualenv location is /path_to_blender/blender_version/python/bin/python and you need to use this particular interpreter to launch the script. [1] https://www.python.org/ [2] [&#8230;]]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1373</post-id>	</item>
		<item>
		<title>MacPorts Python 3.6.0 and NumPy/SciPy import bug</title>
		<link>https://www.tomek.cedro.info/macports-python-3-6-0-and-numpyscipy-import-bug/</link>
		
		<dc:creator><![CDATA[CeDeROM]]></dc:creator>
		<pubDate>Tue, 31 Jan 2017 20:59:24 +0000</pubDate>
				<category><![CDATA[bugs]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[macOS]]></category>
		<category><![CDATA[MacPorts]]></category>
		<category><![CDATA[numpy]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[scipy]]></category>
		<guid isPermaLink="false">http://www.tomek.cedro.info/?p=1369</guid>

					<description><![CDATA[Python 3.6.0 NumPy and SciPy from MacPorts crash on import bug [1]. [1] https://trac.macports.org/ticket/53453]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1369</post-id>	</item>
	</channel>
</rss>
