Skip to content
조회 수 3180 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

python html tag 제거 경로 금지 문자 제거

 

 

from pytube import YouTube
 
# 경로 금지 문자 제거, HTML문자 제거
import re
def filename_remover(string):
        cleaner = re.compile('<.*?>|&([a-z0-9]+|#[0-9]{1,6}|#x[0-9a-f]{1,6});') #<tag>, &nbsp 등등 제거
        string = re.sub(cleaner, '', string)
        while(string[-1] == '.'):
            string = string[:-1] #끝에 . 제거 ex) test... -> test
        non_directory_letter = ['/', ':', '*', '?', '<', '>', '|'] #경로 금지 문자열 제거
        for str_ in non_directory_letter:
                if str_ in string:
                        string = string.replace(str_, "")
        return string
 
url = 'https://www.youtube.com/watch?v=FbVeMmO6G60&t=1s'
yt = YouTube(url)
 
caption = yt.captions.all()[0]  # 첫번째 자막 선택
caption_xml=caption.xml_captions # html문서로 변환
re_string=filename_remover(caption_xml)
print(re_string)

 

 

로그인 후 댓글쓰기가 가능합니다.

?

  1. 24
    Nov 2021
    06:30

    양도일 현재 농지가 아니더라도 농지로 인정받는 경우가 있다.

    Category유용한상식 Views1893
    Read More
  2. 24
    Nov 2021
    06:29

    농지는 8년 이상 경작한 후 양도해야 비과세

    Category유용한상식 Views2185
    Read More
  3. 22
    Nov 2021
    11:59

    하천부지 점용 허가

    Category유용한상식 Views6362
    Read More
  4. 22
    Nov 2021
    11:58

    농지취득자격증명을 발급받아야 하는 모든 경우의 정리

    Category유용한상식 Views4409
    Read More
  5. 31
    Oct 2021
    12:12

    파이썬 정규표현식 (Regular Expressions)

    Category파이썬 Views3180
    Read More
  6. 26
    Oct 2021
    06:06

    로지텍

    Category컴퓨터잡담 Views2460
    Read More
  7. 26
    Oct 2021
    05:59

    python html tag 제거 경로 금지 문자 제거

    Category파이썬 Views3180
    Read More
  8. 10
    Oct 2021
    07:37

    PC를 자동으로 부팅시작

    Category컴퓨터잡담 Views4093
    Read More
  9. 02
    Oct 2021
    11:44

    어린이에 맞는 자전거 고르기

    Category유용한상식 Views4332
    Read More
  10. 02
    Oct 2021
    10:22

    경매로 낙찰받은 아파트의 세입자가 집을 비워주지 않을때

    Views3690
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 ... 235 Next
/ 235

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소