python
1xml_loop_counter = 0 2while True: 3 if xml_loop_counter==0: 4 con = psycopg2.connect(host="localhost",database="feed",user="a01",password="Sima58128") 5 cur = con.cursor() 6 7 item_id = 0 8 for x in xml_urls: 9 loop_count = 0 10 while loop_count < 3: 11 feed_url = feedparser.parse(x) 12 if '.com' in x: 13 regex = re.compile(r'://.+?.com') 14 get_text = regex.findall(x) 15 elif '.ad' in x: 16 regex = re.compile(r'://.+?.ad') 17 get_text = regex.findall(x) 18 elif '.co' in x: 19 regex = re.compile(r'://.+?.co') 20 get_text = regex.findall(x) 21 elif '.tech' in x: 22 regex = re.compile(r'://.+?.tech') 23 get_text = regex.findall(x) 24 25 media_title = get_text[0][3:-4] 26 print(media_title)
[行ってること]
Pythonのfeedparserを使ってインスタやニュースの情報を取得できるようなツールの作成を行おうとしております。
実際に他の人が書いたコードを読んで処理を追ってるのですが、わからない部分が出てきたので質問させて下さい。
[疑問点]
上記コードの
media_title = get_text[0][3:-4]
の[3:-4]の意味が分からないです。
どなたか分かる方ご教授頂けますと幸いです。
よろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/19 09:32