Metadata-Version: 2.1
Name: nbdev-cards
Version: 0.0.1
Summary: A sample of how to create a deck of cards lib using nbdev
Home-page: https://github.com/fastai/nbdev_cards/
Author: Jeremy Howard
Author-email: j@fast.ai
License: Apache Software License 2.0
Keywords: nbdev
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

nbdev_cards
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

A deck of cards demo of [nbdev](https://nbdev.fast.ai) based on ideas
from [Think Python 2nd
Edition](https://greenteapress.com/wp/think-python-2e/) by Allen B.
Downey.

## Install

Install using:

    pip install nbdev-cards

or:

    conda install -c fastai nbdev-cards

## How to use

This lib provides a
[Card](https://fastai.github.io/nbdev-cards/nbdev_cards.card.html#card)
class you can use to create, display, and compare playing cards:

``` python
Card(1,3)
```

    3♦️

Suits are numbered according to this list:

``` python
suits
```

    ['♣️', '♦️', '❤️', '♠️']
