https://github.com/turbot/steampipe-plugin-pokemon
Use SQL to instantly query Pokémon, items, moves, and more from PokéAPI. Open source CLI. No DB required.
https://github.com/turbot/steampipe-plugin-pokemon
hacktoberfest pokeapi pokemon postgresql postgresql-fdw sql steampipe steampipe-plugin
Last synced: 5 months ago
JSON representation
Use SQL to instantly query Pokémon, items, moves, and more from PokéAPI. Open source CLI. No DB required.
- Host: GitHub
- URL: https://github.com/turbot/steampipe-plugin-pokemon
- Owner: turbot
- License: apache-2.0
- Created: 2021-07-08T12:52:46.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T21:04:52.000Z (almost 2 years ago)
- Last Synced: 2025-09-06T06:43:31.589Z (10 months ago)
- Topics: hacktoberfest, pokeapi, pokemon, postgresql, postgresql-fdw, sql, steampipe, steampipe-plugin
- Language: Go
- Homepage: https://hub.steampipe.io/plugins/turbot/pokemon
- Size: 94.7 KB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

# Pokemon Plugin for Steampipe
Use SQL to query infrastructure including servers, networks, identity and more from Pokemon.
- **[Get started →](https://hub.steampipe.io/plugins/turbot/pokemon)**
- Documentation: [Table definitions & examples](https://hub.steampipe.io/plugins/turbot/pokemon/tables)
- Community: [Slack Channel](https://join.slack.com/t/steampipe/shared_invite/zt-oij778tv-lYyRTWOTMQYBVAbtPSWs3g)
- Get involved: [Issues](https://github.com/turbot/steampipe-plugin-pokemon/issues)
## Quick start
Install the plugin with [Steampipe](https://steampipe.io):
```shell
steampipe plugin install pokemon
```
Run a query:
```sql
select name, id from pokemon_pokemon
```
## Developing
Prerequisites:
- [Steampipe](https://steampipe.io/downloads)
- [Golang](https://golang.org/doc/install)
Clone:
```sh
git clone https://github.com/turbot/steampipe-plugin-pokemon.git
cd steampipe-plugin-pokemon
```
Build, which automatically installs the new version to your `~/.steampipe/plugins` directory:
```
make
```
Configure the plugin:
```
cp config/* ~/.steampipe/config
vi ~/.steampipe/config/pokemon.spc
```
Try it!
```
steampipe query
> .inspect pokemon
```
Further reading:
- [Writing plugins](https://steampipe.io/docs/develop/writing-plugins)
- [Writing your first table](https://steampipe.io/docs/develop/writing-your-first-table)
## Contributing
Please see the [contribution guidelines](https://github.com/turbot/steampipe/blob/main/CONTRIBUTING.md) and our [code of conduct](https://github.com/turbot/steampipe/blob/main/CODE_OF_CONDUCT.md). All contributions are subject to the [Apache 2.0 open source license](https://github.com/turbot/steampipe-plugin-pokemon/blob/main/LICENSE).
`help wanted` issues:
- [Steampipe](https://github.com/turbot/steampipe/labels/help%20wanted)
- [Pokemon Plugin](https://github.com/turbot/steampipe-plugin-pokemon/labels/help%20wanted)