From 76b4d00ba826097a0f4cb16d54bcb58560c4e46d Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Wed, 21 Feb 2018 19:29:32 -0500 Subject: [PATCH] Fixing README formatting. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 23b7efd..fb8a075 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,11 @@ There will be no attempts to keep backwards compatibility for the duration of th There is no default rate limiting for this library. Not all projects are created equal, so not all of them will need a universal limit. It's up to the responsibility of the user to make sure they don't overload Scryfall's servers. The simplest way to prevent sending too many requests too quickly is the following: + >>> time.sleep(0.1) >>> card = scrython.cards.Random() Or in asyncronous applications: + >>> await asyncio.sleep(0.1) >>> card = scrython.cards.Random()