Metadata-Version: 2.1
Name: nbdev-cards-nix-flake
Version: 0.0.1
Summary: Modelling GNN following LAIDD tutorial
Home-page: https://github.com/sepiabrown/nbdev_cards/
Author: Suwon Park
Author-email: bboxone@gmail.com
License: Apache Software License 2.0
Keywords: nbdev
Platform: UNKNOWN
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! -->

Published : 2022-09-12 22:22:37 (KST)

트럼프 카드 라이브러리에 대한 아이디어는 [Think Python 2nd Edition by
Allen B. Downey](https://greenteapress.com/wp/think-python-2e/)에서
가져옴.

## 설치

다음의 코드를 이용해 설치한다:

``` sh
pip install card
```

다른 방법:

``` sh
conda install -c sepiabrown card
```

## 사용법

이 라이브러리는 트럼프 카드들을 생성하고 비교할 수 있는
[`Card`](https://sepiabrown.github.io/nbdev_cards/card.html#card)
클래스를 제공한다.

``` python
Card(suit=1,rank=3)
```

    3♦️

``` python
suits
```

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

``` python
assert Card(suit=1, rank=3)<Card(suit=2, rank=3)
```


