From this url http://www.5metal.com.hk/ajax/pager/company_fea?view_amount=36&page=1
,
We get a list of urls for detail pages like http://www.5metal.com.hk/wongwahkee/contact
to scrape the companies' info
Info to scrape:
In [1]:
from IPython.core.display import display, HTML
import urllib2
import bs4
import urlparse
import pandas as pd
import numpy as np
In [2]:
index_page_url = 'http://www.5metal.com.hk/ajax/pager/company?keyword=&page=0&tid=1'
In [3]:
index_page_src = urllib2.urlopen(index_page_url).read()
index_page_soup = bs4.BeautifulSoup(index_page_src, 'html.parser')
The index page HTML source:
In [4]:
print(index_page_soup.prettify())
<div class="view view-company-list view-id-company_list view-display-id-page_1 view-dom-id-4d100f87fa2f9c3a789d11e8e8bd67be">
<div class="view-content">
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/13112" target="_blank">
<img alt="" height="113" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/KwongShingHW%20Capture%20Logo.PNG?itok=FeWMN_D-" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
港城五金建材公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/1" target="_blank">
<img alt="" height="59" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/%E6%9D%8E%E7%B6%AD%E8%A8%98%E5%82%B3%E5%96%AE2013-5-113.png?itok=yglwn2oZ" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
李維記(寶源)五金工程
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3652" target="_blank">
<img alt="" height="180" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/winwinco.JPG?itok=Jw9ToVPX" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
同利號
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/149" target="_blank">
<img alt="" height="150" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/ManCheong_Logo_Only.PNG?itok=XV0hmvSk" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
萬昌五金建材有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/15998" target="_blank">
<img alt="" height="42" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/JinHui%20Logo2.png?itok=39dHCpE7" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
津滙貿易公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3563" target="_blank">
<img alt="" height="166" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/HingFat-logo-retouch.jpg?itok=6--DPuhZ" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
興發五金(香港)有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/13379" target="_blank">
<img alt="" height="40" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/KinOnMetalware.PNG?itok=lUN1zXlH" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
建安五金
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/8507" target="_blank">
<img alt="" height="42" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/WingShingHW.PNG?itok=V9bJ-IGr" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
永盛五金電器貨倉批發
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3568" target="_blank">
<img alt="" height="140" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/IMG-20150506-WA0026.jpg?itok=N1XWyy7e" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
光輝鋼竹蒸籠厨具
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3705" target="_blank">
<img alt="" height="98" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/SMMOTH-SAMPLE.png?itok=_4DcJ9F_" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
時茂企業有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/18680" target="_blank">
<img alt="" height="135" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/SuperPowerHW%20Logo.jpg?itok=SA5WV8Yk" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
超力五金
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/5334" target="_blank">
<img alt="" height="180" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/eaglebright_logo.jpg?itok=Z_NaG789" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
鷹輝鋼材有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/14179" target="_blank">
<img alt="" height="109" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/wai%20ying%20logo.jpg?itok=BjP2DRsn" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
惠盈發展有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3732" target="_blank">
<img alt="" height="84" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/wang%20yip%20logo.jpg?itok=nihV-EtS" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
宏業工業設備
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/8620" target="_blank">
<img alt="" height="131" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Kingwai239%20logo.PNG?itok=-21BTThr" width="138"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
經緯發展貿易有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/5481" target="_blank">
<img alt="" height="214" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Chi%20Pang%20logo.jpg?itok=enGQr1w8" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
志鵬五金有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3779" target="_blank">
<img alt="" height="180" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Wing-Ki-Pumps.jpg?itok=U1SzOdb7" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
泳杰泵行
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/7880" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
新永泰裝飾五金材料
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3532" target="_blank">
<img alt="" height="168" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Grand%20Bearing%20logo.gif?itok=KBC6YbiC" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
立泰軸承有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/16443" target="_blank">
<img alt="" height="83" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/%E4%B8%89%E9%91%AB%20-%20LOGO.jpg?itok=-OYQXPce" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
三鑫國際(香港)有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3504" target="_blank">
<img alt="" height="180" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/TripleMetal-Whatsapp-LOOGO-2.png?itok=4xeJShen" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
三寶五金機械有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3511" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
大德五金超級市場
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/13405" target="_blank">
<img alt="" height="49" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Kraftool%20Logo.png?itok=VMpbK-RN" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
Kraftool Hong Kong Limited
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3674" target="_blank">
<img alt="" height="124" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Wingkai-logo.jpg?itok=90tVWv3Z" width="108"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
永佳五金機械有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3667" target="_blank">
<img alt="" height="112" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/KW01.png?itok=Eqtn6pG0" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
錦榮五金工具有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3834" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
Milwaukee Shops
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/562" target="_blank">
<img alt="" height="109" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/KwongYip_Logo_1.jpg?itok=Do5vdktY" width="155"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
廣業機器廠
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3785" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
緝記(兄弟)工具五金有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/6669" target="_blank">
<img alt="" height="51" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/2014-12-16%2015.04.06.jpg?itok=S323n-C6" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
合豐五金行
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/8260" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
建業五金機械有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/15599" target="_blank">
<img alt="" height="125" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Marvel%20Group%20Logo.JPG?itok=wmEf8zyp" width="107"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
鐤盛集團國際貿易有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3835" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
安迪五金有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/4079" target="_blank">
<img alt="" height="115" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/FuCheong-Logo-Capture.PNG?itok=7kFqRVm5" width="166"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
富昌五金(國際)有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/17032" target="_blank">
<img alt="" height="201" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/Man%20Shing%20Electrical%20Logo%20Capture.png?itok=_pDFZsnr" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
萬成五金電器(香港)有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3721" target="_blank">
<img alt="" height="37" src="https://www.5metal.com.hk/sites/default/files/styles/company_list_logo/public/RoyalChinaMetal%20Logo%20Capture.PNG?itok=Wy32as41" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
華卓五金有限公司
</a>
</div>
</div>
</span>
</div>
</div>
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="company">
<div class="logo">
<a href="/node/3516" target="_blank">
<img src="/sites/all/themes/metal/images/logo_company.jpg" width="180"/>
</a>
</div>
<div class="title">
<a href="/node/[nid_1]" target="_blank">
永興摩打泵行有限公司(廣東道967-969號)
</a>
</div>
</div>
</span>
</div>
</div>
</div>
<div class="item-list">
<ul class="pager">
<li class="pager-previous first">
</li>
<li class="pager-current">
1 of 10
</li>
<li class="pager-next last">
<a href="/ajax/pager/company?keyword=&page=1&tid=1" title="到下一頁">
下一頁 ›
</a>
</li>
</ul>
</div>
</div>
The index page looks like:
In [5]:
display(HTML(index_page_src))
-
- 1 of 10
- 下一頁 ›
In [6]:
number_of_index_pages = int(index_page_soup.select_one('.pager-current').getText().split('of')[1])
print(number_of_index_pages)
10
In [7]:
detail_pages_links = []
for i in xrange(number_of_index_pages):
current_index_page_url = ('http://www.5metal.com.hk/ajax/pager/company?keyword=&page=%d&tid=1' % i)
print('scraping index page: %s' % current_index_page_url)
try:
current_index_page_src = urllib2.urlopen(current_index_page_url).read()
current_index_page_soup = bs4.BeautifulSoup(index_page_src, 'html.parser')
detail_pages_links_in_current_page = [anchor.get('href') for anchor in current_index_page_soup.select('.views-field .company .logo a[href]')]
detail_pages_links_in_current_page = [urlparse.urljoin(current_index_page_url, link) for link in detail_pages_links_in_current_page if link is not None]
detail_pages_links += detail_pages_links_in_current_page
except Exception:
print('there was an exception when scraping index page: %s' % index_page_url)
scraped_data = pd.DataFrame(data={'detail_page_url': detail_pages_links})
scraped_data['address'] = None
scraped_data['company_name'] = None
scraped_data['company_website'] = None
scraped_data['contact_number'] = None
scraped_data['contact_person'] = None
scraped_data['fax'] = None
scraped_data['email'] = None
scraped_data['mobile_phone'] = None
print('No. of links got: ' + str(scraped_data.shape[0]))
print(scraped_data.head(10))
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=0&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=1&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=2&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=3&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=4&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=5&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=6&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=7&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=8&tid=1
scraping index page: http://www.5metal.com.hk/ajax/pager/company?keyword=&page=9&tid=1
No. of links got: 360
detail_page_url address company_name company_website \
0 http://www.5metal.com.hk/node/13112 None None None
1 http://www.5metal.com.hk/node/1 None None None
2 http://www.5metal.com.hk/node/3652 None None None
3 http://www.5metal.com.hk/node/149 None None None
4 http://www.5metal.com.hk/node/15998 None None None
5 http://www.5metal.com.hk/node/3563 None None None
6 http://www.5metal.com.hk/node/13379 None None None
7 http://www.5metal.com.hk/node/8507 None None None
8 http://www.5metal.com.hk/node/3568 None None None
9 http://www.5metal.com.hk/node/3705 None None None
contact_number contact_person fax email mobile_phone
0 None None None None None
1 None None None None None
2 None None None None None
3 None None None None None
4 None None None None None
5 None None None None None
6 None None None None None
7 None None None None None
8 None None None None None
9 None None None None None
Now we work on getting company info from detail page url, it turns out that each detail page url points to a company website of nearly standard format (some after url redirection), and all the info we need can be found in Contact
page of the detail page
Note that currently there're 2 designs, so we need two ways for scraping
This is how we handle redirection:
In [8]:
sample_detail_page_url = detail_pages_links[0]
print('sample_detail_page_url:')
print(sample_detail_page_url)
redirected_sample_detail_page_url = urllib2.urlopen(sample_detail_page_url).geturl()
print('redirected_sample_detail_page_url:')
print(redirected_sample_detail_page_url)
sample_contact_page_url = redirected_sample_detail_page_url + '/contact'
print('sample_contact_page_url:')
print(sample_contact_page_url)
sample_detail_page_url:
http://www.5metal.com.hk/node/13112
redirected_sample_detail_page_url:
http://www.5metal.com.hk/kwongshing
sample_contact_page_url:
http://www.5metal.com.hk/kwongshing/contact
so we create his helper function:
In [9]:
def get_contact_page_soup_from_detail_page_url(detail_page_url):
redirected_detail_page_url = urllib2.urlopen(detail_page_url).geturl()
contact_page_url = redirected_detail_page_url + '/contact'
contact_page_src = urllib2.urlopen(contact_page_url).read()
return bs4.BeautifulSoup(contact_page_src, 'html.parser')
test~
In [10]:
get_contact_page_soup_from_detail_page_url(detail_pages_links[0])
Out[10]:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"\r\n "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">\n\n<html dir="ltr" version="XHTML+RDFa 1.0" xml:lang="zh-hant" xmlns="http://www.w3.org/1999/xhtml">\n<head profile="http://www.w3.org/1999/xhtml/vocab">\n<meta content="noindex" name="robots">\n<meta content="text/html; charset=unicode-escape" http-equiv="Content-Type"/>\n<link href="https://www.5metal.com.hk/sites/default/files/img_watermark_0_0.png" rel="shortcut icon" type="image/png"/>\n<meta content="Drupal 7 (http://drupal.org)" name="Generator"/>\n<title>\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8 - \u806f\u7d61\u6211\u5011 | \u9999\u6e2f\u4e94\u91d1\u7db2</title>\n<meta content="" http-equiv="Content-Security-Policy">\n<style media="all" type="text/css">@import url("https://www.5metal.com.hk/modules/system/system.base.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/system/system.menus.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/system/system.messages.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/system/system.theme.css?o58yvz");</style>\n<style media="screen" type="text/css">@import url("https://www.5metal.com.hk/sites/all/modules/views_slideshow/views_slideshow.css?o58yvz");</style>\n<style media="all" type="text/css">@import url("https://www.5metal.com.hk/sites/all/modules/simplenews/simplenews.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/comment/comment.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/date/date_api/date.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/date/date_popup/themes/datepicker.1.7.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/date/date_repeat_field/date_repeat_field.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/field/theme/field.css?o58yvz");</style>\n<style media="all" type="text/css">@import url("https://www.5metal.com.hk/modules/node/node.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/search/search.css?o58yvz");\n@import url("https://www.5metal.com.hk/modules/user/user.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/youtube/css/youtube.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/views/css/views.css?o58yvz");</style>\n<style media="all" type="text/css">@import url("https://www.5metal.com.hk/sites/all/modules/ckeditor/ckeditor.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/ctools/css/ctools.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/panels/css/panels.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.css?o58yvz");</style>\n<style media="all" type="text/css">@import url("https://www.5metal.com.hk/sites/all/themes/metal/style.css?o58yvz");\n@import url("https://www.5metal.com.hk/sites/all/themes/metal/kenny.css?o58yvz");</style>\n<style media="print" type="text/css">@import url("https://www.5metal.com.hk/sites/all/themes/metal/print.css?o58yvz");</style>\n<!--[if lt IE 7]>\n<link type="text/css" rel="stylesheet" href="https://www.5metal.com.hk/sites/all/themes/metal/fix-ie.css?o58yvz" media="all" />\n<![endif]-->\n<script type="text/javascript">\n<!--//--><![CDATA[//><!--\nwindow.google_analytics_uacct = "UA-51952282-1";\n//--><!]]>\n</script>\n<script src="https://www.5metal.com.hk/misc/jquery.js?v=1.4.4" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/misc/jquery.once.js?v=1.2" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/misc/drupal.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/modules/views_slideshow/js/views_slideshow.js?v=1.0" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/default/files/languages/zh-hant_qpb8R9HcrzJcjgbZ3oTrKYCrCf0GGxhIf3t9k8gG374.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/modules/adsense/contrib/adsense_click/adsense_click.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/libraries/jquery.cycle/jquery.cycle.all.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/js/views_slideshow_cycle.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/modules/google_analytics/googleanalytics.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/themes/metal/jquery-1.8.1.min.js?o58yvz" type="text/javascript"></script>\n<script src="https://www.5metal.com.hk/sites/all/themes/metal/js/scrollpagination.js?o58yvz" type="text/javascript"></script>\n<script type="text/javascript">\n<!--//--><![CDATA[//><!--\njQuery.extend(Drupal.settings, {"basePath":"\\/","pathPrefix":"","ajaxPageState":{"theme":"metal","theme_token":"Pl1xVerAFzRszE0WVoNs3VJ8y1cn80g701HMQon--sk","js":{"0":1,"1":1,"misc\\/jquery.js":1,"misc\\/jquery.once.js":1,"misc\\/drupal.js":1,"sites\\/all\\/modules\\/views_slideshow\\/js\\/views_slideshow.js":1,"public:\\/\\/languages\\/zh-hant_qpb8R9HcrzJcjgbZ3oTrKYCrCf0GGxhIf3t9k8gG374.js":1,"sites\\/all\\/modules\\/adsense\\/contrib\\/adsense_click\\/adsense_click.js":1,"sites\\/all\\/libraries\\/jquery.cycle\\/jquery.cycle.all.js":1,"sites\\/all\\/modules\\/views_slideshow\\/contrib\\/views_slideshow_cycle\\/js\\/views_slideshow_cycle.js":1,"sites\\/all\\/modules\\/google_analytics\\/googleanalytics.js":1,"sites\\/all\\/themes\\/metal\\/jquery-1.8.1.min.js":1,"sites\\/all\\/themes\\/metal\\/js\\/scrollpagination.js":1},"css":{"modules\\/system\\/system.base.css":1,"modules\\/system\\/system.menus.css":1,"modules\\/system\\/system.messages.css":1,"modules\\/system\\/system.theme.css":1,"sites\\/all\\/modules\\/views_slideshow\\/views_slideshow.css":1,"sites\\/all\\/modules\\/simplenews\\/simplenews.css":1,"modules\\/comment\\/comment.css":1,"sites\\/all\\/modules\\/date\\/date_api\\/date.css":1,"sites\\/all\\/modules\\/date\\/date_popup\\/themes\\/datepicker.1.7.css":1,"sites\\/all\\/modules\\/date\\/date_repeat_field\\/date_repeat_field.css":1,"modules\\/field\\/theme\\/field.css":1,"sites\\/all\\/modules\\/find_content\\/find_content.css":1,"modules\\/node\\/node.css":1,"modules\\/search\\/search.css":1,"modules\\/user\\/user.css":1,"sites\\/all\\/modules\\/youtube\\/css\\/youtube.css":1,"sites\\/all\\/modules\\/views\\/css\\/views.css":1,"sites\\/all\\/modules\\/ckeditor\\/ckeditor.css":1,"sites\\/all\\/modules\\/ctools\\/css\\/ctools.css":1,"sites\\/all\\/modules\\/panels\\/css\\/panels.css":1,"sites\\/all\\/modules\\/views_slideshow\\/contrib\\/views_slideshow_cycle\\/views_slideshow_cycle.css":1,"sites\\/all\\/themes\\/metal\\/style.css":1,"sites\\/all\\/themes\\/metal\\/kenny.css":1,"sites\\/all\\/themes\\/metal\\/print.css":1,"sites\\/all\\/themes\\/metal\\/fix-ie.css":1}},"viewsSlideshow":{"home_slide_show-block":{"methods":{"goToSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"nextSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"pause":["viewsSlideshowControls","viewsSlideshowCycle"],"play":["viewsSlideshowControls","viewsSlideshowCycle"],"previousSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"transitionBegin":["viewsSlideshowPager","viewsSlideshowSlideCounter"],"transitionEnd":[]},"paused":0}},"viewsSlideshowPager":{"home_slide_show-block":{"bottom":{"type":"viewsSlideshowPagerFields"}}},"viewsSlideshowPagerFields":{"home_slide_show-block":{"bottom":{"activatePauseOnHover":0}}},"viewsSlideshowCycle":{"#views_slideshow_cycle_main_home_slide_show-block":{"num_divs":7,"id_prefix":"#views_slideshow_cycle_main_","div_prefix":"#views_slideshow_cycle_div_","vss_id":"home_slide_show-block","effect":"fade","transition_advanced":0,"timeout":5000,"speed":700,"delay":0,"sync":1,"random":0,"pause":1,"pause_on_click":0,"action_advanced":0,"start_paused":0,"remember_slide":0,"remember_slide_days":1,"pause_in_middle":0,"pause_when_hidden":0,"pause_when_hidden_type":"full","amount_allowed_visible":"","nowrap":0,"fixed_height":1,"items_per_slide":1,"wait_for_image_load":1,"wait_for_image_load_timeout":3000,"cleartype":0,"cleartypenobg":0,"advanced_options":"{}"}},"hide_submit":{"hide_submit_status":true,"hide_submit_method":"disable","hide_submit_css":"hide-submit-disable","hide_submit_abtext":"","hide_submit_atext":"","hide_submit_hide_css":"hide-submit-processing","hide_submit_hide_text":"Processing...","hide_submit_hide_fx":0,"hide_submit_reset_time":9000},"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"}});\n//--><!]]>\n</script>\n</meta></meta></head>\n<body class="html not-front not-logged-in no-sidebars page-c page-c- page-c-13112 page-c-contact fluid-width">\n<div id="wrapper">\n<div id="skip-link">\n<a class="element-invisible element-focusable" href="#main-content">\u79fb\u81f3\u4e3b\u5167\u5bb9</a>\n</div>\n<script charset="utf-8" src="/sites/all/themes/metal/js/jquery.scrollTo-min.js" type="text/javascript"></script>\n<script src="/sites/all/themes/metal/js/jquery-1.9.1.min.js" type="text/javascript"></script>\n<script src="/sites/all/libraries/colorbox/jquery.colorbox-min.js" type="text/javascript"></script>\n<link href="/sites/all/libraries/colorbox/example3/colorbox.css" rel="stylesheet"/>\n<script>\nvar nid = "13112";\n\n$(document).ready(function(){\n\t$(".cp-search-input").keyup(function (e) {\n\t\tif (e.keyCode == 13) {\n\t\t\tcp_search();\n\t\t}\n\t});\n\n\t$(".colorbox").colorbox({iframe:true, width:"90%", height:"90%"});\n\t});\n\nfunction cp_search(){\n\tvar keyword = $(".cp-search-input").val();\n\tif(!keyword){\n\t\tdocument.location = "/c/"+nid+"/product";\n\t\t//alert("\u8acb\u5148\u8f38\u5165\u60a8\u8981\u641c\u5c0b\u7684\u95dc\u9375\u5b57");\n\t\t//$(".cp-search-input").focus();\n\t\t//return false;\n\t}else{\n\t\tvar url = "/c/"+nid+"/product?combine="+keyword;\n\t\tdocument.location = url;\n\t}\n}\n</script>\n<link href="/sites/all/themes/metal/company/common.css" rel="stylesheet"/>\n<link href="/sites/all/themes/metal/company/theme07/style.css" rel="stylesheet"/>\n<div id="cp-wrapper">\n<div id="cp-sidebar">\n<div id="cp-sidebar-nav"> </div>\n</div>\n<div id="cp-rightside">\n<div id="cp-header">\n<div class="cp-header-left">\n<div class="cp-logo">\n<img alt="\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8" src="https://www.5metal.com.hk/sites/default/files/styles/thumbnail/public/KwongShingHW%20Capture%20Logo.PNG?itok=mSbNFtry" title="\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8">\n</img></div>\n<div class="cp-name">\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8</div>\n<div class="clearfix"></div>\n</div>\n<div class="cp-header-right">\n<div class="top-info">\n<span class="info">\n<a href="/">\u56de\u9999\u6e2f\u4e94\u91d1\u7db2\u9996\u9801</a>\n</span>\n<span class="info">\n<a href="/user">\u6703\u54e1\u767b\u5165</a>\n</span>\n<!-- <span class="info">\n\t\t\t\t\t\u6210\u529f\u4ea4\u6613 <span class="trade_amount">0</span> \u6b21\n\t\t\t\t</span> -->\n</div>\n<div class="top-search">\n<input class="cp-search-input" name="q" placeholder="\u95dc\u9375\u5b57" type="text" value=""><input class="cp-search-btn" onclick="cp_search();" type="button" value="\u641c\u5c0b">\n<div class="clearfix"></div>\n</input></input></div>\n</div><!-- cp-header-right -->\n<div class="clearfix"></div>\n</div><!--end of cp-header -->\n<div id="cp-nav">\n<ul class="nav">\n<li><a href="/kwongshing"><span>\u9996\u9801</span></a></li>\n<li><a href="/kwongshing/about"><span>\u516c\u53f8\u4ecb\u7d39</span></a></li>\n<li><a href="/kwongshing/product"><span>\u7522\u54c1\u4ecb\u7d39</span></a></li>\n<li><a href="/kwongshing/contact"><span>\u806f\u7d61\u6211\u5011</span></a></li>\n</ul>\n<!-- <div class="welcome">\u6b61\u8fce\u60a8</div> -->\n</div><!-- cp-nav -->\n<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>\n<script>\nfunction initialize() {\n var myLatlng = new google.maps.LatLng(22.329115,114.1661994);\n var mapOptions = {\n zoom: 18,\n center: myLatlng\n }\n var map = new google.maps.Map(document.getElementById('google_map'), mapOptions);\n\n var marker = new google.maps.Marker({\n position: myLatlng,\n map: map,\n title: 'Hello World!'\n });\n}\n\ngoogle.maps.event.addDomListener(window, 'load', initialize);\n\n </script>\n<div id="cp-content">\n<div class="cp-box cp-contact">\n<h3 class="head">\u806f\u7d61\u6211\u5011</h3>\n<div class="cp-box-content">\n<div class="row company_name">\n<span class="val">\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8</span>\n</div>\n<div class="row">\n<label>\u5730\u5740\uff1a</label>\n<span class="val">\u4e5d\u9f8d\u6df1\u6c34\u57d7\u798f\u69ae\u885715\u865f\u5730\u4e0b</span>\n</div>\n<div class="row">\n<label>\u806f\u7d61\u4eba\uff1a</label>\n<span class="val">\u4f59\u5c0f\u59d0</span>\n</div>\n<div class="row">\n<label>\u96fb\u8a71(\u516c\u53f8)\uff1a</label>\n<span class="val">2763 0844</span>\n</div>\n<div class="row">\n<label>\u96fb\u8a71(\u624b\u63d0)\uff1a</label>\n<span class="val"></span>\n</div>\n<div class="row">\n<label>\u50b3\u771f\uff1a</label>\n<span class="val">26433381</span>\n</div>\n<div class="row">\n<label>\u96fb\u90f5\uff1a</label>\n<span class="val"><a href="mailto:info@kshw.com.hk">info@kshw.com.hk</a></span>\n</div>\n<div class="row">\n<label>\u7db2\u5740\uff1a</label>\n<span class="val"><a href="http://www.5metal.com.hk/kwongshing" target="_blank">http://www.5metal.com.hk/kwongshing</a></span>\n</div>\n</div>\n</div><!-- cp-contact -->\n</div>\n<!--<div class="google_map"><iframe width="760" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src=http://maps.google.com.tw/maps?f=q&hl=zh-TW&geocode=&q=\u4e5d\u9f8d\u6df1\u6c34\u57d7\u798f\u69ae\u885715\u865f\u5730\u4e0b&z=16&output=embed&t=></iframe></div>-->\n<!--<div class="google_map"></div>-->\n<div id="google_map"></div>\n</div><!-- END OF RIGHTSIDE-->\n<div class="clearfix"></div>\n</div>\n</div><!--END OF WRAPPER-->\n<div id="cp-footer">\n<div class="cp-footer-wrapper">\n<a class="fivemetal_logo" href="/" title="\u9999\u6e2f\u4e94\u91d1\u7db2">\n</a>\n<div class="clearfix"></div>\n</div>\n</div>\n<script type="text/javascript">\n<!--//--><![CDATA[//><!--\nvar _gaq = _gaq || [];_gaq.push(["_setAccount", "UA-51952282-1"]);_gaq.push(["_trackPageview"]);(function() {var ga = document.createElement("script");ga.type = "text/javascript";ga.async = true;ga.src = ("https:" == document.location.protocol ? "https://" : "http://") + "stats.g.doubleclick.net/dc.js";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(ga, s);})();\n//--><!]]>\n</script>\n</body></html>\n\n\n
In [11]:
detail_page_url_design1 = 'http://www.5metal.com.hk/node/562'
sample_contact_page_soup_design1 = get_contact_page_soup_from_detail_page_url(detail_page_url_design1)
print(sample_contact_page_soup_design1.prettify())
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html dir="ltr" version="XHTML+RDFa 1.0" xml:lang="zh-hant" xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://www.w3.org/1999/xhtml/vocab">
<meta content="noindex" name="robots">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link href="https://www.5metal.com.hk/sites/default/files/img_watermark_0_0.png" rel="shortcut icon" type="image/png"/>
<link href="/node/562" rel="shortlink"/>
<link href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0" rel="canonical"/>
<meta content="Drupal 7 (http://drupal.org)" name="Generator"/>
<title>
廣業機器廠 | 香港五金網
</title>
<meta content="" http-equiv="Content-Security-Policy">
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/modules/system/system.base.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/system/system.menus.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/system/system.messages.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/system/system.theme.css?o58yvz");
</style>
<style media="screen" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/modules/views_slideshow/views_slideshow.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/modules/simplenews/simplenews.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/comment/comment.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/date/date_api/date.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/date/date_popup/themes/datepicker.1.7.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/date/date_repeat_field/date_repeat_field.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/field/theme/field.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/modules/node/node.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/search/search.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/user/user.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/youtube/css/youtube.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/views/css/views.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/modules/ckeditor/ckeditor.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/ctools/css/ctools.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/panels/css/panels.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/themes/metal/style.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/themes/metal/kenny.css?o58yvz");
</style>
<style media="print" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/themes/metal/print.css?o58yvz");
</style>
<!--[if lt IE 7]>
<link type="text/css" rel="stylesheet" href="https://www.5metal.com.hk/sites/all/themes/metal/fix-ie.css?o58yvz" media="all" />
<![endif]-->
<script src="https://www.5metal.com.hk/misc/jquery.js?v=1.4.4" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/misc/jquery.once.js?v=1.2" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/misc/drupal.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/views_slideshow/js/views_slideshow.js?v=1.0" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/default/files/languages/zh-hant_qpb8R9HcrzJcjgbZ3oTrKYCrCf0GGxhIf3t9k8gG374.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/adsense/contrib/adsense_click/adsense_click.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/libraries/jquery.cycle/jquery.cycle.all.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/js/views_slideshow_cycle.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/themes/metal/jquery-1.8.1.min.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/themes/metal/js/scrollpagination.js?o58yvz" type="text/javascript">
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"metal","theme_token":"zpg0JXpvN5Clsjaa6ypH3SM19PyG2iQxD4fCcELDels","js":{"misc\/jquery.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/views_slideshow\/js\/views_slideshow.js":1,"public:\/\/languages\/zh-hant_qpb8R9HcrzJcjgbZ3oTrKYCrCf0GGxhIf3t9k8gG374.js":1,"sites\/all\/modules\/adsense\/contrib\/adsense_click\/adsense_click.js":1,"sites\/all\/libraries\/jquery.cycle\/jquery.cycle.all.js":1,"sites\/all\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/js\/views_slideshow_cycle.js":1,"sites\/all\/themes\/metal\/jquery-1.8.1.min.js":1,"sites\/all\/themes\/metal\/js\/scrollpagination.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"sites\/all\/modules\/views_slideshow\/views_slideshow.css":1,"sites\/all\/modules\/simplenews\/simplenews.css":1,"modules\/comment\/comment.css":1,"sites\/all\/modules\/date\/date_api\/date.css":1,"sites\/all\/modules\/date\/date_popup\/themes\/datepicker.1.7.css":1,"sites\/all\/modules\/date\/date_repeat_field\/date_repeat_field.css":1,"modules\/field\/theme\/field.css":1,"sites\/all\/modules\/find_content\/find_content.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/youtube\/css\/youtube.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ckeditor\/ckeditor.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/panels\/css\/panels.css":1,"sites\/all\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/views_slideshow_cycle.css":1,"sites\/all\/themes\/metal\/style.css":1,"sites\/all\/themes\/metal\/kenny.css":1,"sites\/all\/themes\/metal\/print.css":1,"sites\/all\/themes\/metal\/fix-ie.css":1}},"viewsSlideshow":{"home_slide_show-block":{"methods":{"goToSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"nextSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"pause":["viewsSlideshowControls","viewsSlideshowCycle"],"play":["viewsSlideshowControls","viewsSlideshowCycle"],"previousSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"transitionBegin":["viewsSlideshowPager","viewsSlideshowSlideCounter"],"transitionEnd":[]},"paused":0}},"viewsSlideshowPager":{"home_slide_show-block":{"bottom":{"type":"viewsSlideshowPagerFields"}}},"viewsSlideshowPagerFields":{"home_slide_show-block":{"bottom":{"activatePauseOnHover":0}}},"viewsSlideshowCycle":{"#views_slideshow_cycle_main_home_slide_show-block":{"num_divs":7,"id_prefix":"#views_slideshow_cycle_main_","div_prefix":"#views_slideshow_cycle_div_","vss_id":"home_slide_show-block","effect":"fade","transition_advanced":0,"timeout":5000,"speed":700,"delay":0,"sync":1,"random":0,"pause":1,"pause_on_click":0,"action_advanced":0,"start_paused":0,"remember_slide":0,"remember_slide_days":1,"pause_in_middle":0,"pause_when_hidden":0,"pause_when_hidden_type":"full","amount_allowed_visible":"","nowrap":0,"fixed_height":1,"items_per_slide":1,"wait_for_image_load":1,"wait_for_image_load_timeout":3000,"cleartype":0,"cleartypenobg":0,"advanced_options":"{}"}},"hide_submit":{"hide_submit_status":true,"hide_submit_method":"disable","hide_submit_css":"hide-submit-disable","hide_submit_abtext":"","hide_submit_atext":"","hide_submit_hide_css":"hide-submit-processing","hide_submit_hide_text":"Processing...","hide_submit_hide_fx":0,"hide_submit_reset_time":9000}});
//--><!]]>
</script>
</meta>
</meta>
</head>
<body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-562 page-node-contact node-type-company fluid-width">
<div id="wrapper">
<div id="skip-link">
<a class="element-invisible element-focusable" href="#main-content">
移至主內容
</a>
</div>
<div id="wrapper">
<script src="/misc/noty/js/noty/packaged/jquery.noty.packaged.min.js" type="text/javascript">
</script>
<!-- Add jQuery library -->
<!-- <script type="text/javascript" src="/sites/all/libraries/fancybox/lib/jquery-1.10.1.min.js"></script> -->
<!-- Add mousewheel plugin (this is optional) -->
<script src="/sites/all/libraries/fancybox/lib/jquery.mousewheel-3.0.6.pack.js" type="text/javascript">
</script>
<!-- Add fancyBox main JS and CSS files -->
<script src="/sites/all/libraries/fancybox/source/jquery.fancybox.js?v=2.1.5" type="text/javascript">
</script>
<link href="/sites/all/libraries/fancybox/source/jquery.fancybox.css?v=2.1.5" media="screen" rel="stylesheet" type="text/css"/>
<!-- Add Button helper (this is optional) -->
<link href="/sites/all/libraries/fancybox/source/helpers/jquery.fancybox-buttons.css?v=1.0.5" rel="stylesheet" type="text/css"/>
<script src="/sites/all/libraries/fancybox/source/helpers/jquery.fancybox-buttons.js?v=1.0.5" type="text/javascript">
</script>
<!-- Add Thumbnail helper (this is optional) -->
<link href="/sites/all/libraries/fancybox/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" rel="stylesheet" type="text/css"/>
<script src="/sites/all/libraries/fancybox/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7" type="text/javascript">
</script>
<!-- Add Media helper (this is optional) -->
<script src="/sites/all/libraries/fancybox/source/helpers/jquery.fancybox-media.js?v=1.0.6" type="text/javascript">
</script>
<link href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css" rel="stylesheet">
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js">
</script>
<script>
/*
function popTips(str){
setNoty(str);
}
*/
function popTips(str){
$(".fancybox_tips").html(str);
$.fancybox($(".fancybox_tips"));
}
function popError(str){
//setNoty(str,"error");
$(".fancybox_error").html(str);
$.fancybox($(".fancybox_error"));
}
var notyobj;
var notyi;
function closeNoty(){
var notyi = setTimeout(function(){ if(notyobj){ notyobj.close(); notyobj = null; } },15000);
}
function setNoty(str , type){
if(!type){
type = "information";
}
clearInterval(notyi);
if(!notyobj){
notyobj = noty({
text : str,
type : type,
dismissQueue: true,
layout : 'center',
theme : 'defaultTheme'
});
}else{
notyobj.setType(type);
notyobj.setText(str);
}
}
$(document).ready(function () {
//popTips("test");
$( "#tabs" ).tabs();
if($(".messages").length){
$(".messages").hide();
var message = $(".messages").html();
popTips(message);
}
$("#keyword").keyup(function (e) {
if (e.keyCode == 13) {
search();
}
});
});
function search(){
var type = $("#header .search ul li a.active").attr("rel");
var keyword = $("#header #keyword").val();
if(!keyword){
alert("請先輸入搜尋關鍵字");
$("#header #keyword").focus();
return;
}
if(type=="product"){
url = "/product_category?keyword="+keyword;
}
if(type=="purchase"){
url = "/purchase?keyword="+keyword;
}
if(type=="company"){
url = "/company?keyword="+keyword;
}
if(url){
document.location = url;
}
}
</script>
<div class="fancybox_error">
</div>
<div class="fancybox_tips">
</div>
<div id="header">
<a alt="香港五金網" href="/node" id="logo">
</a>
<div class="member_bar">
<a class="btn_login" href="/user">
登錄
</a>
<a class="btn_signup" href="/signup">
註冊
</a>
</div>
<form action="#" method="GET">
<div class="search">
<ul>
<li>
<a class="" href="#" rel="product">
產品
</a>
</li>
<li>
<a class="" href="#" rel="purchase">
求貨
</a>
</li>
<li>
<a class="active" href="#" rel="company">
公司
</a>
</li>
</ul>
<div class="search_bar gradient_light_grey">
<input class="search_input" id="keyword" name="keyword" type="text" value="">
<input class="btn_search" onclick="search();" type="button" value="搜尋">
</input>
</input>
</div>
</div>
<!--end of search-->
</form>
<div class="clearfix">
</div>
<div class="nav_group">
<ul class="nav_main gradient_yellow">
<li>
<a class="nav_main_btn" href="/" rel="home">
首頁
</a>
</li>
<li>
<a class="nav_main_btn" href="/product_category?order=update&order_type=desc" rel="products">
產品
</a>
</li>
<li>
<a class="nav_main_btn" href="/purchase?order=create&order_type=desc" rel="purchase">
求貨
</a>
</li>
<li class="active current">
<a class="nav_main_btn" href="/company" rel="companys">
公司
</a>
</li>
<li>
<a class="nav_main_btn" href="/wiki" rel="wiki">
五金維基
</a>
</li>
<li>
<a class="nav_main_btn" href="/info" rel="info">
行內資訊
</a>
</li>
<li>
<a class="nav_main_btn" href="/contact" rel="about">
五金網社區
</a>
</li>
</ul>
<div class="nav_subs fixed_subnav">
<ul class="nav_sub" id="subnav_products">
<li>
<a class="nav_sub_btn" href="/product_category?tid=1">
五金工具
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=2">
五金製品
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=4">
建築與安全設備
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=5">
金屬原料
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=8">
電子及光學用品
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=7">
環保回收
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=6">
五金工業機械
</a>
</li>
<li>
<a class="nav_sub_btn" href="/product_category?tid=3">
五金設備工程
</a>
</li>
<div class="clearfix">
</div>
</ul>
<ul class="nav_sub" id="subnav_purchase">
<li>
<a class="nav_sub_btn" href="/purchase?tid=1">
五金工具
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=2">
五金製品
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=4">
建築與安全設備
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=5">
金屬原料
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=8">
電子及光學用品
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=7">
環保回收
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=6">
五金工業機械
</a>
</li>
<li>
<a class="nav_sub_btn" href="/purchase?tid=3">
五金設備工程
</a>
</li>
<div class="clearfix">
</div>
</ul>
<ul class="nav_sub active" id="subnav_companys">
<li>
<a class="nav_sub_btn" href="/company?tid=1">
五金工具
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=2">
五金製品
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=4">
建築與安全設備
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=5">
金屬原料
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=8">
電子及光學用品
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=7">
環保回收
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=6">
五金工業機械
</a>
</li>
<li>
<a class="nav_sub_btn" href="/company?tid=3">
五金設備工程
</a>
</li>
<div class="clearfix">
</div>
</ul>
<ul class="nav_sub" id="subnav_about">
<li>
<a class="nav_sub_btn" href="/contact">
聯絡我們
</a>
</li>
<li>
<a class="nav_sub_btn" href="/user-usage">
使用者流程
</a>
</li>
<div class="clearfix">
</div>
</ul>
<div class="clearfix">
</div>
</div>
</div>
<!-- end of nav_group -->
</div>
<script charset="utf-8" type="text/javascript">
$(document).ready(function(){
var nav_ani;
init_nav();
init_searchnav();
});
function init_searchnav(){
$(".search ul li a").click(function(){
$(".search ul li a").removeClass("active");
$(this).addClass("active");
return false;
});
}
function init_nav(){
$(".nav_group ul.nav_main").append("<li class='float_nav'></li>");
float_nav();
$(".nav_group ul.nav_main li").mouseenter(function(){
var rel = $(this).find("a").attr("rel");
$(".nav_subs .nav_sub").removeClass("active");
if(rel && $("#subnav_"+rel).length){
$("#subnav_"+rel).addClass("active");
}
$(".nav_group ul.nav_main li.current").removeClass("current");
$(this).addClass("current");
float_nav($(this));
});
$(".nav_group").mouseleave(function(e){
var rel= $(".nav_group .nav_main .float_nav").attr("rel");
if(rel && $("#subnav_"+rel).length){
//if(!$(e.target).closest("#subnav_"+rel)){
$(".nav_group ul.nav_main li.current").removeClass("current");
$(".nav_group ul.nav_main li.active").addClass("current");
float_nav();
//}
}else{
$(".nav_group ul.nav_main li.current").removeClass("current");
$(".nav_group ul.nav_main li.active").addClass("current");
float_nav();
}
if($(e.target).closest(".nav_subs")){
return;
}
var active_rel = $(".nav_group ul.nav_main li.active a").attr("rel");
$(".nav_subs .nav_sub").removeClass("active");
if(active_rel && $("#subnav_"+active_rel).length){
$("#subnav_"+active_rel).addClass("active");
}
});
}
function float_nav(obj){
$(".nav_subs .nav_sub").removeClass("active");
var float_nav = $(".nav_group .nav_main .float_nav");
if(!obj){
obj = $(".nav_group .nav_main li.active");
}
if(!obj.length){
float_nav.width("0");
return false;
}
var nav = $(".nav_group .nav_main");
var rel = $(obj).find("a").attr("rel");
if(rel && $("#subnav_"+rel).length){
$("#subnav_"+rel).addClass("active");
}
var obj_h = obj.height();
var obj_w = obj.width();
var obj_o = obj.offset();
var obj_l = obj_o.left;
var obj_t = obj_o.top;
var nav_o = nav.offset();
var nav_l = nav_o.left;
var nav_t = nav_o.top;
var rel = obj.find("a").attr("rel");
if(rel){
float_nav.attr("rel",rel);
}
obj_l = obj_l - nav_l;
obj_t = obj_t - nav_t;
float_nav.stop( true, false );
float_nav.animate({
left: obj_l,
top: obj_t,
height: obj_h,
width: obj_w
}, 200);
}
</script>
<div class="region region-product-banner1">
<div class="block block-block clearfix" id="block-block-13">
<div class="content">
<p>
<a href="#">
<img alt="" src="/sites/all/themes/metal/images/adv05.png" style="width: 990px; height: 75px;"/>
</a>
</p>
</div>
</div>
</div>
<div id="main">
<div class="region region-content">
<div class="block block-system clearfix" id="block-system-main">
<div class="content">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp">
</script>
<script charset="utf-8" src="/misc/jquery_flux/flux.min.js" type="text/javascript">
</script>
<script charset="utf-8" src="/misc/jquery.scrollTo-min.js" type="text/javascript">
</script>
<script src="/misc/jquery.kxbdmarquee.min.js" type="text/javascript">
</script>
<script>
function initialize() {
var myLatlng = new google.maps.LatLng(22.3163201,114.1673249);
var mapOptions = {
zoom: 18,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById('google_map'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Hello World!'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div class="node node-company node-promoted company_page" id="node-562">
<div class="content clearfix">
<div class="left_content">
<h2 class="gradient_yellow">
產品推介
</h2>
<div class="fea_company">
<div class="view view-product-inner view-id-product_inner view-display-id-block_9 view-dom-id-b666ba36f7d99459a2f6a475b73810c0">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/13880">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/13880">
<img alt="" height="255" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E7%BE%8E%E5%9C%8BSTANLEY%E6%8B%89%E5%B0%BA%20.JPG?itok=jrzl06eN" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/13880">
美國STANLEY拉尺
</a>
</div>
<div class="views">
點擊︰2,277
</div>
<div class="price">
$
<a href="/node/13880/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-11-10 18:22
</div>
<div class="date">
更新日期:2016-04-08 15:34
</div>
<div class="provider">
<a href="/content/%E6%B8%AF%E5%9F%8E%E4%BA%94%E9%87%91%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
港城五金建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-2 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/18157">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/18157">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/TOOLSET.JPG?itok=qPr1_MlR" width="287"/>
</a>
</div>
<div class="product_title">
<a href="/node/18157">
手工具
</a>
</div>
<div class="views">
點擊︰945
</div>
<div class="price">
$78 / 1件
</div>
<div class="date">
刊登日期:2015-08-01 16:01
</div>
<div class="date">
更新日期:2016-04-08 12:08
</div>
<div class="provider">
<a href="/content/bd-components-ltd">
BD COMPONENTS LTD.
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/22358">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/22358">
<img alt="" height="265" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/1_Varem-Pressure-tanks_0.jpg?itok=dHJcqwi0" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/22358">
壓力缸 : 意大利 Varem Pressure tanks 壓力缸 系列 加壓缸 加壓罐 壓力罐 加壓罐 壓力液貨艙 壓力膨脹罐 系列
</a>
</div>
<div class="views">
點擊︰128
</div>
<div class="price">
$
<a href="/node/22358/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2016-03-14 14:42
</div>
<div class="date">
更新日期:2016-04-08 15:40
</div>
<div class="provider">
<a href="/content/%E6%B3%B3%E6%9D%B0%E6%B3%B5%E8%A1%8C">
泳杰泵行
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-4 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/9143">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/9143">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/P1090840.JPG?itok=TxM-5-Ti" width="287"/>
</a>
</div>
<div class="product_title">
<a href="/node/9143">
乳膠塗層棉手套
</a>
</div>
<div class="views">
點擊︰826
</div>
<div class="price">
$
<a href="/node/9143/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-09-03 13:31
</div>
<div class="date">
更新日期:2016-04-08 10:29
</div>
<div class="provider">
<a href="/content/%E6%BA%96%E8%AA%A0%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
準誠建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-5 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/13871">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/13871">
<img alt="" height="255" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%97%A5%E6%9C%AC%E8%9D%A6%E5%98%9C%E6%B0%B4%E6%B3%B5%E9%89%97.JPG?itok=68-w4WRO" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/13871">
日本蝦嘜水泵鉗
</a>
</div>
<div class="views">
點擊︰887
</div>
<div class="price">
$
<a href="/node/13871/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-11-10 18:08
</div>
<div class="date">
更新日期:2016-04-08 08:27
</div>
<div class="provider">
<a href="/content/%E6%B8%AF%E5%9F%8E%E4%BA%94%E9%87%91%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
港城五金建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-6 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/22524">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/22524">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/B%E7%B4%9A%E5%8F%8D%E5%85%89%E8%A1%A3.jpg?itok=7fWBMqfn" width="285"/>
</a>
</div>
<div class="product_title">
<a href="/node/22524">
反光衣
</a>
</div>
<div class="views">
點擊︰22
</div>
<div class="price">
$12 / 件
</div>
<div class="date">
刊登日期:2016-03-22 12:50
</div>
<div class="date">
更新日期:2016-04-07 04:52
</div>
<div class="provider">
<a href="/content/%E6%81%92%E9%81%94%E8%A3%BD%E5%93%81%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">
恒達製品有限公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-7 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/20914">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/20914">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/1_1osong%204SF%20%E4%B8%8D%E9%8F%BD%E9%8B%BC%E6%BD%9B%E6%B0%B4%E6%B3%B5%E6%B5%A6.jpg?itok=4SEykl-J" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/20914">
科學泵 不鏽鋼潛水泵浦 不銹鋼潛水泵浦 電子式泵浦幫浦 4SF 4SG
</a>
</div>
<div class="views">
點擊︰281
</div>
<div class="price">
$
<a href="/node/20914/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2015-12-21 19:17
</div>
<div class="date">
更新日期:2016-04-08 13:19
</div>
<div class="provider">
<a href="/content/%E9%8C%A6%E8%AA%A0%E5%B7%A5%E6%A5%AD%E8%A8%AD%E5%82%99%E5%85%AC%E5%8F%B8">
錦誠工業設備公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-8 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/20514">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/20514">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/3M%208210.jpg?itok=Y6sU9poo" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/20514">
3M_N95型口罩
</a>
</div>
<div class="views">
點擊︰224
</div>
<div class="price">
$
<a href="/node/20514/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2015-11-30 21:21
</div>
<div class="date">
更新日期:2016-04-07 06:30
</div>
<div class="provider">
<a href="/content/%E8%B6%85%E5%8A%9B%E4%BA%94%E9%87%91">
超力五金
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-9 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/21373">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/21373">
<img alt="" height="353" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/1COMPACT_Filter_S_5565764e68827.png?itok=v9JgdfsF" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/21373">
EMAUX 過濾系統 過濾組合
</a>
</div>
<div class="views">
點擊︰194
</div>
<div class="price">
$
<a href="/node/21373/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2016-01-16 17:27
</div>
<div class="date">
更新日期:2016-04-08 06:16
</div>
<div class="provider">
<a href="/content/%E6%83%A0%E7%9B%88%E7%99%BC%E5%B1%95%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">
惠盈發展有限公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-10 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/17303">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/17303">
<img alt="" height="381" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%B5%B7%E5%80%AB%E9%80%B9%20%E7%A3%81%E5%8A%9B%E9%A9%85%E5%8B%95%E6%B3%B5001.JPG?itok=kYCIAbDq" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/17303">
海倫達 磁力驅動泵
</a>
</div>
<div class="views">
點擊︰610
</div>
<div class="price">
$
<a href="/node/17303/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2015-06-06 18:52
</div>
<div class="date">
更新日期:2016-04-08 13:26
</div>
<div class="provider">
<a href="/content/%E6%83%A0%E7%9B%88%E7%99%BC%E5%B1%95%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">
惠盈發展有限公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-11 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/13907">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/13907">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/IMG-20141111-WA0004.jpg?itok=ACgGI8pB" width="215"/>
</a>
</div>
<div class="product_title">
<a href="/node/13907">
Torque Wrench 磅尺
</a>
</div>
<div class="views">
點擊︰1,449
</div>
<div class="price">
$
<a href="/node/13907/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-11-11 09:57
</div>
<div class="date">
更新日期:2016-04-08 15:11
</div>
<div class="provider">
<a href="/content/%E4%B8%96%E5%85%89%E5%85%AC%E5%8F%B8">
世光公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-12 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/19709">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/19709">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/3M8210.jpg?itok=Hg8b_dJ8" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/19709">
3M 口罩
</a>
</div>
<div class="views">
點擊︰1,916
</div>
<div class="price">
$
<a href="/node/19709/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-10-22 18:18
</div>
<div class="date">
更新日期:2016-04-07 17:00
</div>
<div class="provider">
<a href="/content/%E6%B0%B8%E7%9B%9B%E4%BA%94%E9%87%91%E9%9B%BB%E5%99%A8%E8%B2%A8%E5%80%89%E6%89%B9%E7%99%BC">
永盛五金電器貨倉批發
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-13 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/18756">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/18756">
<img alt="" height="256" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/MH-100A%201.jpg?itok=4boPLFhs" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/18756">
日本日東工器Nitto真空吸附套裝
</a>
</div>
<div class="views">
點擊︰368
</div>
<div class="price">
$
<a href="/node/18756/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2015-08-31 14:24
</div>
<div class="date">
更新日期:2016-04-08 12:24
</div>
<div class="provider">
<a href="/content/%E6%99%82%E8%8C%82%E4%BC%81%E6%A5%AD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">
時茂企業有限公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-14 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/22216">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/22216">
<img alt="" height="215" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/walrus_%E5%95%86%E6%A5%AD%E7%94%A8%E6%B3%B5%E6%B5%A6_1_0.png?itok=st8_pIHd" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/22216">
Walrus 大井泵浦 商業用泵浦系列 (電腦變頻恆壓泵浦/電腦變頻恆壓-交互並列泵浦/壓差式自動加壓泵浦/壓差式交互並列泵浦)
</a>
</div>
<div class="views">
點擊︰111
</div>
<div class="price">
$
<a href="/node/22216/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2016-03-04 18:57
</div>
<div class="date">
更新日期:2016-04-07 19:10
</div>
<div class="provider">
<a href="/content/%E6%B3%B3%E6%9D%B0%E6%B3%B5%E8%A1%8C">
泳杰泵行
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-15 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/9146">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/9146">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/IMG_4891.JPG?itok=OuZIDUXF" width="287"/>
</a>
</div>
<div class="product_title">
<a href="/node/9146">
水鞋
</a>
</div>
<div class="views">
點擊︰1,027
</div>
<div class="price">
$
<a href="/node/9146/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-09-03 13:33
</div>
<div class="date">
更新日期:2016-04-07 21:59
</div>
<div class="provider">
<a href="/content/%E6%BA%96%E8%AA%A0%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
準誠建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-16 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/567">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/567">
<img alt="" height="371" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E7%87%92%E7%84%8A%E6%89%8B%E5%A5%97%20-%20P000138.png?itok=olUD4FXu" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/567">
燒焊手套
</a>
</div>
<div class="views">
點擊︰1,496
</div>
<div class="price">
$
<a href="/node/567/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:02
</div>
<div class="date">
更新日期:2016-04-08 11:11
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-17 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8350">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8350">
<img alt="" height="277" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%B0%B4%E5%96%89%E9%89%97.jpg?itok=ncllIifU" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8350">
水喉鉗
</a>
</div>
<div class="views">
點擊︰2,928
</div>
<div class="price">
$
<a href="/node/8350/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-07-23 13:23
</div>
<div class="date">
更新日期:2016-04-08 09:11
</div>
<div class="provider">
<a href="/content/%E8%8F%AF%E5%8D%93%E4%BA%94%E9%87%91%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8">
華卓五金有限公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-18 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/14406">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/14406">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/Kawanishi_leaflet_Inside.jpg?itok=vwL52zZN" width="274"/>
</a>
</div>
<div class="product_title">
<a href="/node/14406">
日本川西防滑手套
</a>
</div>
<div class="views">
點擊︰1,830
</div>
<div class="price">
$23 / 對
</div>
<div class="date">
刊登日期:2014-12-11 16:34
</div>
<div class="date">
更新日期:2016-04-08 12:00
</div>
<div class="provider">
<a href="/content/%E6%B8%AF%E5%9F%8E%E4%BA%94%E9%87%91%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
港城五金建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-19 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/13881">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/13881">
<img alt="" height="255" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E7%BE%8E%E5%9C%8BSTANLEY%20%208%E5%90%8B%E5%B0%96%E5%92%80%E9%89%97.JPG?itok=CoKsTC6y" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/13881">
美國STANLEY 8吋尖咀鉗
</a>
</div>
<div class="views">
點擊︰982
</div>
<div class="price">
$
<a href="/node/13881/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-11-10 18:23
</div>
<div class="date">
更新日期:2016-04-08 15:27
</div>
<div class="provider">
<a href="/content/%E6%B8%AF%E5%9F%8E%E4%BA%94%E9%87%91%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
港城五金建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-20 views-row-even views-row-last">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/14721">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/14721">
<img alt="" height="255" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/IMG_2864.JPG?itok=60bqf59q" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/14721">
防護眼罩 符合美國安全標準
</a>
</div>
<div class="views">
點擊︰737
</div>
<div class="price">
$
<a href="/node/14721/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2015-01-03 16:03
</div>
<div class="date">
更新日期:2016-04-08 14:55
</div>
<div class="provider">
<a href="/content/%E6%B8%AF%E5%9F%8E%E4%BA%94%E9%87%91%E5%BB%BA%E6%9D%90%E5%85%AC%E5%8F%B8">
港城五金建材公司
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="right_content">
<div class="company_left">
<div class="logo">
<img src="https://www.5metal.com.hk/sites/default/files/styles/company_logo_240/public/KwongYip_Logo_1.jpg?itok=H0rMPsFD">
</img>
</div>
<div class="counter_circle">
<div class="circle view_time">
<span class="title title_time">
瀏覽次數
</span>
<span class="num">
2281
</span>
</div>
<div class="circle bid_time">
<span class="title title_bid_time">
中標(投標)次數
</span>
<span class="num">
0 / 0
</span>
</div>
<div class="circle rate_score">
<span class="title title_rate_score">
客戶評分
</span>
<span class="num">
</span>
</div>
<div class="circle product_total">
<span class="num">
17
</span>
<span class="title title_product_total">
產品數目
</span>
</div>
<div class="circle age">
<span class="num">
744天
</span>
<span class="title title_age">
會員年資
</span>
</div>
</div>
</div>
<div class="company_right">
<div class="node_title">
廣業機器廠
</div>
<div class="company_detail">
<!-- google_ad_section_start -->
<div class="field field-name-field-company-type field-type-taxonomy-term-reference field-label-inline clearfix">
<div class="field-label">
行業類別:
</div>
<div class="field-items">
<div class="field-item even">
五金工具
</div>
<div class="field-item odd">
手工具
</div>
<div class="field-item even">
泵類工具
</div>
<div class="field-item odd">
建築與安全設備
</div>
<div class="field-item even">
個人護理用具
</div>
</div>
</div>
<!-- google_ad_section_end -->
<div class="field field-name-field-contact-method field-type-list-text field-label-inline clearfix">
<div class="field-label">
常用聯絡方法:
</div>
<div class="field-items">
<div class="field-item even">
電話(公司)
</div>
</div>
</div>
<div class="field field-name-field-email field-type-text field-label-inline clearfix">
<div class="field-label">
電郵:
</div>
<div class="field-items">
<div class="field-item even">
kwongyipmetal@yahoo.com.hk
</div>
</div>
</div>
<div class="field field-name-field-company-tel field-type-text field-label-inline clearfix">
<div class="field-label">
電話(公司):
</div>
<div class="field-items">
<div class="field-item even">
23230733 / 27711305
</div>
</div>
</div>
<div class="field field-name-field-company-url field-type-text field-label-inline clearfix">
<div class="field-label">
公司網址:
</div>
<div class="field-items">
<div class="field-item even">
http://www.kwongyip.com
</div>
</div>
</div>
<div class="field field-name-field-distirct field-type-taxonomy-term-reference field-label-inline clearfix">
<div class="field-label">
地區:
</div>
<div class="field-items">
<div class="field-item even">
旺角
</div>
</div>
</div>
<div class="field field-name-field-company-address field-type-text field-label-inline clearfix">
<div class="field-label">
地址:
</div>
<div class="field-items">
<div class="field-item even">
九龍旺角甘霖街12號地下
</div>
</div>
</div>
<div class="field field-name-field-company-fax field-type-text field-label-inline clearfix">
<div class="field-label">
Fax:
</div>
<div class="field-items">
<div class="field-item even">
21914243 / 23854177
</div>
</div>
</div>
<div class="field field-name-field-bid-times field-type-number-integer field-label-inline clearfix">
<div class="field-label">
投標次數:
</div>
<div class="field-items">
<div class="field-item even">
0
</div>
</div>
</div>
<div class="field field-name-field-company-views field-type-number-integer field-label-inline clearfix">
<div class="field-label">
瀏覽次數:
</div>
<div class="field-items">
<div class="field-item even">
2 281
</div>
</div>
</div>
</div>
<div class="company_rating">
</div>
<div class="company_act">
</div>
</div>
<!-- <div class="row">
<div class="tit">公司地址:</div>
<div class="val"></div>
<div class="clearfix"></div>
</div>
<div class="row">
<div class="tit">聯絡方法:</div>
<div class="val"></div>
<div class="clearfix"></div>
</div>
<div class="row">
<div class="tit">電話(公司):</div>
<div class="val"></div>
<div class="clearfix"></div>
</div>
<div class="row">
<div class="tit">電話(手提):</div>
<div class="val"></div>
<div class="clearfix"></div>
</div>
<div class="row rating">
<div class="tit">評價:</div>
<div class="val"></div>
<div class="clearfix"></div>
</div> -->
<div class="clearfix">
</div>
<!--<div class="google_map"><iframe width="760" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src=http://maps.google.com.tw/maps?f=q&hl=zh-TW&geocode=&q=九龍旺角甘霖街12號地下&z=16&output=embed&t=></iframe></div>-->
<!--<div class="google_map"></div>-->
<div id="google_map">
</div>
<div class="disclaimer">
<p>
免責聲明:
<br/>
(1)以上所展示的信息由企業自行提供,內容的真實性、準確性和合法性由發布企業負責,香港五金網對此不承擔任何保證責任。
<br/>
(2)同時我們鄭重提醒各位買/賣家,交易前請詳細核實對方身份,切勿隨意付款或發貨,謹防上當受騙。如發現虛假信息,請向香港五金網舉報。
</p>
</div>
<div class="company_product">
<h2 class="gradient_yellow">
公司產品
</h2>
<div class="related_product_content company_products">
<div class="view view-product-inner view-id-product_inner view-display-id-block_3 view-dom-id-02826bd7a407333c6102a01cc96446ec">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/566">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/566">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%8D%8A%E7%9A%AE%E6%89%8B%E5%A5%97%20-%20P000137.png?itok=fYgbimOt" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/566">
半皮手套
</a>
</div>
<div class="views">
點擊︰1,557
</div>
<div class="price">
$
<a href="/node/566/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:00
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-2 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/570">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/570">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%B0%96%E5%92%80%E9%89%97%20-%20P000220.png?itok=y098VSAh" width="373"/>
</a>
</div>
<div class="product_title">
<a href="/node/570">
尖咀鉗
</a>
</div>
<div class="views">
點擊︰1,282
</div>
<div class="price">
$
<a href="/node/570/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:06
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8687">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8687">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%A2%B3%E6%B0%B4%E9%80%9A.JPG?itok=jGopu01p" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8687">
梳水通
</a>
</div>
<div class="views">
點擊︰723
</div>
<div class="price">
$
<a href="/node/8687/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:31
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-4 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8683">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8683">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/M101%E6%89%B9.JPG?itok=UOnYnI42" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8683">
M101批
</a>
</div>
<div class="views">
點擊︰658
</div>
<div class="price">
$
<a href="/node/8683/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:18
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-5 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/571">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/571">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%96%9C%E5%92%80%E9%89%97%20-%20P000222.png?itok=tmYLMZLI" width="234"/>
</a>
</div>
<div class="product_title">
<a href="/node/571">
斜咀鉗
</a>
</div>
<div class="views">
點擊︰1,020
</div>
<div class="price">
$
<a href="/node/571/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:08
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-6 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8684">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8684">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%A2%B3%E6%B0%B4%E7%B6%B2%E5%96%89.JPG?itok=SfulCTDA" width="287"/>
</a>
</div>
<div class="product_title">
<a href="/node/8684">
梳水網喉
</a>
</div>
<div class="views">
點擊︰1,453
</div>
<div class="price">
$
<a href="/node/8684/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:23
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-7 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/568">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/568">
<img alt="" height="286" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E6%A3%89%E7%B4%97%E6%89%8B%E5%A5%97%20-%20P000139.png?itok=Hvl5BrFm" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/568">
棉紗手套
</a>
</div>
<div class="views">
點擊︰958
</div>
<div class="price">
$
<a href="/node/568/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:04
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-8 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8689">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8689">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%90%84%E6%AC%BE%E9%91%BD%E7%9F%B3%E7%B2%89%E5%92%80.JPG?itok=VMRkZ0gy" width="287"/>
</a>
</div>
<div class="product_title">
<a href="/node/8689">
各款鑽石粉咀
</a>
</div>
<div class="views">
點擊︰772
</div>
<div class="price">
$
<a href="/node/8689/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:49
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-9 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/19748">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/19748">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/T2-101%E9%91%BD%E7%9F%B3%E7%B2%89%E5%92%80%20%28%E9%8A%80%E5%92%80%29.JPG?itok=mAhk9Ag0" width="290"/>
</a>
</div>
<div class="product_title">
<a href="/node/19748">
T2-101鑽石粉咀 (銀咀)
</a>
</div>
<div class="views">
點擊︰245
</div>
<div class="price">
$
<a href="/node/19748/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2015-10-24 10:44
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-10 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8690">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8690">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%90%84%E6%AC%BE%E9%91%BD%E9%A0%AD.JPG?itok=rMZA_Ofg" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8690">
各款鑽頭
</a>
</div>
<div class="views">
點擊︰520
</div>
<div class="price">
$
<a href="/node/8690/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:51
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-11 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8688">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8688">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E9%96%8B%E9%82%8A%E8%86%A0%E6%89%B9.JPG?itok=QaX_5FoC" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8688">
開邊膠批
</a>
</div>
<div class="views">
點擊︰873
</div>
<div class="price">
$
<a href="/node/8688/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:33
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-12 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/569">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/569">
<img alt="" height="383" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%B9%B3%E5%92%80%E9%89%97%20-%20P000219.png?itok=SdSlYtvk" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/569">
平咀鉗
</a>
</div>
<div class="views">
點擊︰1,172
</div>
<div class="price">
$
<a href="/node/569/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:05
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-13 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/565">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/565">
<img alt="" height="265" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/KC-168_pic.png?itok=BknIQ0CV" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/565">
KC-168型注漿泵
</a>
</div>
<div class="views">
點擊︰729
</div>
<div class="price">
$
<a href="/node/565/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 09:57
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-14 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8686">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8686">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%8C%85%E8%86%A0%E9%80%9A.JPG?itok=GT7ERTL7" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8686">
包膠通
</a>
</div>
<div class="views">
點擊︰925
</div>
<div class="price">
$
<a href="/node/8686/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:29
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-15 views-row-odd">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/564">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/564">
<img alt="" height="313" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/KC-45_pic.png?itok=I2TUL0qw" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/564">
KC-45型注漿泵
</a>
</div>
<div class="views">
點擊︰692
</div>
<div class="price">
$
<a href="/node/564/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 09:53
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-16 views-row-even">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/567">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/567">
<img alt="" height="371" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E7%87%92%E7%84%8A%E6%89%8B%E5%A5%97%20-%20P000138.png?itok=olUD4FXu" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/567">
燒焊手套
</a>
</div>
<div class="views">
點擊︰1,496
</div>
<div class="price">
$
<a href="/node/567/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-03-26 10:02
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
<div class="views-row views-row-17 views-row-odd views-row-last">
<div class="views-field views-field-nothing">
<span class="field-content">
<div class="product">
<div class="product_c">
<div class="over_tips">
<a href="/node/8685">
按入產品詳情
</a>
</div>
<div class="product_thumb">
<a href="/node/8685">
<img alt="" height="287" src="https://www.5metal.com.hk/sites/default/files/styles/product_list/public/%E5%B8%86%E5%B8%83%E5%96%89.JPG?itok=4CCtzfRP" width="383"/>
</a>
</div>
<div class="product_title">
<a href="/node/8685">
帆布喉
</a>
</div>
<div class="views">
點擊︰1,146
</div>
<div class="price">
$
<a href="/node/8685/comment">
按此查詢
</a>
</div>
<div class="date">
刊登日期:2014-08-08 10:27
</div>
<div class="provider">
<a href="/content/%E5%BB%A3%E6%A5%AD%E6%A9%9F%E5%99%A8%E5%BB%A0">
廣業機器廠
</a>
</div>
</div>
<div class="pfoot">
</div>
</div>
</span>
</div>
</div>
</div>
</div>
<div class="clearfix">
</div>
</div>
</div>
</div>
<!-- right_content -->
<div class="clearfix">
</div>
</div>
</div>
<script>
jQuery(document).ready(function(){
// Get each div
jQuery('.field-name-field-company-url .field-item').each(function(){
// Get the content
var str = $(this).text();
//str=str.replace("www.","");
str=str.replace("http://","");
str=str.replace("https://","");
str="http://" + str;
//var str_tmp=str;
// Set the regex string
//var regex = /([-\w\.]+)+(:\d+)?(\/([\w\/_\.]*(\?\S+)?)?)?/ig
// Replace plain text links by hyperlinks
//var replaced_text = str.replace(regex, "<a href='http://$1' target='_blank'>$1</a>");
jQuery(this).html('<a target="_blank" href="' + str + '">' + str +'</a>');
});
var height=jQuery(".right_content").height();
//alert(height);
$(".fea_company").css("height",height);
$(".fea_company").kxbdMarquee({direction:"up" , scrollDelay:50});
});
//$(".fea_company").kxbdMarquee({direction:"up" , scrollDelay:50});
</script>
</div>
</div>
</div>
</div>
<div id="footer">
<ul class="footer_nav">
<li>
<a class="gradient_yellow" href="/contact">
聯絡我們
</a>
</li>
</ul>
<div class="clear">
</div>
<div class="terms">
</div>
</div>
<!--end of footer-->
<div class="footer_banner">
<div class="region region-home-bottom-banner">
<div class="block block-block clearfix" id="block-block-20">
<div class="content">
<div id="container" style="width:990; height:200;">
<div id="sidebar_left" style="float:left; width:200px;">
本網站系統供應商:
<br/>
<a href="http://www.01power.net/" target="_blank">
<img alt="Your Internet Architect" src="/sites/default/files/u162/01power-logo.png"/>
</a>
</div>
<div id="sidebar_right" style="float:right; width:200px; text-align:right;">
本網站設計供應商:
<br/>
<a href="http://www.gmd.hk/" target="_blank">
<img alt="Great Moment, Resplendent." src="/sites/default/files/u162/gmd-logo.jpg"/>
</a>
</div>
<div id="content" style="text-align:center; margin-left:200px; margin-right:200px;">
<br/>
<h3>
<span>
關注我們
</span>
</h3>
<span>
<a href="https://www.facebook.com/HK5metal" onmouseout="this.style.opacity= 1;this.style.filter=alpha(opacity=100)" onmouseover="this.style.opacity= .8;this.style.filter=alpha(opacity=80)" style="margin-right: 5px;" target="_blank" title="Connect our Facebook page">
<img alt="Facebook Icon" height="69px;" src="/sites/default/files/SMO_pic/Metal%20Facebook%20Icon.JPG" width="64px;"/>
</a>
<a href="https://twitter.com/HK5metal" onmouseout="this.style.opacity= 1;this.style.filter=alpha(opacity=100)" onmouseover="this.style.opacity= .8;this.style.filter=alpha(opacity=80)" style="margin-right: 5px;" target="_blank" title="Follow our Twitter">
<img alt="Twitter Icon" height="69px;" src="/sites/default/files/SMO_pic/Metal%20Twitter%20Icon.JPG" width="64px;"/>
</a>
<a href="https://www.google.com/+5metalHk" onmouseout="this.style.opacity= 1;this.style.filter=alpha(opacity=100)" onmouseover="this.style.opacity= .8;this.style.filter=alpha(opacity=80)" style="margin-right: 5px;" target="_blank" title="Circle our Google+ page">
<img alt="Google+ Icon" height="69px;" src="/sites/default/files/SMO_pic/Metal%20GooglePlus%20Icon.JPG" width="64px;"/>
</a>
</span>
<br/>
<br/>
<b>
© 2014-2016 香港五金網 - 版權所有
</b>
</div>
</div>
</div>
</div>
</div>
</div>
</link>
</div>
</div>
</body>
</html>
The section we're interested in:
In [12]:
contact_info_soup = sample_contact_page_soup_design1.select_one('.company_right')
print contact_info_soup.prettify()
<div class="company_right">
<div class="node_title">
廣業機器廠
</div>
<div class="company_detail">
<!-- google_ad_section_start -->
<div class="field field-name-field-company-type field-type-taxonomy-term-reference field-label-inline clearfix">
<div class="field-label">
行業類別:
</div>
<div class="field-items">
<div class="field-item even">
五金工具
</div>
<div class="field-item odd">
手工具
</div>
<div class="field-item even">
泵類工具
</div>
<div class="field-item odd">
建築與安全設備
</div>
<div class="field-item even">
個人護理用具
</div>
</div>
</div>
<!-- google_ad_section_end -->
<div class="field field-name-field-contact-method field-type-list-text field-label-inline clearfix">
<div class="field-label">
常用聯絡方法:
</div>
<div class="field-items">
<div class="field-item even">
電話(公司)
</div>
</div>
</div>
<div class="field field-name-field-email field-type-text field-label-inline clearfix">
<div class="field-label">
電郵:
</div>
<div class="field-items">
<div class="field-item even">
kwongyipmetal@yahoo.com.hk
</div>
</div>
</div>
<div class="field field-name-field-company-tel field-type-text field-label-inline clearfix">
<div class="field-label">
電話(公司):
</div>
<div class="field-items">
<div class="field-item even">
23230733 / 27711305
</div>
</div>
</div>
<div class="field field-name-field-company-url field-type-text field-label-inline clearfix">
<div class="field-label">
公司網址:
</div>
<div class="field-items">
<div class="field-item even">
http://www.kwongyip.com
</div>
</div>
</div>
<div class="field field-name-field-distirct field-type-taxonomy-term-reference field-label-inline clearfix">
<div class="field-label">
地區:
</div>
<div class="field-items">
<div class="field-item even">
旺角
</div>
</div>
</div>
<div class="field field-name-field-company-address field-type-text field-label-inline clearfix">
<div class="field-label">
地址:
</div>
<div class="field-items">
<div class="field-item even">
九龍旺角甘霖街12號地下
</div>
</div>
</div>
<div class="field field-name-field-company-fax field-type-text field-label-inline clearfix">
<div class="field-label">
Fax:
</div>
<div class="field-items">
<div class="field-item even">
21914243 / 23854177
</div>
</div>
</div>
<div class="field field-name-field-bid-times field-type-number-integer field-label-inline clearfix">
<div class="field-label">
投標次數:
</div>
<div class="field-items">
<div class="field-item even">
0
</div>
</div>
</div>
<div class="field field-name-field-company-views field-type-number-integer field-label-inline clearfix">
<div class="field-label">
瀏覽次數:
</div>
<div class="field-items">
<div class="field-item even">
2 281
</div>
</div>
</div>
</div>
<div class="company_rating">
</div>
<div class="company_act">
</div>
</div>
In [13]:
fields_and_selectors = [
( 'company_name', '.node_title'),
('address', '.field-name-field-company-address .field-item'),
('contact_person', '.field-name-field-contact-person .field-item'),
('contact_number', '.field-name-field-company-tel .field-item'),
('mobile_phone', '.field-name-field-mobile .field-item'),
('fax', '.field-name-field-company-fax .field-item'),
('email', '.field-name-field-email .field-item'),
('company_website', '.field-name-field-company-url .field-item')
]
values = [(value and value.getText().strip()) for value in [contact_info_soup.select_one(x[1]) for x in fields_and_selectors]]
company_info = pd.DataFrame(data={'values': values}, index=[field for (field, css_selector) in fields_and_selectors])
print company_info
values
company_name 廣業機器廠
address 九龍旺角甘霖街12號地下
contact_person None
contact_number 23230733 / 27711305
mobile_phone None
fax 21914243 / 23854177
email kwongyipmetal@yahoo.com.hk
company_website http://www.kwongyip.com
Combining all the process above, we can create a function that given a detail page url, return the company's info:
In [14]:
def get_company_info_from_soup_design1(contact_page_soup):
contact_info_soup = contact_page_soup.select_one('.company_right')
fields_and_selectors = [
( 'company_name', '.node_title'),
('address', '.field-name-field-company-address .field-item'),
('contact_person', '.field-name-field-contact-person .field-item'),
('contact_number', '.field-name-field-company-tel .field-item'),
('mobile_phone', '.field-name-field-mobile .field-item'),
('fax', '.field-name-field-company-fax .field-item'),
('email', '.field-name-field-email .field-item'),
('company_website', '.field-name-field-company-url .field-item')
]
fields = [field for (field, css_selector) in fields_and_selectors]
values = [(value and value.getText().strip()) for value in [contact_info_soup.select_one(x[1]) for x in fields_and_selectors]]
return {field:value for (field, value) in zip(fields, values)}
test run :) :
In [15]:
test_run_result = get_company_info_from_soup_design1(get_contact_page_soup_from_detail_page_url(detail_page_url_design1))
print(test_run_result)
{'contact_number': u'23230733 / 27711305', 'mobile_phone': None, 'fax': u'21914243 / 23854177', 'company_website': u'http://www.kwongyip.com', 'company_name': u'\u5ee3\u696d\u6a5f\u5668\u5ee0', 'address': u'\u4e5d\u9f8d\u65fa\u89d2\u7518\u9716\u885712\u865f\u5730\u4e0b', 'contact_person': None, 'email': u'kwongyipmetal@yahoo.com.hk'}
In [16]:
detail_page_url_design2 = 'http://www.5metal.com.hk/node/13112'
sample_contact_page_soup_design2 = get_contact_page_soup_from_detail_page_url(detail_page_url_design2)
print(sample_contact_page_soup_design2.prettify())
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html dir="ltr" version="XHTML+RDFa 1.0" xml:lang="zh-hant" xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://www.w3.org/1999/xhtml/vocab">
<meta content="noindex" name="robots">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link href="https://www.5metal.com.hk/sites/default/files/img_watermark_0_0.png" rel="shortcut icon" type="image/png"/>
<meta content="Drupal 7 (http://drupal.org)" name="Generator"/>
<title>
港城五金建材公司 - 聯絡我們 | 香港五金網
</title>
<meta content="" http-equiv="Content-Security-Policy">
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/modules/system/system.base.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/system/system.menus.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/system/system.messages.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/system/system.theme.css?o58yvz");
</style>
<style media="screen" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/modules/views_slideshow/views_slideshow.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/modules/simplenews/simplenews.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/comment/comment.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/date/date_api/date.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/date/date_popup/themes/datepicker.1.7.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/date/date_repeat_field/date_repeat_field.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/field/theme/field.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/modules/node/node.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/search/search.css?o58yvz");
@import url("https://www.5metal.com.hk/modules/user/user.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/youtube/css/youtube.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/views/css/views.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/modules/ckeditor/ckeditor.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/ctools/css/ctools.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/panels/css/panels.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.css?o58yvz");
</style>
<style media="all" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/themes/metal/style.css?o58yvz");
@import url("https://www.5metal.com.hk/sites/all/themes/metal/kenny.css?o58yvz");
</style>
<style media="print" type="text/css">
@import url("https://www.5metal.com.hk/sites/all/themes/metal/print.css?o58yvz");
</style>
<!--[if lt IE 7]>
<link type="text/css" rel="stylesheet" href="https://www.5metal.com.hk/sites/all/themes/metal/fix-ie.css?o58yvz" media="all" />
<![endif]-->
<script type="text/javascript">
<!--//--><![CDATA[//><!--
window.google_analytics_uacct = "UA-51952282-1";
//--><!]]>
</script>
<script src="https://www.5metal.com.hk/misc/jquery.js?v=1.4.4" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/misc/jquery.once.js?v=1.2" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/misc/drupal.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/views_slideshow/js/views_slideshow.js?v=1.0" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/default/files/languages/zh-hant_qpb8R9HcrzJcjgbZ3oTrKYCrCf0GGxhIf3t9k8gG374.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/adsense/contrib/adsense_click/adsense_click.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/libraries/jquery.cycle/jquery.cycle.all.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/js/views_slideshow_cycle.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/modules/google_analytics/googleanalytics.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/themes/metal/jquery-1.8.1.min.js?o58yvz" type="text/javascript">
</script>
<script src="https://www.5metal.com.hk/sites/all/themes/metal/js/scrollpagination.js?o58yvz" type="text/javascript">
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"metal","theme_token":"nyojJGjG-f12rD5Hy4lzjtUY-z5MndxBMmlKQlNyivY","js":{"0":1,"1":1,"misc\/jquery.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/views_slideshow\/js\/views_slideshow.js":1,"public:\/\/languages\/zh-hant_qpb8R9HcrzJcjgbZ3oTrKYCrCf0GGxhIf3t9k8gG374.js":1,"sites\/all\/modules\/adsense\/contrib\/adsense_click\/adsense_click.js":1,"sites\/all\/libraries\/jquery.cycle\/jquery.cycle.all.js":1,"sites\/all\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/js\/views_slideshow_cycle.js":1,"sites\/all\/modules\/google_analytics\/googleanalytics.js":1,"sites\/all\/themes\/metal\/jquery-1.8.1.min.js":1,"sites\/all\/themes\/metal\/js\/scrollpagination.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"sites\/all\/modules\/views_slideshow\/views_slideshow.css":1,"sites\/all\/modules\/simplenews\/simplenews.css":1,"modules\/comment\/comment.css":1,"sites\/all\/modules\/date\/date_api\/date.css":1,"sites\/all\/modules\/date\/date_popup\/themes\/datepicker.1.7.css":1,"sites\/all\/modules\/date\/date_repeat_field\/date_repeat_field.css":1,"modules\/field\/theme\/field.css":1,"sites\/all\/modules\/find_content\/find_content.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/youtube\/css\/youtube.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ckeditor\/ckeditor.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/panels\/css\/panels.css":1,"sites\/all\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/views_slideshow_cycle.css":1,"sites\/all\/themes\/metal\/style.css":1,"sites\/all\/themes\/metal\/kenny.css":1,"sites\/all\/themes\/metal\/print.css":1,"sites\/all\/themes\/metal\/fix-ie.css":1}},"viewsSlideshow":{"home_slide_show-block":{"methods":{"goToSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"nextSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"pause":["viewsSlideshowControls","viewsSlideshowCycle"],"play":["viewsSlideshowControls","viewsSlideshowCycle"],"previousSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"transitionBegin":["viewsSlideshowPager","viewsSlideshowSlideCounter"],"transitionEnd":[]},"paused":0}},"viewsSlideshowPager":{"home_slide_show-block":{"bottom":{"type":"viewsSlideshowPagerFields"}}},"viewsSlideshowPagerFields":{"home_slide_show-block":{"bottom":{"activatePauseOnHover":0}}},"viewsSlideshowCycle":{"#views_slideshow_cycle_main_home_slide_show-block":{"num_divs":7,"id_prefix":"#views_slideshow_cycle_main_","div_prefix":"#views_slideshow_cycle_div_","vss_id":"home_slide_show-block","effect":"fade","transition_advanced":0,"timeout":5000,"speed":700,"delay":0,"sync":1,"random":0,"pause":1,"pause_on_click":0,"action_advanced":0,"start_paused":0,"remember_slide":0,"remember_slide_days":1,"pause_in_middle":0,"pause_when_hidden":0,"pause_when_hidden_type":"full","amount_allowed_visible":"","nowrap":0,"fixed_height":1,"items_per_slide":1,"wait_for_image_load":1,"wait_for_image_load_timeout":3000,"cleartype":0,"cleartypenobg":0,"advanced_options":"{}"}},"hide_submit":{"hide_submit_status":true,"hide_submit_method":"disable","hide_submit_css":"hide-submit-disable","hide_submit_abtext":"","hide_submit_atext":"","hide_submit_hide_css":"hide-submit-processing","hide_submit_hide_text":"Processing...","hide_submit_hide_fx":0,"hide_submit_reset_time":9000},"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"}});
//--><!]]>
</script>
</meta>
</meta>
</head>
<body class="html not-front not-logged-in no-sidebars page-c page-c- page-c-13112 page-c-contact fluid-width">
<div id="wrapper">
<div id="skip-link">
<a class="element-invisible element-focusable" href="#main-content">
移至主內容
</a>
</div>
<script charset="utf-8" src="/sites/all/themes/metal/js/jquery.scrollTo-min.js" type="text/javascript">
</script>
<script src="/sites/all/themes/metal/js/jquery-1.9.1.min.js" type="text/javascript">
</script>
<script src="/sites/all/libraries/colorbox/jquery.colorbox-min.js" type="text/javascript">
</script>
<link href="/sites/all/libraries/colorbox/example3/colorbox.css" rel="stylesheet"/>
<script>
var nid = "13112";
$(document).ready(function(){
$(".cp-search-input").keyup(function (e) {
if (e.keyCode == 13) {
cp_search();
}
});
$(".colorbox").colorbox({iframe:true, width:"90%", height:"90%"});
});
function cp_search(){
var keyword = $(".cp-search-input").val();
if(!keyword){
document.location = "/c/"+nid+"/product";
//alert("請先輸入您要搜尋的關鍵字");
//$(".cp-search-input").focus();
//return false;
}else{
var url = "/c/"+nid+"/product?combine="+keyword;
document.location = url;
}
}
</script>
<link href="/sites/all/themes/metal/company/common.css" rel="stylesheet"/>
<link href="/sites/all/themes/metal/company/theme07/style.css" rel="stylesheet"/>
<div id="cp-wrapper">
<div id="cp-sidebar">
<div id="cp-sidebar-nav">
</div>
</div>
<div id="cp-rightside">
<div id="cp-header">
<div class="cp-header-left">
<div class="cp-logo">
<img alt="港城五金建材公司" src="https://www.5metal.com.hk/sites/default/files/styles/thumbnail/public/KwongShingHW%20Capture%20Logo.PNG?itok=mSbNFtry" title="港城五金建材公司">
</img>
</div>
<div class="cp-name">
港城五金建材公司
</div>
<div class="clearfix">
</div>
</div>
<div class="cp-header-right">
<div class="top-info">
<span class="info">
<a href="/">
回香港五金網首頁
</a>
</span>
<span class="info">
<a href="/user">
會員登入
</a>
</span>
<!-- <span class="info">
成功交易 <span class="trade_amount">0</span> 次
</span> -->
</div>
<div class="top-search">
<input class="cp-search-input" name="q" placeholder="關鍵字" type="text" value="">
<input class="cp-search-btn" onclick="cp_search();" type="button" value="搜尋">
<div class="clearfix">
</div>
</input>
</input>
</div>
</div>
<!-- cp-header-right -->
<div class="clearfix">
</div>
</div>
<!--end of cp-header -->
<div id="cp-nav">
<ul class="nav">
<li>
<a href="/kwongshing">
<span>
首頁
</span>
</a>
</li>
<li>
<a href="/kwongshing/about">
<span>
公司介紹
</span>
</a>
</li>
<li>
<a href="/kwongshing/product">
<span>
產品介紹
</span>
</a>
</li>
<li>
<a href="/kwongshing/contact">
<span>
聯絡我們
</span>
</a>
</li>
</ul>
<!-- <div class="welcome">歡迎您</div> -->
</div>
<!-- cp-nav -->
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp">
</script>
<script>
function initialize() {
var myLatlng = new google.maps.LatLng(22.329115,114.1661994);
var mapOptions = {
zoom: 18,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById('google_map'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Hello World!'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="cp-content">
<div class="cp-box cp-contact">
<h3 class="head">
聯絡我們
</h3>
<div class="cp-box-content">
<div class="row company_name">
<span class="val">
港城五金建材公司
</span>
</div>
<div class="row">
<label>
地址:
</label>
<span class="val">
九龍深水埗福榮街15號地下
</span>
</div>
<div class="row">
<label>
聯絡人:
</label>
<span class="val">
余小姐
</span>
</div>
<div class="row">
<label>
電話(公司):
</label>
<span class="val">
2763 0844
</span>
</div>
<div class="row">
<label>
電話(手提):
</label>
<span class="val">
</span>
</div>
<div class="row">
<label>
傳真:
</label>
<span class="val">
26433381
</span>
</div>
<div class="row">
<label>
電郵:
</label>
<span class="val">
<a href="mailto:info@kshw.com.hk">
info@kshw.com.hk
</a>
</span>
</div>
<div class="row">
<label>
網址:
</label>
<span class="val">
<a href="http://www.5metal.com.hk/kwongshing" target="_blank">
http://www.5metal.com.hk/kwongshing
</a>
</span>
</div>
</div>
</div>
<!-- cp-contact -->
</div>
<!--<div class="google_map"><iframe width="760" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src=http://maps.google.com.tw/maps?f=q&hl=zh-TW&geocode=&q=九龍深水埗福榮街15號地下&z=16&output=embed&t=></iframe></div>-->
<!--<div class="google_map"></div>-->
<div id="google_map">
</div>
</div>
<!-- END OF RIGHTSIDE-->
<div class="clearfix">
</div>
</div>
</div>
<!--END OF WRAPPER-->
<div id="cp-footer">
<div class="cp-footer-wrapper">
<a class="fivemetal_logo" href="/" title="香港五金網">
</a>
<div class="clearfix">
</div>
</div>
</div>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var _gaq = _gaq || [];_gaq.push(["_setAccount", "UA-51952282-1"]);_gaq.push(["_trackPageview"]);(function() {var ga = document.createElement("script");ga.type = "text/javascript";ga.async = true;ga.src = ("https:" == document.location.protocol ? "https://" : "http://") + "stats.g.doubleclick.net/dc.js";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(ga, s);})();
//--><!]]>
</script>
</body>
</html>
The section we're interested in:
In [17]:
contact_info_soup = sample_contact_page_soup_design2.select_one('.cp-contact .cp-box-content')
print contact_info_soup.prettify()
<div class="cp-box-content">
<div class="row company_name">
<span class="val">
港城五金建材公司
</span>
</div>
<div class="row">
<label>
地址:
</label>
<span class="val">
九龍深水埗福榮街15號地下
</span>
</div>
<div class="row">
<label>
聯絡人:
</label>
<span class="val">
余小姐
</span>
</div>
<div class="row">
<label>
電話(公司):
</label>
<span class="val">
2763 0844
</span>
</div>
<div class="row">
<label>
電話(手提):
</label>
<span class="val">
</span>
</div>
<div class="row">
<label>
傳真:
</label>
<span class="val">
26433381
</span>
</div>
<div class="row">
<label>
電郵:
</label>
<span class="val">
<a href="mailto:info@kshw.com.hk">
info@kshw.com.hk
</a>
</span>
</div>
<div class="row">
<label>
網址:
</label>
<span class="val">
<a href="http://www.5metal.com.hk/kwongshing" target="_blank">
http://www.5metal.com.hk/kwongshing
</a>
</span>
</div>
</div>
In [18]:
contact_info_soup = sample_contact_page_soup_design2.select_one('.cp-contact .cp-box-content')
fields = ['company_name', 'address', 'contact_person', 'contact_number', 'mobile_phone', 'fax', 'email', 'company_website']
values = [contact_info_soup.select_one('.row.company_name' + ' + .row' * i + ' .val').getText().strip() for i in xrange(len(fields))]
{field:value for (field, value) in zip(fields, values)}
Out[18]:
{'address': u'\u4e5d\u9f8d\u6df1\u6c34\u57d7\u798f\u69ae\u885715\u865f\u5730\u4e0b',
'company_name': u'\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8',
'company_website': u'http://www.5metal.com.hk/kwongshing',
'contact_number': u'2763 0844',
'contact_person': u'\u4f59\u5c0f\u59d0',
'email': u'info@kshw.com.hk',
'fax': u'26433381',
'mobile_phone': u''}
Scraping function for design 2
In [19]:
def get_company_info_from_soup_design2(contact_page_soup):
contact_info_soup = contact_page_soup.select_one('.cp-contact .cp-box-content')
fields = ['company_name', 'address', 'contact_person', 'contact_number', 'mobile_phone', 'fax', 'email', 'company_website']
values = [contact_info_soup.select_one('.row.company_name' + ' + .row' * i + ' .val').getText().strip() for i in xrange(len(fields))]
return {field:value for (field, value) in zip(fields, values)}
test run:
In [20]:
test_run_result = get_company_info_from_soup_design2(get_contact_page_soup_from_detail_page_url(detail_page_url_design2))
print(test_run_result)
{'contact_number': u'2763 0844', 'mobile_phone': u'', 'fax': u'26433381', 'company_website': u'http://www.5metal.com.hk/kwongshing', 'company_name': u'\u6e2f\u57ce\u4e94\u91d1\u5efa\u6750\u516c\u53f8', 'address': u'\u4e5d\u9f8d\u6df1\u6c34\u57d7\u798f\u69ae\u885715\u865f\u5730\u4e0b', 'contact_person': u'\u4f59\u5c0f\u59d0', 'email': u'info@kshw.com.hk'}
In [21]:
final_scraped_data = scraped_data.copy()
In [22]:
n = final_scraped_data.shape[0]
start_index = 0
end_index = n
print('%d detail pages to scrape from' % (end_index - start_index))
for i in xrange(start_index, end_index):
url_to_scrape_from = final_scraped_data.iloc[i]['detail_page_url']
print('[%4d/%4d] scraping url: %s' % (i, n, url_to_scrape_from))
try:
contact_page_soup = get_contact_page_soup_from_detail_page_url(url_to_scrape_from)
is_design1 = (contact_page_soup.select_one('.company_right') is not None)
if is_design1:
company_info = get_company_info_from_soup_design1(contact_page_soup)
else:
company_info = get_company_info_from_soup_design2(contact_page_soup)
for col in final_scraped_data.columns:
if col is not 'detail_page_url':
final_scraped_data[col].iloc[i] = company_info[col]
except Exception:
print('there was an exception when scraping %dth url: %s' % (i, url_to_scrape_from))
360 detail pages to scrape from
[ 0/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 1/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 2/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 3/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 4/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 5/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 6/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 7/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 8/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 9/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 10/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 11/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 12/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 13/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 14/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 15/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 16/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 17/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 18/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 19/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 20/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 21/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 22/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 23/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 24/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 25/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 26/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 27/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 28/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 29/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 30/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 31/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 32/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 33/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 34/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 35/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 36/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 37/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 38/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 39/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 40/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 41/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 42/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 43/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 44/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 45/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 46/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 47/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 48/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 49/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 50/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 51/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 52/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 53/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 54/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 55/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 56/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 57/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 58/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 59/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 60/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 61/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 62/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 63/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 64/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 65/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 66/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 67/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 68/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 69/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 70/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 71/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 72/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 73/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 74/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 75/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 76/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 77/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 78/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 79/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 80/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 81/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 82/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 83/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 84/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 85/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 86/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 87/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 88/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 89/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 90/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 91/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 92/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 93/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 94/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 95/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 96/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 97/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 98/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 99/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 100/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 101/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 102/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 103/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 104/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 105/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 106/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 107/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 108/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 109/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 110/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 111/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 112/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 113/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 114/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 115/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 116/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 117/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 118/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 119/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 120/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 121/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 122/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 123/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 124/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 125/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 126/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 127/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 128/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 129/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 130/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 131/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 132/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 133/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 134/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 135/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 136/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 137/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 138/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 139/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 140/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 141/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 142/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 143/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 144/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 145/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 146/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 147/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 148/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 149/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 150/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 151/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 152/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 153/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 154/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 155/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 156/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 157/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 158/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 159/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 160/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 161/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 162/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 163/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 164/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 165/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 166/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 167/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 168/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 169/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 170/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 171/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 172/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 173/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 174/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 175/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 176/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 177/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 178/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 179/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 180/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 181/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 182/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 183/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 184/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 185/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 186/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 187/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 188/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 189/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 190/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 191/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 192/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 193/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 194/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 195/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 196/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 197/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 198/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 199/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 200/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 201/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 202/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 203/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 204/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 205/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 206/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 207/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 208/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 209/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 210/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 211/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 212/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 213/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 214/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 215/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 216/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 217/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 218/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 219/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 220/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 221/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 222/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 223/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 224/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 225/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 226/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 227/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 228/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 229/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 230/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 231/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 232/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 233/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 234/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 235/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 236/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 237/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 238/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 239/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 240/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 241/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 242/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 243/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 244/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 245/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 246/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 247/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 248/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 249/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 250/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 251/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 252/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 253/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 254/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 255/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 256/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 257/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 258/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 259/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 260/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 261/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 262/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 263/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 264/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 265/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 266/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 267/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 268/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 269/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 270/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 271/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 272/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 273/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 274/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 275/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 276/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 277/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 278/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 279/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 280/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 281/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 282/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 283/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 284/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 285/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 286/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 287/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 288/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 289/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 290/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 291/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 292/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 293/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 294/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 295/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 296/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 297/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 298/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 299/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 300/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 301/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 302/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 303/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 304/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 305/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 306/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 307/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 308/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 309/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 310/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 311/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 312/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 313/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 314/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 315/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 316/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 317/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 318/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 319/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 320/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 321/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 322/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 323/ 360] scraping url: http://www.5metal.com.hk/node/3516
[ 324/ 360] scraping url: http://www.5metal.com.hk/node/13112
[ 325/ 360] scraping url: http://www.5metal.com.hk/node/1
[ 326/ 360] scraping url: http://www.5metal.com.hk/node/3652
[ 327/ 360] scraping url: http://www.5metal.com.hk/node/149
[ 328/ 360] scraping url: http://www.5metal.com.hk/node/15998
[ 329/ 360] scraping url: http://www.5metal.com.hk/node/3563
[ 330/ 360] scraping url: http://www.5metal.com.hk/node/13379
[ 331/ 360] scraping url: http://www.5metal.com.hk/node/8507
[ 332/ 360] scraping url: http://www.5metal.com.hk/node/3568
[ 333/ 360] scraping url: http://www.5metal.com.hk/node/3705
[ 334/ 360] scraping url: http://www.5metal.com.hk/node/18680
[ 335/ 360] scraping url: http://www.5metal.com.hk/node/5334
[ 336/ 360] scraping url: http://www.5metal.com.hk/node/14179
[ 337/ 360] scraping url: http://www.5metal.com.hk/node/3732
[ 338/ 360] scraping url: http://www.5metal.com.hk/node/8620
[ 339/ 360] scraping url: http://www.5metal.com.hk/node/5481
[ 340/ 360] scraping url: http://www.5metal.com.hk/node/3779
[ 341/ 360] scraping url: http://www.5metal.com.hk/node/7880
[ 342/ 360] scraping url: http://www.5metal.com.hk/node/3532
[ 343/ 360] scraping url: http://www.5metal.com.hk/node/16443
[ 344/ 360] scraping url: http://www.5metal.com.hk/node/3504
[ 345/ 360] scraping url: http://www.5metal.com.hk/node/3511
[ 346/ 360] scraping url: http://www.5metal.com.hk/node/13405
[ 347/ 360] scraping url: http://www.5metal.com.hk/node/3674
[ 348/ 360] scraping url: http://www.5metal.com.hk/node/3667
[ 349/ 360] scraping url: http://www.5metal.com.hk/node/3834
[ 350/ 360] scraping url: http://www.5metal.com.hk/node/562
[ 351/ 360] scraping url: http://www.5metal.com.hk/node/3785
[ 352/ 360] scraping url: http://www.5metal.com.hk/node/6669
[ 353/ 360] scraping url: http://www.5metal.com.hk/node/8260
[ 354/ 360] scraping url: http://www.5metal.com.hk/node/15599
[ 355/ 360] scraping url: http://www.5metal.com.hk/node/3835
[ 356/ 360] scraping url: http://www.5metal.com.hk/node/4079
[ 357/ 360] scraping url: http://www.5metal.com.hk/node/17032
[ 358/ 360] scraping url: http://www.5metal.com.hk/node/3721
[ 359/ 360] scraping url: http://www.5metal.com.hk/node/3516
In [23]:
final_scraped_data
Out[23]:
detail_page_url
address
company_name
company_website
contact_number
contact_person
fax
email
mobile_phone
0
http://www.5metal.com.hk/node/13112
九龍深水埗福榮街15號地下
港城五金建材公司
http://www.5metal.com.hk/kwongshing
2763 0844
余小姐
26433381
info@kshw.com.hk
1
http://www.5metal.com.hk/node/1
香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口)
李維記(寶源)五金工程
http://www.lwkpy.com.hk/
34223539
Ben Lee
34223790
leewaikee01@gmail.com
94228002
2
http://www.5metal.com.hk/node/3652
九龍旺角新填地街461B號地下
同利號
http://kwlaser.net/
23949778
張生
23949773
winwinco@hotmail.com
3
http://www.5metal.com.hk/node/149
新界元朗大旗嶺737號 (大棠路加德士油站對面)
萬昌五金建材有限公司
http://www.man-cheong.com.hk/
24783868
李先生
24747057
jacksonli@mcmhk.com
4
http://www.5metal.com.hk/node/15998
新界火炭桂地街10號華麗工業中心10樓9室
津滙貿易公司
Sarah Chan
jinhui11115@gmail.com
54482368
5
http://www.5metal.com.hk/node/3563
九龍旺角甘霖街 29 號地下
興發五金(香港)有限公司
http://www.5metal.com.hk/hingfatmetal
23843218 , 23843216
吳永裕,何卓怡,麥浩倫
23885774
hingfatmetal@hotmail.com
6
http://www.5metal.com.hk/node/13379
九龍觀塘偉業街169號中懋工業大廈B座3樓2室
建安五金
http://5metal.com.hk/kinonmetalware
23448857
林小姐
27934747
kinonmetalware@gmail.com
97850311
7
http://www.5metal.com.hk/node/8507
九龍青山道552號地下A舖
永盛五金電器貨倉批發
27851583
Kevin Hui
27448978
huikinfukhk@yahoo.com.hk
8
http://www.5metal.com.hk/node/3568
香港九龍上海街359號地下
光輝鋼竹蒸籠厨具
https://facebook.com/kwongfai275/
27809980 , 27826050
梁月珍
27826145
kwongfai275@gmail.com
9
http://www.5metal.com.hk/node/3705
九龍旺角大南街 14-16 號地下
時茂企業有限公司
http://www.smooth.com.cn
23955297
Ronnie Cheng
27892083
enquiry@smooth.hk
69585738
10
http://www.5metal.com.hk/node/18680
九龍深水埗保安道65號美寧中心地下D8舖
超力五金
22536009
22536368
11
http://www.5metal.com.hk/node/5334
九龍觀塘鴻圖道42號華寶中心20樓8室
鷹輝鋼材有限公司
21530331
Ally Chan
21530336
eaglebright@netvigator.com
12
http://www.5metal.com.hk/node/14179
新界火炭坳背灣街41-43號安華工業大廈14樓E室
惠盈發展有限公司
http://www.waiying.com.hk
22070220
Simon Tong
22070200
info@waiying.com.hk
13
http://www.5metal.com.hk/node/3732
九龍旺角新填地街 297 號全理大樓地下
宏業工業設備
http://wang-yip.net/
26255688 , 26255689
馮先生
26255687
wangyiphk@yahoo.com.hk
14
http://www.5metal.com.hk/node/8620
Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROA...
經緯發展貿易有限公司
http://kwlaser.net/
23949631
張小姐
27898576
kingwai239@yahoo.com.hk
None
15
http://www.5metal.com.hk/node/5481
九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖
志鵬五金有限公司
www.chipanghardware.com
28278028
Mr. Lo
28278098
kenneth@chipanghardware.com
None
16
http://www.5metal.com.hk/node/3779
九龍旺角新填地街309號地下
泳杰泵行
26269333 , 26269666
譚先生
21914999
wingkipumps@biznetvigator.com
5511 6139
17
http://www.5metal.com.hk/node/7880
香港天后歌頓道利園大廈14號A地下
新永泰裝飾五金材料
28878802
羅先生
t28878802@gmail.com
66066375
18
http://www.5metal.com.hk/node/3532
九龍旺角廣東道943 號地下
立泰軸承有限公司
www.grandbearing.com.hk
23325685
Tinny
23743181
tinny@grandbearing.com.hk
None
19
http://www.5metal.com.hk/node/16443
九龍旺角新填地街368號地下
三鑫國際(香港)有限公司
http://www.siainthk.com
21914888
彭小姐
21914141
info@siainthk.com , sales@siainthk.com
98198797
20
http://www.5metal.com.hk/node/3504
九龍旺角新填地街 488 號地下 (近旺角道)
三寶五金機械有限公司
Triple.com.hk
23959408 , 21482339 , 23958171
None
23915735
tphk.cs@gmail.com
None
21
http://www.5metal.com.hk/node/3511
九龍油麻地上海街 278 號地下二樓 (地鐵站C出口)
大德五金超級市場
None
23846552 , 23853181
None
27108175
None
None
22
http://www.5metal.com.hk/node/13405
旺角新填地街595號 MOD595 2樓3號舖
Kraftool Hong Kong Limited
http://kraftool-instrument.ru
31840368
Sam
31840923
kraftoolhk.sales@gmail.com
None
23
http://www.5metal.com.hk/node/3674
九龍旺角新填地街 492 號地下 (近旺角道)
永佳五金機械有限公司
None
27899065 , 27899027
梁錦明
23911062
wingkai21@ymail.com
None
24
http://www.5metal.com.hk/node/3667
九龍旺角新填地街 467 號地下
錦榮五金工具有限公司
None
23912282 , 23912238 , 23912382
吳小姐
23918078
kamwinghw@netvigator.com
None
25
http://www.5metal.com.hk/node/3834
九龍旺角廣東道976號地下
Milwaukee Shops
www.milwaukeetool.com
23885712
None
None
None
None
26
http://www.5metal.com.hk/node/562
九龍旺角甘霖街12號地下
廣業機器廠
http://www.kwongyip.com
23230733 / 27711305
None
21914243 / 23854177
kwongyipmetal@yahoo.com.hk
None
27
http://www.5metal.com.hk/node/3785
九龍新填地街329-B 地下 (門向豉油街)
緝記(兄弟)工具五金有限公司
None
23887758 , 23887946 , 23887956
None
23855303 , 26250206
chupkee@biznetvigator.com
None
28
http://www.5metal.com.hk/node/6669
新界葵涌屏麗徑名賢樓F座地下
合豐五金行
http://hopfungmetal.weebly.com/
24256607 , 24264815
劉小姐
24817721
hopfungmetal@gmail.com
None
29
http://www.5metal.com.hk/node/8260
九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口)
建業五金機械有限公司
http://www.kinyipmetalware.com.hk/
27486363 , 27486082
None
22475684
support@kinyipmetalware.com.hk
None
...
...
...
...
...
...
...
...
...
...
330
http://www.5metal.com.hk/node/13379
九龍觀塘偉業街169號中懋工業大廈B座3樓2室
建安五金
http://5metal.com.hk/kinonmetalware
23448857
林小姐
27934747
kinonmetalware@gmail.com
97850311
331
http://www.5metal.com.hk/node/8507
九龍青山道552號地下A舖
永盛五金電器貨倉批發
27851583
Kevin Hui
27448978
huikinfukhk@yahoo.com.hk
332
http://www.5metal.com.hk/node/3568
香港九龍上海街359號地下
光輝鋼竹蒸籠厨具
https://facebook.com/kwongfai275/
27809980 , 27826050
梁月珍
27826145
kwongfai275@gmail.com
333
http://www.5metal.com.hk/node/3705
九龍旺角大南街 14-16 號地下
時茂企業有限公司
http://www.smooth.com.cn
23955297
Ronnie Cheng
27892083
enquiry@smooth.hk
69585738
334
http://www.5metal.com.hk/node/18680
九龍深水埗保安道65號美寧中心地下D8舖
超力五金
22536009
22536368
335
http://www.5metal.com.hk/node/5334
九龍觀塘鴻圖道42號華寶中心20樓8室
鷹輝鋼材有限公司
21530331
Ally Chan
21530336
eaglebright@netvigator.com
336
http://www.5metal.com.hk/node/14179
新界火炭坳背灣街41-43號安華工業大廈14樓E室
惠盈發展有限公司
http://www.waiying.com.hk
22070220
Simon Tong
22070200
info@waiying.com.hk
337
http://www.5metal.com.hk/node/3732
九龍旺角新填地街 297 號全理大樓地下
宏業工業設備
http://wang-yip.net/
26255688 , 26255689
馮先生
26255687
wangyiphk@yahoo.com.hk
338
http://www.5metal.com.hk/node/8620
Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROA...
經緯發展貿易有限公司
http://kwlaser.net/
23949631
張小姐
27898576
kingwai239@yahoo.com.hk
None
339
http://www.5metal.com.hk/node/5481
九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖
志鵬五金有限公司
www.chipanghardware.com
28278028
Mr. Lo
28278098
kenneth@chipanghardware.com
None
340
http://www.5metal.com.hk/node/3779
九龍旺角新填地街309號地下
泳杰泵行
26269333 , 26269666
譚先生
21914999
wingkipumps@biznetvigator.com
5511 6139
341
http://www.5metal.com.hk/node/7880
香港天后歌頓道利園大廈14號A地下
新永泰裝飾五金材料
28878802
羅先生
t28878802@gmail.com
66066375
342
http://www.5metal.com.hk/node/3532
九龍旺角廣東道943 號地下
立泰軸承有限公司
www.grandbearing.com.hk
23325685
Tinny
23743181
tinny@grandbearing.com.hk
None
343
http://www.5metal.com.hk/node/16443
九龍旺角新填地街368號地下
三鑫國際(香港)有限公司
http://www.siainthk.com
21914888
彭小姐
21914141
info@siainthk.com , sales@siainthk.com
98198797
344
http://www.5metal.com.hk/node/3504
九龍旺角新填地街 488 號地下 (近旺角道)
三寶五金機械有限公司
Triple.com.hk
23959408 , 21482339 , 23958171
None
23915735
tphk.cs@gmail.com
None
345
http://www.5metal.com.hk/node/3511
九龍油麻地上海街 278 號地下二樓 (地鐵站C出口)
大德五金超級市場
None
23846552 , 23853181
None
27108175
None
None
346
http://www.5metal.com.hk/node/13405
旺角新填地街595號 MOD595 2樓3號舖
Kraftool Hong Kong Limited
http://kraftool-instrument.ru
31840368
Sam
31840923
kraftoolhk.sales@gmail.com
None
347
http://www.5metal.com.hk/node/3674
九龍旺角新填地街 492 號地下 (近旺角道)
永佳五金機械有限公司
None
27899065 , 27899027
梁錦明
23911062
wingkai21@ymail.com
None
348
http://www.5metal.com.hk/node/3667
九龍旺角新填地街 467 號地下
錦榮五金工具有限公司
None
23912282 , 23912238 , 23912382
吳小姐
23918078
kamwinghw@netvigator.com
None
349
http://www.5metal.com.hk/node/3834
九龍旺角廣東道976號地下
Milwaukee Shops
www.milwaukeetool.com
23885712
None
None
None
None
350
http://www.5metal.com.hk/node/562
九龍旺角甘霖街12號地下
廣業機器廠
http://www.kwongyip.com
23230733 / 27711305
None
21914243 / 23854177
kwongyipmetal@yahoo.com.hk
None
351
http://www.5metal.com.hk/node/3785
九龍新填地街329-B 地下 (門向豉油街)
緝記(兄弟)工具五金有限公司
None
23887758 , 23887946 , 23887956
None
23855303 , 26250206
chupkee@biznetvigator.com
None
352
http://www.5metal.com.hk/node/6669
新界葵涌屏麗徑名賢樓F座地下
合豐五金行
http://hopfungmetal.weebly.com/
24256607 , 24264815
劉小姐
24817721
hopfungmetal@gmail.com
None
353
http://www.5metal.com.hk/node/8260
九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口)
建業五金機械有限公司
http://www.kinyipmetalware.com.hk/
27486363 , 27486082
None
22475684
support@kinyipmetalware.com.hk
None
354
http://www.5metal.com.hk/node/15599
九龍大角咀埃華街33號安業工廠大廈9樓911室
鐤盛集團國際貿易有限公司
www.marvelgroup.com.hk
36148234
陳先生
34648390
david.chan@marvelgroup.com.hk
None
355
http://www.5metal.com.hk/node/3835
九龍油麻地東安街40 號地下
安迪五金有限公司
www.andyhardware.com
27802832
Sandy, Lau
27803325
eandyhardware@biznetvigator.com , sing@andyhar...
None
356
http://www.5metal.com.hk/node/4079
九龍旺角廣東道919號地下
富昌五金(國際)有限公司
http://www.fc.iyp.hk
23327678
None
27809194
fc1985@biznetvigator.com
None
357
http://www.5metal.com.hk/node/17032
新界元朗西裕街18號好發洋樓地下1-4號舖
萬成五金電器(香港)有限公司
None
24763173
李先生
24749529
ms1@netvigator.com
None
358
http://www.5metal.com.hk/node/3721
九龍旺角新填地街388號地下
華卓五金有限公司
www.royalchinametal.com
26251388
None
26251838
info@royalchinametal.com , royalchinametal@hot...
None
359
http://www.5metal.com.hk/node/3516
九龍旺角廣東道967-969號地下
永興摩打泵行有限公司(廣東道967-969號)
None
23320135 , 23848404 , 23880380
方思興
27800955
None
None
360 rows × 9 columns
In [24]:
import datetime
timestamp = str(datetime.datetime.now()).split('.')[0]
filename = './scraped_result %s.csv' % timestamp
print('saving data...')
final_scraped_data.to_csv(filename, encoding='utf-8')
print('saved data to %s'%filename)
saving data...
saved data to ./scraped_result 2016-04-08 09:18:02.csv
In [25]:
!cat '$filename'
,detail_page_url,address,company_name,company_website,contact_number,contact_person,fax,email,mobile_phone
0,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
1,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
2,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
3,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
4,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
5,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
6,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
7,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
8,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
9,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
10,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
11,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
12,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
13,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
14,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
15,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
16,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
17,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
18,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
19,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
20,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
21,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
22,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
23,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
24,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
25,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
26,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
27,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
28,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
29,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
30,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
31,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
32,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
33,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
34,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
35,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
36,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
37,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
38,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
39,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
40,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
41,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
42,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
43,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
44,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
45,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
46,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
47,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
48,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
49,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
50,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
51,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
52,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
53,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
54,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
55,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
56,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
57,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
58,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
59,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
60,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
61,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
62,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
63,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
64,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
65,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
66,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
67,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
68,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
69,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
70,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
71,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
72,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
73,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
74,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
75,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
76,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
77,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
78,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
79,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
80,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
81,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
82,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
83,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
84,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
85,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
86,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
87,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
88,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
89,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
90,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
91,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
92,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
93,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
94,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
95,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
96,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
97,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
98,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
99,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
100,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
101,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
102,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
103,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
104,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
105,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
106,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
107,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
108,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
109,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
110,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
111,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
112,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
113,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
114,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
115,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
116,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
117,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
118,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
119,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
120,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
121,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
122,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
123,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
124,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
125,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
126,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
127,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
128,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
129,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
130,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
131,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
132,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
133,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
134,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
135,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
136,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
137,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
138,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
139,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
140,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
141,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
142,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
143,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
144,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
145,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
146,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
147,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
148,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
149,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
150,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
151,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
152,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
153,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
154,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
155,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
156,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
157,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
158,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
159,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
160,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
161,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
162,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
163,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
164,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
165,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
166,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
167,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
168,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
169,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
170,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
171,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
172,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
173,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
174,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
175,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
176,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
177,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
178,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
179,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
180,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
181,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
182,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
183,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
184,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
185,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
186,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
187,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
188,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
189,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
190,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
191,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
192,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
193,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
194,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
195,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
196,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
197,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
198,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
199,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
200,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
201,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
202,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
203,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
204,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
205,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
206,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
207,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
208,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
209,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
210,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
211,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
212,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
213,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
214,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
215,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
216,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
217,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
218,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
219,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
220,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
221,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
222,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
223,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
224,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
225,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
226,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
227,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
228,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
229,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
230,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
231,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
232,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
233,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
234,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
235,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
236,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
237,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
238,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
239,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
240,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
241,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
242,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
243,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
244,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
245,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
246,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
247,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
248,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
249,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
250,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
251,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
252,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
253,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
254,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
255,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
256,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
257,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
258,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
259,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
260,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
261,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
262,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
263,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
264,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
265,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
266,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
267,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
268,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
269,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
270,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
271,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
272,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
273,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
274,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
275,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
276,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
277,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
278,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
279,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
280,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
281,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
282,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
283,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
284,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
285,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
286,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
287,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
288,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
289,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
290,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
291,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
292,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
293,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
294,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
295,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
296,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
297,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
298,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
299,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
300,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
301,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
302,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
303,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
304,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
305,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
306,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
307,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
308,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
309,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
310,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
311,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
312,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
313,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
314,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
315,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
316,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
317,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
318,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
319,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
320,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
321,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
322,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
323,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
324,http://www.5metal.com.hk/node/13112,九龍深水埗福榮街15號地下,港城五金建材公司,http://www.5metal.com.hk/kwongshing,2763 0844,余小姐,26433381,info@kshw.com.hk,
325,http://www.5metal.com.hk/node/1,香港九龍油麻地新填地街226號地下 (油麻地港鐵站B2出口直行窩打老道口),李維記(寶源)五金工程,http://www.lwkpy.com.hk/,34223539,Ben Lee,34223790,leewaikee01@gmail.com,94228002
326,http://www.5metal.com.hk/node/3652,九龍旺角新填地街461B號地下,同利號,http://kwlaser.net/,23949778,張生,23949773,winwinco@hotmail.com,
327,http://www.5metal.com.hk/node/149,新界元朗大旗嶺737號 (大棠路加德士油站對面),萬昌五金建材有限公司,http://www.man-cheong.com.hk/,24783868,李先生,24747057,jacksonli@mcmhk.com,
328,http://www.5metal.com.hk/node/15998,新界火炭桂地街10號華麗工業中心10樓9室,津滙貿易公司,,,Sarah Chan,,jinhui11115@gmail.com,54482368
329,http://www.5metal.com.hk/node/3563,九龍旺角甘霖街 29 號地下,興發五金(香港)有限公司,http://www.5metal.com.hk/hingfatmetal,"23843218 , 23843216","吳永裕,何卓怡,麥浩倫",23885774,hingfatmetal@hotmail.com,
330,http://www.5metal.com.hk/node/13379,九龍觀塘偉業街169號中懋工業大廈B座3樓2室,建安五金,http://5metal.com.hk/kinonmetalware,23448857,林小姐,27934747,kinonmetalware@gmail.com,97850311
331,http://www.5metal.com.hk/node/8507,九龍青山道552號地下A舖,永盛五金電器貨倉批發,,27851583,Kevin Hui,27448978,huikinfukhk@yahoo.com.hk,
332,http://www.5metal.com.hk/node/3568,香港九龍上海街359號地下,光輝鋼竹蒸籠厨具,https://facebook.com/kwongfai275/,"27809980 , 27826050",梁月珍,27826145,kwongfai275@gmail.com,
333,http://www.5metal.com.hk/node/3705,九龍旺角大南街 14-16 號地下,時茂企業有限公司,http://www.smooth.com.cn,23955297,Ronnie Cheng,27892083,enquiry@smooth.hk,69585738
334,http://www.5metal.com.hk/node/18680,九龍深水埗保安道65號美寧中心地下D8舖,超力五金,,22536009,,22536368,,
335,http://www.5metal.com.hk/node/5334,九龍觀塘鴻圖道42號華寶中心20樓8室,鷹輝鋼材有限公司,,21530331,Ally Chan,21530336,eaglebright@netvigator.com,
336,http://www.5metal.com.hk/node/14179,新界火炭坳背灣街41-43號安華工業大廈14樓E室,惠盈發展有限公司,http://www.waiying.com.hk,22070220,Simon Tong,22070200,info@waiying.com.hk,
337,http://www.5metal.com.hk/node/3732,九龍旺角新填地街 297 號全理大樓地下,宏業工業設備,http://wang-yip.net/,"26255688 , 26255689",馮先生,26255687,wangyiphk@yahoo.com.hk,
338,http://www.5metal.com.hk/node/8620,"Rm.2,12/F,FUK HONG IND.BLDG,60-62B TONG MI ROAD,MONGKOK,KOWLOON.",經緯發展貿易有限公司,http://kwlaser.net/,23949631,張小姐,27898576,kingwai239@yahoo.com.hk,
339,http://www.5metal.com.hk/node/5481,九龍新蒲崗五芳街26號榮盛工業大廈地下1J舖,志鵬五金有限公司,www.chipanghardware.com,28278028,Mr. Lo,28278098,kenneth@chipanghardware.com,
340,http://www.5metal.com.hk/node/3779,九龍旺角新填地街309號地下,泳杰泵行,,"26269333 , 26269666",譚先生,21914999,wingkipumps@biznetvigator.com,5511 6139
341,http://www.5metal.com.hk/node/7880,香港天后歌頓道利園大廈14號A地下,新永泰裝飾五金材料,,28878802,羅先生,,t28878802@gmail.com,66066375
342,http://www.5metal.com.hk/node/3532,九龍旺角廣東道943 號地下,立泰軸承有限公司,www.grandbearing.com.hk,23325685,Tinny,23743181,tinny@grandbearing.com.hk,
343,http://www.5metal.com.hk/node/16443,九龍旺角新填地街368號地下,三鑫國際(香港)有限公司,http://www.siainthk.com,21914888,彭小姐,21914141,"info@siainthk.com , sales@siainthk.com",98198797
344,http://www.5metal.com.hk/node/3504,九龍旺角新填地街 488 號地下 (近旺角道),三寶五金機械有限公司,Triple.com.hk,"23959408 , 21482339 , 23958171",,23915735,tphk.cs@gmail.com,
345,http://www.5metal.com.hk/node/3511,九龍油麻地上海街 278 號地下二樓 (地鐵站C出口),大德五金超級市場,,"23846552 , 23853181",,27108175,,
346,http://www.5metal.com.hk/node/13405,旺角新填地街595號 MOD595 2樓3號舖,Kraftool Hong Kong Limited,http://kraftool-instrument.ru,31840368,Sam,31840923,kraftoolhk.sales@gmail.com,
347,http://www.5metal.com.hk/node/3674,九龍旺角新填地街 492 號地下 (近旺角道),永佳五金機械有限公司,,"27899065 , 27899027",梁錦明,23911062,wingkai21@ymail.com,
348,http://www.5metal.com.hk/node/3667,九龍旺角新填地街 467 號地下,錦榮五金工具有限公司,,"23912282 , 23912238 , 23912382",吳小姐,23918078,kamwinghw@netvigator.com,
349,http://www.5metal.com.hk/node/3834,九龍旺角廣東道976號地下,Milwaukee Shops,www.milwaukeetool.com,23885712,,,,
350,http://www.5metal.com.hk/node/562,九龍旺角甘霖街12號地下,廣業機器廠,http://www.kwongyip.com,23230733 / 27711305,,21914243 / 23854177,kwongyipmetal@yahoo.com.hk,
351,http://www.5metal.com.hk/node/3785,九龍新填地街329-B 地下 (門向豉油街),緝記(兄弟)工具五金有限公司,,"23887758 , 23887946 , 23887956",,"23855303 , 26250206",chupkee@biznetvigator.com,
352,http://www.5metal.com.hk/node/6669,新界葵涌屏麗徑名賢樓F座地下,合豐五金行,http://hopfungmetal.weebly.com/,"24256607 , 24264815",劉小姐,24817721,hopfungmetal@gmail.com,
353,http://www.5metal.com.hk/node/8260,九龍深水埗鴨寮街145號地下 (深水埗地鐵站A2出口),建業五金機械有限公司,http://www.kinyipmetalware.com.hk/,"27486363 , 27486082",,22475684,support@kinyipmetalware.com.hk,
354,http://www.5metal.com.hk/node/15599,九龍大角咀埃華街33號安業工廠大廈9樓911室,鐤盛集團國際貿易有限公司,www.marvelgroup.com.hk,36148234,陳先生,34648390,david.chan@marvelgroup.com.hk,
355,http://www.5metal.com.hk/node/3835,九龍油麻地東安街40 號地下,安迪五金有限公司,www.andyhardware.com,27802832,"Sandy, Lau",27803325,"eandyhardware@biznetvigator.com , sing@andyhardware.com.hk",
356,http://www.5metal.com.hk/node/4079,九龍旺角廣東道919號地下,富昌五金(國際)有限公司,http://www.fc.iyp.hk,23327678,,27809194,fc1985@biznetvigator.com,
357,http://www.5metal.com.hk/node/17032,新界元朗西裕街18號好發洋樓地下1-4號舖,萬成五金電器(香港)有限公司,,24763173,李先生,24749529,ms1@netvigator.com,
358,http://www.5metal.com.hk/node/3721,九龍旺角新填地街388號地下,華卓五金有限公司,www.royalchinametal.com,26251388,,26251838,"info@royalchinametal.com , royalchinametal@hotmail.com",
359,http://www.5metal.com.hk/node/3516,九龍旺角廣東道967-969號地下,永興摩打泵行有限公司(廣東道967-969號),,"23320135 , 23848404 , 23880380",方思興,27800955,,
Some of the scraping results in exception. After checking it in the browser, I found that these websites use a new design (or i should say new template since they look pretty similar to each other among this group) with a different HTML structure. By distinguishing old and new template, we can certainly further improve the scraping result
Update:
I've added code for handling the 2 different designs, seems working good (360 successful scrapes out of 360 company detail pages)
Content source: jackkwong/python-yellow-page-scraping
Similar notebooks: