No project description provided
Project description
E-sim Scraper
Unofficial scraper for the e-sim browser game.
Installation
pip install -U e-sim-game-scraper
Usage
from e_sim_game_scrapper import EsimScraper
# or from e_sim_game_scrapper.EsimScraper import get_page_data
# Example 1
link = "https://luxia.e-sim.org/battleDrops.html?id=1&showSpecialItems=yes"
result = EsimScraper.get_page_data(link)
# >>> {'pages': 2, 'drops': [{'nick': 'Taturuski', 'item': 'Bandage size A', 'citizen_id': 912},
# >>> {'nick': 'Sverlio77_77', 'item': 'Bandage size C', 'citizen_id': 307}, ...]}
# Example 2 (locked page)
import requests
from lxml.html import fromstring
tree = fromstring(requests.get(link).text) # this is a locked page, so you actually have to log-in first.
link = "https://luxia.e-sim.org/showShout.html?id=1"
result = EsimScraper.get_page_data(link, tree)
# or call the function directly:
result = EsimScraper.showShout(tree)
List of supported base-links / functions (alphabetical order):
- achievement
- article
- auction
- battleDrops
- battles
- battlesByWar
- citizenStatistics
- coalitionStatistics
- companiesForSale
- congressElections
- countryEconomyStatistics
- countryPoliticalStatistics
- countryStatistics
- events
- jobMarket
- law
- monetaryMarket
- newCitizenStatistics
- newCitizens
- news
- newspaper
- newspaperStatistics
- party
- partyStatistics
- presidentalElections
- productMarket
- profile
- region
- showShout
- stockCompany
- stockCompanyMoney
- stockCompanyProducts
(Note: not all of them are tested, some of them may not work properly, as those are dynamic pages that may change over time.)
There are tests for most of them locally, but they are not included in the package for now.
Support the Project:
The development and maintenance of this bot are ongoing. If you find it valuable, please consider supporting it through a donation:
Your contributions will help ensure the bot's continued improvement and availability for the e-Sim community.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file e_sim_game_scraper-0.0.7.tar.gz
.
File metadata
- Download URL: e_sim_game_scraper-0.0.7.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da8af9b6570e9a9222d88a9b76d14450aead92bb06532af0440083b3e94e4b1b |
|
MD5 | 9b87d5b805c84bc5e4dc796c887ff9c3 |
|
BLAKE2b-256 | 6e8d5c78efe4931ed18d8d66dcbb8dd71b4eedd3d0296a81270083ae1df7a726 |
File details
Details for the file e_sim_game_scraper-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: e_sim_game_scraper-0.0.7-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f96fe97d81d1508a643e674ee8c6a0af858d60da0349145746c1ec9065a2e1 |
|
MD5 | 2a1303e8414653881d63f7d7378d0346 |
|
BLAKE2b-256 | 8b3fc7d74d9f2e6c2d0b447bd96058c979d3f62c337be0eb7936c16197c3a7b7 |