[docs] Fix README, guide

This commit is contained in:
zevaryx 2025-03-07 08:40:49 -07:00
parent 759f6d9fc6
commit abca0509da
2 changed files with 19 additions and 3 deletions

View file

@ -1,3 +1,22 @@
# Scryfall-py # Scryfall-py
An async Scryfall API wrapper written in Python An async Scryfall API wrapper written in Python
## Usage
### Installation
To get started, install `scryfall-py`
`pip install scryfall-py`
### Getting started
```py
from scryfall import Scryfall
client = Scryfall()
card = await client.search_cards_named("Arcades, the Strategist")
```
This will fetch the card Arcades, the Strategist from the Scryfall API

View file

@ -12,9 +12,6 @@ To get started, install ``scryfall-py``::
Getting Started Getting Started
*************** ***************
Hashing Files
~~~~~~~~~~~~~
.. code-block:: python .. code-block:: python
from scryfall import Scryfall from scryfall import Scryfall