Metadata-Version: 2.1
Name: nbdev-hellow-world
Version: 0.0.2
Summary: Just a quick tutorial for nbdev
Home-page: https://github.com/chsafouane/nbdev-hellow-world
Author: Safouane Chergui
Author-email: 106234065+schergui-thefork@users.noreply.github.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

nbdev_hellow_world
================

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

A deck of cards demo of [nbdev](https://nbdev.fast.ai) based on ideas
from Allen Downey.

## Install

Install using:

``` sh
pip install nbdev_hellow_world
```

or

``` sh
conda install -c fastai nbdev-hellow-world
```

## How to use

This lib provides a
[`Card`](https://chsafouane.github.io/nbdev-hellow-world/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
```

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

Ranks are numbered according to this list:

``` python
ranks
```

    [None, 'A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K']
