https://github.com/shimech/pokemon-db-maker
Webクローリングでポケモン図鑑を生成
https://github.com/shimech/pokemon-db-maker
beautifulsoup crawler docker pokemon scraper
Last synced: 5 months ago
JSON representation
Webクローリングでポケモン図鑑を生成
- Host: GitHub
- URL: https://github.com/shimech/pokemon-db-maker
- Owner: shimech
- License: mit
- Created: 2020-03-21T06:38:54.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-01-28T11:33:29.000Z (over 2 years ago)
- Last Synced: 2024-01-28T13:30:54.004Z (over 2 years ago)
- Topics: beautifulsoup, crawler, docker, pokemon, scraper
- Language: Python
- Homepage:
- Size: 448 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ポケモン図鑑メーカー
## Dependencies
- local OS: macOS Big Sur 11.2.3
- Python: 3.9.4
- Poetry: 1.1.4
- Docker: 20.10.5
## Usage
### install packages
```sh
make install
```
### build an environment on docker
```sh
make build
```
### run both of crawler and scraper
on docker
```sh
make docker-run
```
on local
```sh
make local-run
```
only crawler
```sh
make docker-run --crawl
```
only scraper
```sh
make docker-run --scrape
```
### convert csv to json
on docker
```sh
make docker-csv2json
```
on local
```sh
make local-csv2json
```
## Reference
- [ポケモン徹底攻略](https://yakkun.com/swsh/stats_list.htm?mode=all)