<?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>파이썬 Archives - No price too high for owning yourself.</title>
	<atom:link href="https://www.musi.co.kr/archives/tag/%ed%8c%8c%ec%9d%b4%ec%8d%ac/feed" rel="self" type="application/rss+xml" />
	<link>https://www.musi.co.kr/archives/tag/파이썬</link>
	<description>자기 자신을 소유할 수 있는 특권을 얻기 위해 치러야 할 대가치고 너무 비싼 것은 없다.</description>
	<lastBuildDate>Thu, 24 Aug 2023 02:57:33 +0000</lastBuildDate>
	<language>ko-KR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://www.musi.co.kr/wp-content/uploads/2022/10/cropped-iconfinder_running-1-32x32.png</url>
	<title>파이썬 Archives - No price too high for owning yourself.</title>
	<link>https://www.musi.co.kr/archives/tag/파이썬</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>파일명 url디코딩</title>
		<link>https://www.musi.co.kr/archives/99908</link>
					<comments>https://www.musi.co.kr/archives/99908#respond</comments>
		
		<dc:creator><![CDATA[토미]]></dc:creator>
		<pubDate>Sun, 05 Mar 2023 06:14:40 +0000</pubDate>
				<category><![CDATA[자료실]]></category>
		<category><![CDATA[decoding]]></category>
		<category><![CDATA[encodeing]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[파이썬]]></category>
		<guid isPermaLink="false">https://www.musi.co.kr/?p=99908</guid>

					<description><![CDATA[<p>인터넷에서 내려받은 파일명이 url인코딩이 된 채로 저장되는 경우가 있다. 그럴 경우 다시 url디코딩을 하면 된다. import os import urllib.parse path = os.getcwd(); #os.chdir(path) for dirpath, dirname, filename in os.walk(path): for name in filename: newName = urllib.parse.unquote_plus(name); if name != newName: print(name + "-&#62;" + newName) os.rename(name, newName) 내려받은 폴더에서 위의 파이썬 스크립트를 실행하면 된다. 주의해야할 &#8230; </p>
<p class="link-more"><a href="https://www.musi.co.kr/archives/99908" class="more-link">Read more<span class="screen-reader-text"> "파일명 url디코딩"</span></a></p>
<p>The post <a href="https://www.musi.co.kr/archives/99908">파일명 url디코딩</a> appeared first on <a href="https://www.musi.co.kr">No price too high for owning yourself.</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.musi.co.kr/archives/99908/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>자소변환</title>
		<link>https://www.musi.co.kr/archives/98759</link>
					<comments>https://www.musi.co.kr/archives/98759#respond</comments>
		
		<dc:creator><![CDATA[토미]]></dc:creator>
		<pubDate>Thu, 22 Dec 2022 03:58:06 +0000</pubDate>
				<category><![CDATA[자료실]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[자소분리]]></category>
		<category><![CDATA[파이썬]]></category>
		<category><![CDATA[한글]]></category>
		<guid isPermaLink="false">https://www.musi.co.kr/?p=98759</guid>

					<description><![CDATA[<p>맥에서 사용하던 폴더나 파일을 윈도우로 가져오면 자음과 모음이 분리된다. 일명 자소분리라고 한다. 인터넷에서 다시 원래 이름으로 자음과 모음을 붙여 한 글자로 만들어주는 프로그램이 많이 있다. 그중 괜챦은  프로그램은 HangulJasoFixer2.exe 파일이다. 하지만, 파이썬으로도 간단하게 변환할 수 있다. import os import unicodedata type = 'NFC' stack = [] def findfile(path): for dirpath, dirname, filename in os.walk(path): for &#8230; </p>
<p class="link-more"><a href="https://www.musi.co.kr/archives/98759" class="more-link">Read more<span class="screen-reader-text"> "자소변환"</span></a></p>
<p>The post <a href="https://www.musi.co.kr/archives/98759">자소변환</a> appeared first on <a href="https://www.musi.co.kr">No price too high for owning yourself.</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.musi.co.kr/archives/98759/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>한글 자소 분리파일 수정 프로그램</title>
		<link>https://www.musi.co.kr/archives/96111</link>
					<comments>https://www.musi.co.kr/archives/96111#comments</comments>
		
		<dc:creator><![CDATA[토미]]></dc:creator>
		<pubDate>Tue, 22 Feb 2022 10:56:51 +0000</pubDate>
				<category><![CDATA[자료실]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[자소분리]]></category>
		<category><![CDATA[파이썬]]></category>
		<guid isPermaLink="false">https://www.musi.co.kr/?p=96111</guid>

					<description><![CDATA[<p>맥에서 내려받아 한글 자음과 모음이 분리되는 파일을 일괄로 수정하는 프로그램이다. 설치가 아니라 그냥 실행하면 된다. HangulJasoFixer2 출처 : https://namocom.tistory.com/630 하지만, 이프로그램도 완벽하지 않다. 자소분리파일을 제대로 인식하지 못한다. 자소분리가 발생하는 원인은 맥과 윈도우의 글자 인코딩 방식의 차이 때문이다. 윈도우에서는 완성형을 지원하고, 맥에서는 완성형과 조합형을 지원한다.  윈도우에서 생성한 조합형 문자를 윈도우에서 사용하려고 하면 자소분리현상이 발생한다. 해결방법은 맥에서 &#8230; </p>
<p class="link-more"><a href="https://www.musi.co.kr/archives/96111" class="more-link">Read more<span class="screen-reader-text"> "한글 자소 분리파일 수정 프로그램"</span></a></p>
<p>The post <a href="https://www.musi.co.kr/archives/96111">한글 자소 분리파일 수정 프로그램</a> appeared first on <a href="https://www.musi.co.kr">No price too high for owning yourself.</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.musi.co.kr/archives/96111/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
