diff --git a/e_sim_game_scrapper/EsimScraper.py b/e_sim_game_scrapper/EsimScraper.py index b599bd0..4827713 100644 --- a/e_sim_game_scrapper/EsimScraper.py +++ b/e_sim_game_scrapper/EsimScraper.py @@ -379,6 +379,10 @@ def countryEconomyStatistics(tree: fromstring) -> dict: return result +def stockCompanyStatistics(tree: fromstring, link: str) -> dict: + return citizenStatistics(tree, link) + + def citizenStatistics(tree: fromstring, link: str) -> dict: citizens = "citizenStatistics" in link country = tree.xpath('//*[@id="countryId"]//option[@selected="selected"]')[0].text diff --git a/setup.py b/setup.py index 8b64f20..44ebb8f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="e-sim-game-scraper", # https://pypi.org/project/e-sim-game-scraper - version='0.0.2', + version='0.0.3', author="Akiva", author_email="akiva0003@gmail.com", url=f"https://github.com/akiva0003/e-sim-game-scraper",