Пример #1
0
  def get_people(self):
    page = lxmlize(COUNCIL_PAGE)

    mayor = page.xpath('.//div[@class="item-page clearfix"]//table[1]//p')[1]
    name = mayor.xpath('.//strong/text()')[0]

    p = Legislator(name=name, post_id='Pointe-Claire', role='Maire')
    p.add_source(COUNCIL_PAGE)

    phone = re.findall(r'[0-9]{3}[ -][0-9]{3}-[0-9]{4}', mayor.text_content())[0].replace(' ', '-')
    p.add_contact('voice', phone, 'legislature')
    yield p

    rows = page.xpath('//tr')
    for i, row in enumerate(rows):
      if i % 2 == 0:
        continue
      councillors = row.xpath('./td')
      for j, councillor in enumerate(councillors):
        name = councillor.text_content()
        # rows[i + 1].xpath('.//td//a[contains(@href, "maps")]/text()')[j] # district number
        district = rows[i + 1].xpath('.//td/p[1]/text()')[j].replace(' / ', '/')

        p = Legislator(name=name, post_id=district, role='Conseiller')
        p.add_source(COUNCIL_PAGE)
        p.image = councillor.xpath('.//img/@src')[0]

        phone = re.findall(r'[0-9]{3}[ -][0-9]{3}-[0-9]{4}', rows[i + 1].xpath('.//td')[j].text_content())[0].replace(' ', '-')

        p.add_contact('voice', phone, 'legislature')

        yield p
Пример #2
0
    def get_people(self):
        # mayor first, can't find email
        page = lxmlize(MAYOR_URL)
        photo_url = page.xpath('string(//img/@src[contains(., "Maire")])')
        name = page.xpath('string(//td[@class="contenu"]/text()[last()])')
        p = Legislator(name=name,
                       post_id=u"Trois-Rivières",
                       role="Maire",
                       image=photo_url)
        p.add_source(MAYOR_URL)
        yield p

        resp = requests.get(COUNCIL_PAGE)
        # page rendering through JS on the client
        page_re = re.compile(r'createItemNiv3.+"District (.+?)".+(index.+)\\"')
        for district, url_rel in page_re.findall(resp.text):
            if district not in ('des Estacades', 'des Plateaux',
                                'des Terrasses', 'du Sanctuaire'):
                district = re.sub('\A(?:de(?: la)?|des|du) ', '', district)

            url = urljoin(COUNCIL_PAGE, url_rel)
            page = lxmlize(url)
            name = page.xpath('string(//h2)')
            email = page.xpath(
                'string(//a/@href[contains(., "mailto:")])')[len('mailto:'):]
            photo_url = page.xpath(
                'string(//img/@src[contains(., "Conseiller")])')
            p = Legislator(name=name,
                           post_id=district,
                           role='Conseiller',
                           image=photo_url)
            p.add_source(url)
            p.add_contact('email', email, None)
            yield p
Пример #3
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)

        # it's all javascript rendered on the client... wow.
        js = page.xpath(
            'string(//div[@class="inner_container"]/div/script[2])')
        districts = re.findall(r'arrayDistricts\[a.+"(.+)"', js)
        members = re.findall(r'arrayMembres\[a.+"(.+)"', js)
        urls = re.findall(r'arrayLiens\[a.+"(.+)"', js)
        # first item in list is mayor
        p = Legislator(name=members[0], post_id='Gatineau', role='Maire')
        p.add_source(COUNCIL_PAGE)
        mayor_page = lxmlize(MAYOR_CONTACT_PAGE)
        p.add_source(MAYOR_CONTACT_PAGE)
        email = '*****@*****.**'  # hardcoded
        p.add_contact('email', email, None)
        yield p

        for district, member, url in zip(districts, members, urls)[1:]:
            profile_url = COUNCIL_PAGE + '/' + url.split('/')[-1]
            profile_page = lxmlize(profile_url)
            photo_url = profile_page.xpath('string(//img/@src)')
            post_id = 'District ' + re.search('\d+', district).group(0)
            email = profile_page.xpath(
                'string(//a[contains(@href, "mailto:")]/@href)')[len('mailto:'
                                                                     ):]
            p = Legislator(name=member, post_id=post_id, role='Conseiller')
            p.add_source(COUNCIL_PAGE)
            p.add_source(profile_url)
            p.image = photo_url
            p.add_contact('email', email, None)
            yield p
Пример #4
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE, 'iso-8859-1')
        nodes = page.xpath('//table[@width="484"]//tr')
        try:
            for district_row, councillor_row, contact_row, _ in chunks(
                    nodes, 4):
                post_id = district_row.xpath('string(.//strong)')
                name = councillor_row.xpath('string(.)')[len('Councillor '):]
                # TODO: phone numbers on site don't include area code. Add manually?
                #phone = contact_row.xpath('string(td[2]/text())')
                email = contact_row.xpath('string(td[4]/a)').replace(
                    '[at]', '@')

                p = Legislator(name=name, post_id=post_id, role='Councillor')
                p.add_source(COUNCIL_PAGE)
                #p.add_contact('voice', phone, 'legislature')
                p.add_contact('email', email, None)
                yield p
        except ValueError:
            # on the last run through, there will be less than 4 rows to unpack
            pass

        mayor_page = lxmlize(MAYOR_PAGE, 'iso-8859-1')
        name = mayor_page.xpath(
            'string(//h1[contains(., "Bio")])')[:-len(' Bio')]
        contact_page = lxmlize(MAYOR_CONTACT_URL, 'iso-8859-1')
        email = contact_page.xpath('string(//a[contains(., "@")][1])')

        p = Legislator(name=name, post_id='Halifax', role='Councillor')
        p.add_source(MAYOR_PAGE)
        p.add_source(MAYOR_CONTACT_URL)
        p.add_contact('email', email, None)
        yield p
Пример #5
0
    def get_people(self):

        tmpdir = tempfile.mkdtemp()
        page = lxmlize(COUNCIL_PAGE)

        mayor = page.xpath('//div[@class="box"]/p/text()')
        m_name = mayor[0].strip().split('.')[1].strip()
        m_phone = mayor[1].strip().split(':')[1].strip()

        m = Legislator(name=m_name, post_id='Saguenay', role='Maire')
        m.add_source(COUNCIL_PAGE)
        m.add_contact('voice', m_phone, 'legislature')

        yield m

        councillors = page.xpath('//div[@class="box"]//div')
        for councillor in councillors:
            district = councillor.xpath('./h3')[0].text_content().replace(
                '#', '')
            name = councillor.xpath('.//p/text()')[0].encode('latin-1').decode(
                'utf-8')
            name = name.replace('M. ', '').replace('Mme ', '').strip()
            phone = councillor.xpath('.//p/text()')[1].split(
                ':')[1].strip().replace(' ', '-')
            email = councillor.xpath(
                './/a[contains(@href, "mailto:")]')[0].text_content()

            url = councillor.xpath('./p/a')[0].attrib['href']

            p = Legislator(name=name, post_id=district, role='Conseiller')
            p.add_source(COUNCIL_PAGE)

            p.add_contact('voice', phone, 'legislature')
            p.add_contact('email', email, None)
            yield p
Пример #6
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)
        councillor_links = page.xpath('//li[@id="pageid2117"]/ul/li/a')[2:10]
        for link in councillor_links:
            if not link.text.startswith('Councillor'):
                continue
            url = link.attrib['href']
            page = lxmlize(url)
            mail_link = page.xpath('//a[@title]')[0]
            name = mail_link.attrib['title']
            email = mail_link.attrib['href'][len('mailto:'):]
            photo_url = page.xpath(
                'string(//div[@class="pageContent"]//img[@align="right"]/@src)'
            )
            p = Legislator(name=name,
                           post_id='Abbotsford',
                           role='Councillor',
                           image=photo_url)
            p.add_source(url)
            p.add_contact('email', email, None)
            yield p

        page = lxmlize(MAYOR_URL)
        name = page.xpath('string(//h1)').split(' ', 1)[1]
        photo_url = page.xpath('string(//img[@hspace=10]/@src)')
        # email is hidden behind a form
        p = Legislator(name=name,
                       post_id='Abbotsford',
                       role='Mayor',
                       image=photo_url)
        p.add_source(MAYOR_URL)
        yield p
Пример #7
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)

        mayor = page.xpath('//td[@class="LeftLinksSectionMenu"]/a')[0]
        name = mayor.text_content().replace('Mayor', '').strip()
        url = mayor.attrib['href']
        mayor_page = lxmlize(url)
        p = Legislator(name=name, post_id='Westmount', role='Maire')
        p.add_source(COUNCIL_PAGE)
        p.add_source(url)
        mayor_info = mayor_page.xpath(
            '//div[@style="padding-right:10px;"]/table')[0]
        phone = mayor_info.xpath('.//tr[2]/td[2]')[0].text_content().replace(
            ' ', '-')
        fax = mayor_info.xpath('.//tr[3]/td[2]')[0].text_content().replace(
            ' ', '-')
        email = mayor_info.xpath('.//tr[4]/td[2]')[0].text_content().strip()
        p.add_contact('voice', phone, 'legislature')
        p.add_contact('fax', fax, 'legislature')
        p.add_contact('email', email, None)
        yield p

        councillors = page.xpath(
            '//td[@class="LeftLinksSectionMenu" and contains(@style, "border-bottom-style: dashed;")]/a'
        )
        for i, councillor in enumerate(councillors):
            name = councillor.text_content().strip()
            url = councillor.attrib['href']
            page = lxmlize(url)

            if page.xpath('boolean(.//div[@class="SectionTitle"][2])'):
                district = page.xpath('.//div[@class="SectionTitle"]')[
                    1].text_content().split('-')[0].strip()
            else:
                district = 'District ' + str(i + 1)

            info = page.xpath('.//div[@style="padding-right:10px;"]/table')[0]
            phone = info.xpath('.//tr[2]/td[2]')[0].text_content().replace(
                ' ', '-')
            email = info.xpath('.//tr[3]/td[2]')[0].text_content().strip()
            p = Legislator(name=name, post_id=district, role='Conseiller')
            p.add_source(COUNCIL_PAGE)
            p.add_source(url)
            p.image = info.xpath(
                './ancestor::td//div[not(@id="insert")]/img/@src')[0]
            p.add_contact('voice', phone, 'legislature')
            p.add_contact('email', email, None)
            yield p
Пример #8
0
  def get_people(self):
    page = lxmlize(COUNCIL_PAGE)

    councillors = page.xpath('//div[@class="article-content"]//td[@class="ms-rteTableOddCol-0"]')
    yield scrape_mayor(councillors[0])
    for councillor in councillors[1:]:
      if not councillor.xpath('.//a'):
        continue

      name = councillor.xpath('.//a')[0].text_content().strip()
      district = councillor.xpath('.//a')[1].text_content()
      url = councillor.xpath('.//a/@href')[0]
      page = lxmlize(url)

      p = Legislator(name=name, post_id=district, role='Conseiller')
      p.add_source(COUNCIL_PAGE)
      p.add_source(url)

      p.image = councillor.xpath('./preceding-sibling::td//img/@src')[-1]

      contacts = page.xpath('.//td[@class="ms-rteTableOddCol-0"]//text()')
      for contact in contacts:
        if re.findall(r'[0-9]', contact):
          phone = contact.strip().replace(' ', '-')
          p.add_contact('voice', phone, 'legislature')
      get_links(p, page.xpath('.//td[@class="ms-rteTableOddCol-0"]')[0])

      email = page.xpath(
        'string(//a[contains(@href, "mailto:")]/@href)')[len('mailto:'):]
      p.add_contact('email', email, None)
      yield p
Пример #9
0
def councillor_data(url):
    page = lxmlize(url)

    name = page.xpath('string(//h1[@id="TitleOfPage"])')
    district = page.xpath('string(//h2)')

    # TODO: Councillor emails are built with JS to prevent scraping, but the JS can be scraped.

    address = page.xpath('string(//div[@class="asideContent"])')

    photo = page.xpath('string(//div[@id="contentright"]//img[1]/@src)')
    phone = get_phone_data(page)

    js = page.xpath('string(//span/script)')
    email = email_js(js)

    p = Legislator(name=name, post_id=district, role='Councillor')
    p.add_source(COUNCIL_PAGE)
    p.add_source(url)
    p.add_contact('address', address, 'legislature')
    p.add_contact('voice', phone, 'legislature')
    p.add_contact('email', email, None)
    p.image = photo

    return p
Пример #10
0
    def scrape_mayor(self, div):
        url = div.attrib['href']
        page = lxmlize(url)

        name = div.text_content().replace('Mayor ', '')
        contact_url = page.xpath(
            '//ul[@class="navSecondary"]//a[contains(text(),"Contact")]'
        )[0].attrib['href']
        page = lxmlize(contact_url)

        contact_div = page.xpath('//div[@class="col"][2]')[0]

        address = contact_div.xpath('.//p[1]')[0].text_content()
        address = re.findall(r'(City of Greater .*)', address,
                             flags=re.DOTALL)[0]
        phone = contact_div.xpath('.//p[2]')[0].text_content()
        phone = phone.replace('Phone: ', '')
        fax = contact_div.xpath('.//p[3]')[0].text_content()
        fax = fax.split(' ')[-1]
        email = contact_div.xpath(
            '//a[contains(@href, "mailto:")]')[0].text_content()

        p = Legislator(name=name, post_id='Greater Sudbury', role='Mayor')
        p.add_source(COUNCIL_PAGE)
        p.add_source(contact_url)
        p.add_contact('address', address, 'legislature')
        p.add_contact('voice', phone, 'legislature')
        p.add_contact('fax', fax, 'legislature')
        p.add_contact('email', email, None)
        return p
Пример #11
0
def scrape_mayor(url):
    page = lxmlize(url)
    name = page.xpath('//tr/td/p')[-1]
    name = name.text_content().replace('Mayor', '')
    image = page.xpath('//div[@class="sask_ArticleBody"]//img/@src')[0]

    contact_url = page.xpath(
        '//a[contains(text(), "Contact the Mayor")]/@href')[0]
    page = lxmlize(contact_url)

    address = ' '.join(
        page.xpath(
            '//div[@id="ctl00_PlaceHolderMain_RichHtmlField1__ControlWrapper_RichHtmlField"]/p[4]/text()'
        )[1:])
    phone = page.xpath(
        '//div[@id="ctl00_PlaceHolderMain_RichHtmlField1__ControlWrapper_RichHtmlField"]/p[5]/span/text()'
    )[0].replace('(', '').replace(') ', '-')
    fax = page.xpath(
        '//div[@id="ctl00_PlaceHolderMain_RichHtmlField1__ControlWrapper_RichHtmlField"]/p[6]/span/text()'
    )[0].replace('(', '').replace(') ', '-')

    p = Legislator(name=name, post_id='Saskatoon', role='Mayor')
    p.add_source(url)
    p.image = image
    p.add_contact('address', address, 'legislature')
    p.add_contact('voice', phone, 'legislature')
    p.add_contact('fax', fax, 'legislature')
    return p
Пример #12
0
    def get_people(self):
        member_parties = dict(process_parties(lxmlize(PARTY_PAGE)))

        page = lxmlize(COUNCIL_PAGE)
        for row in page.xpath('//table[not(@id="footer")]/tr')[1:]:
            name, district, _, email = [
                cell.xpath('string(.)').replace(u'\xa0', u' ') for cell in row
            ]
            phone = row[2].xpath('string(text()[1])')
            try:
                photo_page_url = row[0].xpath('./a/@href')[0]
            except IndexError:
                continue  # there is a vacant district
            photo_page = lxmlize(photo_page_url)
            photo_url = photo_page.xpath('string(//table//img/@src)')
            district = district.replace(' - ', u'—')  # m-dash
            party = get_party(member_parties[name.strip()])
            p = Legislator(name=name,
                           post_id=district,
                           role='MHA',
                           party=party,
                           image=photo_url)
            p.add_source(COUNCIL_PAGE)
            p.add_source(photo_page_url)
            p.add_contact('email', email, None)
            # TODO: either fix phone regex or tweak phone value
            p.add_contact('voice', phone, 'legislature')
            yield p
Пример #13
0
    def get_people(self):
        page = lxmlize(
            COUNCIL_PAGE,
            user_agent=
            'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)')

        councillors = page.xpath('//table[last()]//tr/td[1]//strong')
        for i, councillor in enumerate(councillors):
            name = councillor.text_content().strip()
            if not name:
                continue
            if 'maire' in name:
                name = name.split('maire')[1].strip()
                district = u'Montréal-Est'
            else:
                district = councillor.xpath(
                    './ancestor::td/following-sibling::td//strong'
                )[-1].text_content()
                district = 'District %s' % re.sub('\D+', '', district)
            email = councillor.xpath(
                './ancestor::tr/following-sibling::tr//a[contains(@href, "mailto:")]'
            )[0].text_content().strip()
            role = 'Maire' if i == 0 else 'Conseiller'
            p = Legislator(name=name, post_id=district, role=role)
            p.add_source(COUNCIL_PAGE)
            p.add_contact('email', email, None)
            yield p
Пример #14
0
  def get_people(self):
    page = lxmlize(COUNCIL_PAGE, 'iso-8859-1')

    councillors = page.xpath('//div[@id="PageContent"]/table/tbody/tr/td')
    for councillor in councillors:
      if not councillor.text_content().strip():
        continue
      if councillor == councillors[0]:
        district = 'Kirkland'
        role = 'Maire'
      else:
        district = councillor.xpath('.//h2')[0].text_content()
        district = re.search('- (.+)', district).group(1).strip()
        district = district.replace(' Ouest', ' ouest').replace(' Est', ' est')
        role = 'Conseiller'

      name = councillor.xpath('.//strong/text()')[0]

      phone = councillor.xpath('.//div[contains(text(), "#")]/text()')[0].replace('T ', '').replace(' ', '-').replace(',-#-', ' x')
      email = councillor.xpath('.//a[contains(@href, "mailto:")]')[0].text_content()

      p = Legislator(name=name, post_id=district, role=role)
      p.add_source(COUNCIL_PAGE)
      p.add_contact('voice', phone, 'legislature')
      p.add_contact('email', email, None)
      p.image = councillor.xpath('.//img/@src')[0]
      yield p
Пример #15
0
    def scrape_mayor(self):
        page = lxmlize(MAYOR_PAGE, 'iso-8859-1')

        name = page.xpath(
            '//div[@class="articletitle"]/h1')[0].text_content().replace(
                'Mayor', '')

        p = Legislator(name=name, post_id='Summerside', role='Mayor')
        p.add_source(MAYOR_PAGE)
        p.image = page.xpath(
            '//div[@class="articlebody-inside"]/p/img/@src')[0].replace(
                '..', '')

        info = page.xpath('//div[@class="articlebody-inside"]/p')
        phone = re.findall(r'to (.*)', info[1].text_content())[0]
        address = info[3].text_content().replace(
            'by mail: ', '') + ' ' + info[4].text_content()
        email = info[5].xpath(
            './/a[contains(@href, "mailto:")]')[0].text_content()

        p.add_contact('voice', phone, 'legislature')
        p.add_contact('address', address, 'legislature')
        p.add_contact('email', email, None)

        return p
Пример #16
0
    def scrape_mayor(self, name, url):
        page = lxmlize(url)

        contact = page.xpath(
            '//div[@id="secondary align_RightSideBar"]/blockquote/p/text()')
        phone = contact[0]
        fax = contact[1]
        email = page.xpath(
            '//div[@id="secondary align_RightSideBar"]/blockquote/p/a[contains(@href, "mailto:")]/text()'
        )[0]

        mayor_page = lxmlize('http://www.burlingtonmayor.com')
        contact_url = mayor_page.xpath(
            '//div[@class="menu"]//a[contains(text(),"Contact")]'
        )[0].attrib['href']
        mayor_page = lxmlize(contact_url)
        address = mayor_page.xpath(
            '//div[@class="entry-content"]//p[contains(text(),"City Hall")]'
        )[0].text_content()

        p = Legislator(name=name, post_id="Burlington", role='Mayor')
        p.add_source(COUNCIL_PAGE)
        p.add_source(url)
        p.add_source('http://www.burlingtonmayor.com')

        p.image = page.xpath(
            '//div[@id="secondary align_RightSideBar"]/p/img/@src')[0]
        p.add_contact('voice', phone, 'legislature')
        p.add_contact('fax', fax, 'legislature')
        p.add_contact('email', email, None)
        p.add_contact('address', address, 'legislature')

        return p
Пример #17
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)

        councillors = page.xpath('//div[@class="img_four"][1]/div[1]')
        councillors = councillors + page.xpath(
            '//div[@class="img_four"][2]/div')
        for councillor_elem in councillors:
            name, position = councillor_elem.xpath('string(./p/strong)').split(
                ',')
            position = position.strip()
            if ' ' in position:
                position, post_id = position.split(' ', 1)
                post_id = post_number(post_id)
            else:
                post_id = 'Wellesley'
            addr = '\n'.join(
                addr_str.strip()
                for addr_str in councillor_elem.xpath('./p/text()')).strip()
            phone = councillor_elem.xpath(
                'string(.//a[starts-with(@href, "tel:")])')
            email = councillor_elem.xpath(
                'string(.//a[starts-with(@href, "mailto:")])')
            image = councillor_elem.xpath('string(.//img[1]/@src)')
            p = Legislator(name=name,
                           post_id=post_id,
                           role=position,
                           image=image)
            p.add_source(COUNCIL_PAGE)
            p.add_contact('address', addr, 'legislature')
            p.add_contact('voice', phone, 'legislature')
            p.add_contact('email', email, None)
            yield p
Пример #18
0
  def get_people(self):
    page = lxmlize(COUNCIL_PAGE)

    mayor_info = page.xpath('//h2[contains(text(), "MAYOR")]//following-sibling::p')[0]
    yield self.scrape_mayor(mayor_info)

    wards = page.xpath('//h3')
    for ward in wards:
      district = re.sub('\AWARD \d+ - ', '', ward.text_content())
      councillors = ward.xpath('following-sibling::p')
      for councillor in councillors:
        name = councillor.xpath('./strong')[0].text_content()

        p = Legislator(name=name, post_id=district, role='Councillor')
        p.add_source(COUNCIL_PAGE)

        info = councillor.xpath('./text()')
        address = info.pop(0)
        p.add_contact('address', address, 'legislature')

        # get phone numbers
        for line in info:
          stuff = re.split(ur'(\xbb)|(\xa0)', line)
          tmp = [y for y in stuff if y and not re.match(ur'\xa0', y)]
          self.get_tel_numbers(tmp, p)

        email = councillor.xpath('string(./a)')
        p.add_contact('email', email, None)

        yield p
        if councillor == councillors[1]:
          break
Пример #19
0
  def get_people(self):
      response = urlopen(COUNCIL_CSV_URL)
      cr = DictReader(response)
      for councillor in cr:
        name = '%s %s' % (councillor['First name'], councillor['Last name'])
        role = councillor['Elected office']
        if role == 'Mayor':
          district = 'Ottawa'
        else:
          district = councillor['District name']

        # Correct typos. The City has been notified of the errors.
        if district == u'Knoxdale Merivale':
          district = u'Knoxdale-Merivale'
        if district == u'Rideau Vanier':
          district = u'Rideau-Vanier'
        if district == u'Orleans':
          district = u'Orléans'

        email = councillor['Email']
        address = ', '.join([councillor['Address line 1'],
                             councillor['Address line 2'],
                             councillor['Locality'],
                             councillor['Postal code'],
                             councillor['Province']])
        phone = councillor['Phone']
        photo_url = councillor['Photo URL']

        p = Legislator(name=name, post_id=district, role=role)
        p.add_source(COUNCIL_CSV_URL)
        p.add_contact('email', email, None)
        p.add_contact('address', address, 'legislature')
        p.add_contact('voice', phone, 'legislature')
        p.image = photo_url
        yield p
Пример #20
0
  def get_people(self):
    page = lxmlize(COUNCIL_PAGE)

    councillors = page.xpath('//div[@id="c2087"]//a')
    for councillor in councillors:
      name = councillor.text_content()
      url = councillor.attrib['href']
      page = lxmlize(url)
      if 'Maire' in page.xpath('//h2/text()')[0]:
        district = 'Sherbrooke'
        role = 'Maire'
      else:
        district = page.xpath('//div[@class="csc-default"]//a[@target="_blank"]/text()')[0].replace('district', '').replace('Domaine Howard', 'Domaine-Howard').strip()
        role = 'Conseiller'
      if district in ('de Brompton', 'de Lennoxville'):
        district = district.replace('de ', '')
      p = Legislator(name=name, post_id=district, role=role)
      p.add_source(COUNCIL_PAGE)
      p.add_source(url)
      p.image = page.xpath('//div[@class="csc-textpic-image csc-textpic-last"]//img/@src')[0]
      parts = page.xpath('//li[contains(text(), "phone")]/text()')[0].split(':')
      note = parts[0]
      phone = parts[1]
      p.add_contact(note, phone, note)
      email = page.xpath('//a[contains(@href, "mailto:")]/@href')
      if email:
        email = email[0].split(':')[1]
        p.add_contact('email', email, None)
      if district == 'Brompton':
        p.add_extra('boundary_url', '/boundaries/sherbrooke-boroughs/brompton/')
      elif district == 'Lennoxville':
        p.add_extra('boundary_url', '/boundaries/sherbrooke-boroughs/lennoxville/')
      yield p
Пример #21
0
    def scrape_councilor(self, page, h1, url):
        name = h1.split('Councillor')[1]
        ward_full = page.xpath('string(//strong[not(@class)])').replace(
            u'\xa0', u' ')
        ward_num, ward_name = re.search(r'(Ward \d+) (.+)', ward_full).groups()

        p = Legislator(name=name, post_id=ward_num, role='Councillor')
        p.add_source(COUNCIL_PAGE)
        p.add_source(url)

        p.image = page.xpath('string(//main//img/@src)')
        email = page.xpath('string((//a[contains(@href, "@")])[1])')
        p.add_contact('email', email, None)

        addr_cell = page.xpath('//*[contains(text(), "Toronto City Hall")]/'
                               'ancestor::td')[0]
        phone = (addr_cell.xpath(
            'string((.//text()[contains(., "Phone:")])[1])').split(':')[1])
        p.add_contact('voice', phone, 'legislature')

        address = '\n'.join(addr_cell.xpath('./p[2]/text()')[:2])
        if address:
            p.add_contact('address', address, 'legislature')

        return p
Пример #22
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)
        for councillor_row in page.xpath('//tr'):
            post = councillor_row.xpath('string(./td[2]/p/text())')
            if post == 'Maire de Laval':
                district = 'Laval'
                role = 'Maire'
            else:
                district = re.sub('^C.?irconscription (?:no )?\d+\D- ', '',
                                  post).replace("L'",
                                                '').replace(' ', '').replace(
                                                    'bois', 'Bois')
                role = 'Conseiller'
            full_name = councillor_row.xpath(
                'string(./td[2]/p/text()[2])').strip()
            name = ' '.join(full_name.split()[1:])

            phone = councillor_row.xpath(
                'string(.//span[@class="icon-phone"]/following::text())')
            email = councillor_row.xpath(
                'string(.//a[contains(@href, "mailto:")]/@href)')[len('mailto:'
                                                                      ):]
            photo_url = councillor_row[0][0].attrib['src']
            p = Legislator(name=name,
                           post_id=district,
                           role=role,
                           image=photo_url)
            p.add_source(COUNCIL_PAGE)
            p.add_contact('voice', phone, 'legislature')
            p.add_contact('email', email, None)
            yield p
Пример #23
0
    def scrape_mayor(self, url):
        page = lxmlize(url)
        name = page.xpath("//h1/text()")[0].replace("Toronto Mayor",
                                                    "").strip()

        p = Legislator(name, post_id="Toronto", role='Mayor')
        p.add_source(COUNCIL_PAGE)
        p.add_source(url)

        p.image = page.xpath('string(//article/img/@src)')

        url = page.xpath(
            '//a[contains(text(), "Contact the Mayor")]')[0].attrib['href']
        url = url.replace(
            'www.', 'www1.'
        )  # @todo fix lxmlize to use the redirected URL to make links absolute
        p.add_source(url)
        page = lxmlize(url)

        mail_elem, phone_elem = page.xpath('//h3')[:2]
        address = ''.join(mail_elem.xpath('./following-sibling::p//text()'))
        phone = phone_elem.xpath('string(./following-sibling::p[1])')

        p.add_contact('address', address, 'legislature')
        p.add_contact('voice', phone, 'legislature')
        return p
Пример #24
0
  def get_people(self):
    page = lxmlize(COUNCIL_PAGE)

    mayor_url = page.xpath('//a[contains(text(), "Mayor")]/@href')[0]
    yield self.scrape_mayor(mayor_url)

    councillors_url = page.xpath('//a[contains(text(), "Councillors")]/@href')[0]
    cpage = lxmlize(councillors_url)

    councillor_rows = cpage.xpath('//tr[td//img]')[:-1]
    for councillor_row in councillor_rows:
      img_cell, info_cell = tuple(councillor_row)
      name = info_cell.xpath(
         'string(.//span[contains(text(), "Councillor")])')[len('Councillor '):]
      district = info_cell.xpath('string(.//p[contains(text(), "District")])')
      email = info_cell.xpath('string(.//a[contains(@href, "mailto:")])')
      if not email:
        email = info_cell.xpath('string(.//strong[contains(text(), "E-mail")]/following-sibling::text())')
      phone = info_cell.xpath(
          'string(.//p[contains(.//text(), "Telephone:")])').split(':')[1]
      img_url_rel = img_cell.xpath('string(//img/@href)')
      img_url = urljoin(councillors_url, img_url_rel)

      p = Legislator(name=name, post_id=district, role='Conseiller')
      p.add_source(COUNCIL_PAGE)
      p.add_source(councillors_url)
      p.add_contact('email', email, None)
      p.add_contact('voice', phone, 'legislature')
      p.image = img_url
      yield p
Пример #25
0
    def get_people(self):
        member_page = lxmlize(COUNCIL_PAGE)
        table = member_page.xpath('//table')[0]
        rows = table.cssselect('tr')[1:]
        for row in rows:
            (namecell, constitcell, partycell) = row.cssselect('td')
            full_name = namecell.text_content().strip()
            if full_name.lower() == 'vacant':
                continue
            (last, first) = full_name.split(',')
            name = first.replace('Hon.',
                                 '').strip() + ' ' + last.title().strip()
            district = ' '.join(constitcell.text_content().split())
            party = get_party(partycell.text)
            data = {'elected_office': 'MLA', 'source_url': COUNCIL_PAGE}

            url = namecell.cssselect('a')[0].get('href')
            photo, email = get_details(url)

            p = Legislator(name=name,
                           post_id=district,
                           role='MLA',
                           party=party,
                           image=photo)
            p.add_source(COUNCIL_PAGE)
            p.add_source(url)
            p.add_contact('email', email, None)
            yield p
Пример #26
0
def scrape_mayor(url):
    page = lxmlize(url)
    name = ' '.join(
        page.xpath('//div[@id="content"]/p[2]/text()')[0].split()[1:3])

    p = Legislator(name=name, post_id='Moncton', role='Mayor')
    p.add_source(url)

    p.image = page.xpath('//div[@id="content"]/p[1]/img/@src')[0]

    info = page.xpath('//table[@class="whiteroundedbox"]//tr[2]/td[1]')[1]
    address = ', '.join(info.xpath('./p[1]/text()')[1:4])
    address = re.sub(r'\s{2,}', ' ', address).strip()
    phone = info.xpath('.//p[2]/text()')[0].split(':')[1].strip()
    fax = info.xpath('.//p[2]/text()')[1].split(':')[1].strip()
    email = info.xpath('.//a/@href')[0].split(':')[1].strip()

    p.add_contact('address', address, 'legislature')
    if len(re.sub(r'\D', '', phone)) == 7:
        phone = '506-%s' % phone
    p.add_contact('voice', phone, 'legislature')
    p.add_contact('fax', fax, 'legislature')
    p.add_contact('email', email, None)

    return p
Пример #27
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)

        councillors = page.xpath('//div[@id="content"]//tr')

        for i, councillor in enumerate(councillors):
            if 'Maire' in councillor.text_content():
                name = councillor.xpath('./td')[1].text_content()
                district = 'Sainte-Anne-de-Bellevue'
                role = 'Maire'
            else:
                name = councillor.xpath('./td')[1].text_content()
                district = 'District ' + re.findall(
                    r'\d',
                    councillor.xpath('./td')[0].text_content())[0]
                role = 'Conseiller'

            p = Legislator(name=name, post_id=district, role=role)
            p.add_source(COUNCIL_PAGE)

            email = councillor.xpath('.//a')
            if email:
                email = email[0].attrib['href'].replace('mailto:', '')
                p.add_contact('email', email, None)
            yield p
Пример #28
0
    def get_people(self):

        page = lxmlize(COUNCIL_PAGE)

        councillors = page.xpath('//p[@class="WSIndent"]/a')
        for councillor in councillors:
            district = re.findall(r'(Ward [0-9]{1,2})',
                                  councillor.text_content())
            if district:
                district = district[0]
                name = councillor.text_content().replace(district, '').strip()
                role = 'Councillor'
            else:
                district = 'Kawartha Lakes'
                name = councillor.text_content().replace('Mayor', '').strip()
                role = 'Mayor'

            url = councillor.attrib['href']
            page = lxmlize(url)
            email = page.xpath(
                '//a[contains(@href, "mailto:")]/@href')[0].rsplit(
                    ':', 1)[1].strip()
            image = page.xpath('//img[@class="image-right"]/@src')[0]

            p = Legislator(name=name, post_id=district, role=role)
            p.add_source(COUNCIL_PAGE)
            p.add_source(url)
            p.add_contact('email', email, None)
            p.image = image
            yield p
Пример #29
0
    def get_people(self):
        page = lxmlize(COUNCIL_PAGE)

        councillor_trs = [
            tr for tr in page.xpath('//table//tr[1]') if len(tr) == 2
        ][:-1]
        for councillor_tr in councillor_trs:
            desc = [
                text.strip()
                for text in councillor_tr.xpath('.//text()[normalize-space()]')
                if text.strip()
            ]

            if len(desc) == 3:
                role = 'Maire'
                district = u'Saint-Jérôme'
            else:
                role = 'Conseiller'
                district = desc[0].replace(u'numéro ', '')

            name = desc[-3]
            phone = desc[-2]
            email = desc[-1]

            image = councillor_tr.xpath('string(.//img/@src)')[0]

            p = Legislator(name=name, post_id=district, role=role)
            p.add_source(COUNCIL_PAGE)
            p.image = image
            p.add_contact('voice', phone, 'legislature')
            p.add_contact('email', email, None)
            yield p
Пример #30
0
    def scrape_mayor(self, url):
        infos_page = lxmlize(url)
        infos = infos_page.xpath('//div[@class="item-page"]')[0]

        name = ' '.join(infos.xpath('p[2]/text()')[0].split(' ')[2:4])
        lname = name.lower()
        email = lname.split(' ')[0][0] + lname.split(
            ' ')[1] + '@langleycity.ca'
        photo_url = infos.xpath('p[1]/img/@src')[0]

        p = Legislator(name=name,
                       post_id='Langley',
                       role='Mayor',
                       image=photo_url)
        p.add_source(url)
        p.add_contact('email', email, None)

        personal_infos = infos.xpath('p[last()]/text()')

        phone = re.findall(r'Phone(:?) (.*)', '\n'.join(personal_infos))[0][1]
        address = re.findall(r'Address: (.*) Phone',
                             ' '.join(personal_infos))[0]
        p.add_contact('address', address, 'office')
        p.add_contact('voice', phone, 'office')

        return p