Update README.md (#24)
- IA and Wayback machine logo, added new waybackpy logo. + changed pages to webpages in lead
This commit is contained in:
parent
cbf2f90faa
commit
32d8ad7780
18
README.md
18
README.md
@ -15,11 +15,9 @@
|
|||||||
![Repo size](https://img.shields.io/github/repo-size/akamhy/waybackpy.svg?label=Repo%20size&style=flat-square)
|
![Repo size](https://img.shields.io/github/repo-size/akamhy/waybackpy.svg?label=Repo%20size&style=flat-square)
|
||||||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/akamhy/waybackpy/blob/master/LICENSE)
|
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/akamhy/waybackpy/blob/master/LICENSE)
|
||||||
|
|
||||||
|
![Wayback Machine](https://raw.githubusercontent.com/akamhy/waybackpy/master/assets/waybackpy-colored%20284.png)
|
||||||
|
|
||||||
![Internet Archive](https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Internet_Archive_logo_and_wordmark.svg/84px-Internet_Archive_logo_and_wordmark.svg.png)
|
Waybackpy is a Python library that interfaces with the [Internet Archive](https://en.wikipedia.org/wiki/Internet_Archive)'s [Wayback Machine](https://en.wikipedia.org/wiki/Wayback_Machine) API. Archive webpages and retrieve archived webpages easily.
|
||||||
![Wayback Machine](https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Wayback_Machine_logo_2010.svg/284px-Wayback_Machine_logo_2010.svg.png)
|
|
||||||
|
|
||||||
Waybackpy is a Python library that interfaces with the [Internet Archive](https://en.wikipedia.org/wiki/Internet_Archive)'s [Wayback Machine](https://en.wikipedia.org/wiki/Wayback_Machine) API. Archive pages and retrieve archived pages easily.
|
|
||||||
|
|
||||||
Table of contents
|
Table of contents
|
||||||
=================
|
=================
|
||||||
@ -30,9 +28,9 @@ Table of contents
|
|||||||
* [Usage](#usage)
|
* [Usage](#usage)
|
||||||
* [As a Python package](#as-a-python-package)
|
* [As a Python package](#as-a-python-package)
|
||||||
* [Saving an url using save()](#capturing-aka-saving-an-url-using-save)
|
* [Saving an url using save()](#capturing-aka-saving-an-url-using-save)
|
||||||
* [Receiving the oldest archive for an URL Using oldest()](#receiving-the-oldest-archive-for-an-url-using-oldest)
|
* [Retrieving the oldest archive for an URL Using oldest()](#receiving-the-oldest-archive-for-an-url-using-oldest)
|
||||||
* [Receiving the recent most/newest archive for an URL using newest()](#receiving-the-newest-archive-for-an-url-using-newest)
|
* [Retrieving the recent most/newest archive for an URL using newest()](#receiving-the-newest-archive-for-an-url-using-newest)
|
||||||
* [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)
|
* [Retrieving 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)
|
||||||
* [Get the content of webpage using get()](#get-the-content-of-webpage-using-get)
|
* [Get the content of webpage using get()](#get-the-content-of-webpage-using-get)
|
||||||
* [Count total archives for an URL using total_archives()](#count-total-archives-for-an-url-using-total_archives)
|
* [Count total archives for an URL using total_archives()](#count-total-archives-for-an-url-using-total_archives)
|
||||||
* [With Command-line interface](#with-the-command-line-interface)
|
* [With Command-line interface](#with-the-command-line-interface)
|
||||||
@ -85,7 +83,7 @@ https://web.archive.org/web/20200504141153/https://github.com/akamhy/waybackpy
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Receiving the oldest archive for an URL using oldest()
|
#### Retrieving the oldest archive for an URL using oldest()
|
||||||
```python
|
```python
|
||||||
import waybackpy
|
import waybackpy
|
||||||
|
|
||||||
@ -105,7 +103,7 @@ http://web.archive.org/web/19981111184551/http://google.com:80/
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Receiving the newest archive for an URL using newest()
|
#### Retrieving the newest archive for an URL using newest()
|
||||||
```python
|
```python
|
||||||
import waybackpy
|
import waybackpy
|
||||||
|
|
||||||
@ -125,7 +123,7 @@ https://web.archive.org/web/20200714013225/https://www.facebook.com/
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Receiving archive close to a specified year, month, day, hour, and minute using near()
|
#### Retrieving archive close to a specified year, month, day, hour, and minute using near()
|
||||||
```python
|
```python
|
||||||
from waybackpy import Url
|
from waybackpy import Url
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user