-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6a139a
commit 50626c9
Showing
6 changed files
with
81 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# SteamWishlistScraper | ||
|
||
Scrape your steam wishlist. | ||
|
||
## Table of Contents | ||
|
||
- [SteamWishlistScraper](#steamwishlistscraper) | ||
- [Table of Contents](#table-of-contents) | ||
- [Installing](#installing) | ||
- [Getting Started](#getting-started) | ||
- [Scrape wishlist](#scrape-wishlist) | ||
- [Global parameters](#global-parameters) | ||
- [Contributing](#contributing) | ||
- [License](#license) | ||
|
||
## Installing | ||
|
||
Download the latest binary from [releases](https://github.com/mpostument/SteamWishlistScraper) | ||
|
||
## Getting Started | ||
|
||
### Scrape wishlist | ||
|
||
1. Generate api key on [steam](https://steamcommunity.com/dev/apikey) | ||
2. Run SteamWishlistScraper | ||
`SteamWishlistScraper --username <SteamUserName> --apikey <ApiKey>` | ||
|
||
Note: Api key can be added to $HOME/.SteamWishlistScraper.yaml as `apikey: <ApiKey>` | ||
|
||
## Global parameters | ||
|
||
`username` - Steam user name. Default `""` | ||
`apikey` - Steam api key. Default `""` | ||
|
||
## Contributing | ||
|
||
1. Fork it | ||
2. Download your fork to your PC ( `git clone https://github.com/mpostument/SteamWishlistScraper && cd SteamWishlistScraper` ) | ||
3. Create your feature branch ( `git checkout -b my-new-feature` ) | ||
4. Make changes and add them ( `git add .` ) | ||
5. Commit your changes ( `git commit -m 'Add some feature'` ) | ||
6. Push to the branch ( `git push origin my-new-feature` ) | ||
7. Create new pull request | ||
|
||
## License | ||
|
||
SteamWishlistScraper is released under the Apache 2.0 license. See [LICENSE.txt](https://github.com/mpostument/SteamWishlistScraper/blob/master/LICENSE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package pkg | ||
package steam | ||
|
||
import ( | ||
"bufio" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters