From 00dfc229c9c64d26763322728a51e13ba0ae11c2 Mon Sep 17 00:00:00 2001 From: akamhy <64683866+akamhy@users.noreply.github.com> Date: Mon, 4 May 2020 21:03:37 +0530 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79cf170..e5405c6 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Using [pip](https://en.wikipedia.org/wiki/Pip_(package_manager)): ## Usage -### Capturing/Saving an url/website. Using save(). +#### Capturing/Saving an url/website. Using save(). ```diff + waybackpy.save(url, UA=user_agent) @@ -33,7 +33,7 @@ This should print something similar to the following archived URL: -### Receiving the oldest archive for an URL. Using oldest(). +#### Receiving the oldest archive for an URL. Using oldest(). ```diff + waybackpy.oldest(url, UA=user_agent) @@ -51,7 +51,7 @@ This returns the oldest available archive for (Check it out -### Receiving the recent most/newest archive for an URL. Using newest(). +#### Receiving the recent most/newest archive for an URL. Using newest(). ```diff + waybackpy.newest(url, UA=user_agent) @@ -68,7 +68,7 @@ This returns the newest available archive for , -### Receiving archive close to a specified year, month, day, hour, and minute! Using near(). +#### Receiving archive close to a specified year, month, day, hour, and minute! Using near(). ```diff + waybackpy.near(url, year=2020, month=1, day=1, hour=1, minute=1, UA=user_agent)