https://github.com/dvampire/genshinimpact
https://github.com/dvampire/genshinimpact
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dvampire/genshinimpact
- Owner: DVampire
- License: mit
- Created: 2025-01-01T14:41:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-17T08:07:34.000Z (about 1 year ago)
- Last Synced: 2025-01-17T09:20:17.723Z (about 1 year ago)
- Language: Python
- Size: 396 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GenshinImpact
## Install
```bash
conda create -n crawler python=3.12.0
conda activate crawler
# install poetry
curl -sSL https://install.python-poetry.org | python3 -
poetry install
```
## Development
```bash
# install the environment
make install
# configure pre-commit
pre-commit install --config dev_config/python/.pre-commit-config.yaml
# install playwright
pip install playwright
playwright install
# install elastic search
brew install openjdk # install java
sudo ./bin/elasticsearch # start elastic search
```