#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# __author__ = 'kira@-天底 ガジ'

from bs4 import BeautifulSoup

def main():
    ms = '<tr data-count="4" data-id="34343" data-title="secure">F</tr>'
    soup = BeautifulSoup(ms, 'lxml')
    fb_usa = soup.find_all('tr')
    print(fb_usa)
    for i in fb_usa:
        print(i.get('data-count'))


main()
