Skip to content

Commit

Permalink
Merge branch 'deckbox_serializer'
Browse files Browse the repository at this point in the history
  • Loading branch information
gwax committed Mar 11, 2016
2 parents 7e56216 + 023eaac commit debef10
Show file tree
Hide file tree
Showing 18 changed files with 1,057 additions and 264 deletions.
102 changes: 0 additions & 102 deletions DESCRIPTION.rst

This file was deleted.

88 changes: 0 additions & 88 deletions README.md

This file was deleted.

185 changes: 185 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
mtg-ssm - Magic: the Gathering Spreadsheet Manager
===================================================

.. image:: https://img.shields.io/coveralls/gwax/mtg_ssm.svg
:target: https://coveralls.io/r/gwax/mtg_ssm

.. image:: https://img.shields.io/travis/gwax/mtg_ssm/master.svg
:target: https://travis-ci.org/gwax/mtg_ssm

.. image:: https://img.shields.io/pypi/v/mtg-ssm.svg
:target: https://pypi.python.org/pypi/mtg-ssm/

.. image:: https://img.shields.io/pypi/pyversions/mtg-ssm.svg
:target: https://pypi.python.org/pypi/mtg-ssm/

.. image:: https://img.shields.io/pypi/dm/mtg-ssm.svg
:target: https://pypi.python.org/pypi/mtg-ssm/

`mtg-ssm`_ is a tool for creating/updating user-friendly spreadsheets with
Magic: the Gathering collection information. The tool can also
import/export data to/from these spreadsheets to other formats, such as
CSV files.

.. _mtg-ssm: https://github.com/gwax/mtg_ssm

As a matter of convenience, you can store the created spreadsheet in
Dropbox, Google Drive, or the like and access your collection from
anywhere.

Installation
============

mtg-ssm is available on PyPI so, if you have python (>=3.3) and pip
installed on your system, you should be able to get mtg-ssm by entering
the following into a terminal:

.. code:: bash
pip3 install mtg_ssm
Updates can be performed by entering:

.. code:: bash
pip3 install -U mtg_ssm
You can verify installation from the terminal by running:

.. code:: bash
mtg-ssm --help
Usage
=====

For first time use, you will want to create an empty spreadsheet with
card data:

.. code:: bash
mtg-ssm collection.xlsx
In the future, when new sets are released, running the same command will
update your collection spreadsheet while keeping existing counts:

.. code:: bash
mtg-ssm collection.xlsx
Existing collections
--------------------

If you already have your cards in another collection store, you might
want to import that collection into your card spreadsheet.

First create an example csv file:

.. code:: bash
mtg-ssm --format csv collection.csv.example
Then modify the template to match your counts and import into your
spreadsheet:

.. code:: bash
mtg-ssm collection.xlsx collection.csv
Export / import to deckbox
--------------------------

If you already have your cards entered into `Deckbox`_, you can export a
csv from deckbox and import the contents into a spreadsheet just as you might
merge from an existing collection using the "deckbox" import format:

.. _Deckbox: https://deckbox.org

.. code:: bash
mtg-ssm --import_format collection.xlsx Inventory_username_2016.March.10.csv
Alternatively, if you have your collection in a spreadsheet already and would
like to load your data into deckbox to check prices or share with other people,
just go the other direction.

.. code:: bash
mtg-ssm --format inventory.csv collection.xlsx
Deckbox Warning
~~~~~~~~~~~~~~~

MTG JSON, which we use for card data doesn't always map 1-to-1 to cards in
Deckbox. This means that data can lose granularity in going from one form
to the other, or back. If you intend to use both native mtg-ssm spreadsheets
and Deckbox, I encourage you to choose one to be authoritative and always
export to the other; going back and forth is probably not a good idea.

The following conversion issues are known to exist:

- Sets that contain multiple versions of the same card (ex. Thallid in Fallen
Empires) may lose track of the specific version when going back and forth.
- Alternate art cards (ex. Ertai, the Corrupted in Planeshift) may lose track
of the art version when going back and forth.
- Not all Clash Pack cards are available in mtg-ssm.

Contributions
=============

Pull requests are welcome and contributions are greatly appreciated.

Issues can be reported via GitHub.

Acknowledgments
===============

- `Wizards of the Coast`_: For making Magic: the Gathering and continuing
to support it. Off and on, it's been my favorite hobby since the
early '90s.
- `MTG JSON`_: MTG JSON is an amazing resource for anyone looking to build
tools around magic card data. It is pretty much **THE** source for
structured magic card data. Without MTG JSON this project would not have
been possible.

.. _Wizards of the Coast: http://magic.wizards.com
.. _MTG JSON: http://mtgjson.com


Changelog
=========

1.2.x
-----

- Add support for deckbox.org import/export.

1.2.0
-----

- Complete rework of the serialization architecture.
- Rebuild of the manager cli.
- Incompatible CLI interface changes. See help for new usage information.

1.1.0
-----

- Complete rework of the data model storage. Drop sqlite based data models in
favor of custom classes and dict based indexes.
- Switch to accepting all versions of MTGJSON instead of bumping for every
release.

1.0.2
-----

- Version bump MTGJSON support.

1.0.1
-----

Fixed some PyPI related issues.

1.0.0
-----

* Initial stable release.
Loading

0 comments on commit debef10

Please sign in to comment.