in src/scripts/atel_crawler.py [0:0]
def get_max_id(cls):
response = requests.get(
f'{cls._url}/?rss',
headers=cls._headers,
)
xml = BeautifulSoup(response.text, 'html.parser')
return int(xml.find('item').attrs['rdf:about'].rpartition('=')[2])