mirror of
https://github.com/vane/ceidg
synced 2024-11-10 06:06:10 +01:00
31 lines
1021 B
Python
31 lines
1021 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
import os
|
|
from bs4 import BeautifulSoup, Comment
|
|
from datetime import datetime
|
|
import requests
|
|
import urllib3
|
|
|
|
url = 'https://prod.ceidg.gov.pl/ceidg.cms.engine/template/includes/statisticpage.aspx?id=3814cf7f-246d-4cc3-8b89-88aa1395df1d'
|
|
|
|
resp = requests.get(url)
|
|
soup = BeautifulSoup(resp.content, 'html.parser')
|
|
tdlist = soup.find_all('td')
|
|
registered = tdlist[1].text.strip()
|
|
renewed = tdlist[3].text.strip()
|
|
suspended = tdlist[5].text.strip()
|
|
closed = tdlist[7].text.strip()
|
|
|
|
all = BeautifulSoup(str(soup.find_all(string=lambda text: isinstance(text, Comment))[0]), 'html.parser').find_all('td')[1].text.strip()
|
|
|
|
print(registered, renewed, suspended, closed, all)
|
|
|
|
dt = datetime.now()
|
|
fname = dt.strftime('%Y-%m-%d')
|
|
dt_folder_name = dt.strftime('%Y')
|
|
if not os.path.exists(f'data/{dt_folder_name}'):
|
|
os.makedirs(f'data/{dt_folder_name}')
|
|
|
|
with open(f'data/{dt_folder_name}/{fname}.txt', 'w+') as f:
|
|
f.write(f'{registered},{renewed},{suspended},{closed},{all}')
|