โ Cardmarket API down, this app and API wrapper won't work until they reopen it |
---|
See the Changelog for what's new. See the Trello board for ongoing work. Hop in on the Discord server if you want help or to discuss development.
Python wrapper for the cardmarket.com API (version 2.0, using OAuth1 and the "Dedicated app" option).
The included sample app can update your stock prices to trend, all rounded to nearest configurable value per rarity (default .25 โฌ). A confirmation step allows you to check the result before uploading the new prices.
The app can import a .csv list of cards to your stock. It can also be used to clear your entire stock. The app keeps track of how many API requests your have left each day, and can do partial updates if you have more than 5000 articles to update.
The price calculation is modular and you can write your own algorithm in python if you want.
NOTE: Use all functionality at your own risk, I take no responsibility for the resulting prices or wiped stock. See 'price calculation' below for more details.
Fetching Cardmarket account data...
Fetching account data took 0s
โญโโโ PyMKM 2.3.0 โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ 1: Update stock prices (24 items) โ
โ 2: Update price for a product โ
โ 3: Find deals from a user โ
โ 4: Show top 10 expensive items in stock โ
โ 5: Wantslists cleanup suggestions โ
โ 6: Clear partial updates โ
โ 7: Clear entire stock โ
โ 8: Import stock from list.csv โ
โ 9: Track price data to prices.csv โ
โ 0: Exit โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Testa Testerson (testerson123) โ
โ API calls used today: 69/5000 โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Action number: 1
100% (74 of 74) |#########################################| Elapsed Time: 0:00:21 Time: 0:00:21
Total stock value: 49.25
Note: 2 items filtered out because of sticky prices.
Best diffs:
Count Name Foil Playset Old price New price Diff
------- --------------- ------ --------- ----------- ----------- ------
1 Manaweft Sliver 1.25 1.5 0.25
Worst diffs:
Count Name Foil Playset Old price New price Diff
------- -------------------------------- ------ --------- ----------- ----------- ------
1 Shield of the Oversoul 1 0.75 -0.25
1 Battle Sliver โ 1 0.75 -0.25
2 Predatory Sliver โ 2 1.75 -0.25
1 Kalemne, Disciple of Iroas (V.1) 0.75 0.5 -0.25
1 Foreboding Ruins 1.5 1.25 -0.25
Total price difference: -1.25.
Do you want to update these prices? [y/N]:
- Install requirements using
pip install -r requirements.txt
- Copy
config_template.json
toconfig.json
and fill in your API keys. - Run
python pymkm.py
. - Profit.
The price data is supplied by the Cardmarket API. This app contains a basic algorithm for updating prices:
NOTE: This is a rough algorithm, designed to be safe and not to sell aggressively.
- Filter out English, not altered, not signed, minimum Good condition.
- Set price to lowest + (median - lowest / 4), rounded to closest rouding limit.
- Undercut price in seller's own country by the rounding limit if not contradicting 2)
- Never go below the rounding limit for foils
Base prices (โฌ) and discounts for lower grading (decimal %) can be set in config.json
.
You can also create your own custom price calculation algorithm by using the config value
custom_price_calculator
(see details below).
Should you want to avoid updating certain articles in your stock, set the starting character of the comment for that article to !
(possible to change which character in config.json
).
This function selects a wantslist and dumps price data for all products in that list to a .csv file.
NOTE: This does not work for metaproducts, only for products.
Some functions have command line support, see python pymkm.py --help
for more info.
Note that the --cached
or --no-cached
argument is required to set to be able to use CLI variant of pymkm.
python pymkm.py --update_stock --partial 500 --cached
This updates the stock, 500 articles each time, using the local cache of the stock if available.
python pymkm.py --price_check_wantslist fancycards --no-cached
This dumps price data for all the cards in the wantslist "fancycards" to a .csv file, not using the local cache of the wantslists.
If you scan cards using an app like Delver Lens or the TCG Player app, this feature can help you do bulk import of that list. Only works for Magic.
Drop your list of cards into a file called list.csv
in the root directory (there is an example file included in this repo).
Remove all quotation marks and extra commas in card names.
Any cards that fail to import are written to a new .csv file called failed_imports.csv
.
The following columns are imported as default. This can be changed in config.json
.
Note that you can only remove or move around columns, not add ones that are not present in the list below!
name
: Card name, i.e. "Temple of Silence"set_name
: Expansion "long name", i.e. "Scars of Mirrodin"count
: Number of cards to be imported for this rowfoil
: Is the card foil? ["foil"
= true, empty column = false]language_name
: Language long name, i.e. "English". For a list of compatible langauge names, seeidLanguage
chapter in this README.condition
: The card condition as per Cardmarket's grading (seeminCondition
chapter in this README).comments
: The comments to add to the article in your stock.
The following columns are available but not enabled by default:
signed
: Is the card signed? [any string = true, empty column = false]altered
: Is the card altered? [any string = true, empty column = false]playset
: Is the card a playset? [any string = true, empty column = false]
This can be used to load in a custom price calculation module. Here is an example config value for addressing your custom class:
"custom_price_calculator": "custom.calculators.DiscountForGoblinsCalculator",
Use the supplied example class to get started. Look at DefaultPriceCalculator
in pymkm_calculators
if you want to study the default algorithm.
Set a lower price limit (and also rounding target) for different rarities.
Example: "mythic": "1.0"
would set the lowest price Mythic rarity cards to โฌ1, and would set prices to round to nearest โฌ1.
Set a decimal multiplier on each card condition level.
Example: "PL": "0.5"
would set the price for Played cards to 50% off the trend price.
Variable | Value |
---|---|
language | Specify a language to find deals from a specific user. |
isAltered | Determines if the card is altered. |
isSigned | Determines if the card is signed. |
minCondition | Determines the minimal condition of a card. (see below for additional information) |
userType | Only articles from sellers with the specified user type are returned. (private, commercial, powerseller) |
idLanguage | Only articles that match the given language are returned. (see below for additional information) |
Abbreviation | Condition |
---|---|
MT | Mint |
NM | Near Mint (default value when not specified) |
EX | Excellent |
GD | Good |
LP | Light-played |
PL | Played |
PO | Poor |
ID | Language |
---|---|
1 | English |
2 | French |
3 | German |
4 | Spanish |
5 | Italian |
6 | Simplified Chinese |
7 | Japanese |
8 | Portuguese |
9 | Russian |
10 | Korean |
11 | Traditional Chinese |
The character in the card comment used to disable price updates for specific cards.
Default !
.
The name of the file storing partial updates.
Default partial_stock_update.txt
.
The name of the database file storing cached data.
Default local_pymkm_data.db
.
The name of the file which CSV importing is done from.
Default list.csv
.
The default condition for all CSV import rows that are not specified in the csv file.
Default NM
.
How many best and worst items to show after a price update.
Default 20
.
How many items to show in the Top X expensive function.
Default 20
.
Log level for the application and API.
Default WARNING
.
Variable | Value |
---|---|
idGame | Specifies the Game the stock file is for. (1=Mtg, 3=YGO, 6=PKM) |
isSealed | Specifies if sealed product should be returned. (true, false) |
idLanguage | Specifies the Language of the Local Name column. (default is 1 for English) |