updated index.rst and minor docs updated.

This commit is contained in:
Akash Mahanty 2020-10-17 16:56:51 +05:30
parent 50e3154a4e
commit 2b132456ac
4 changed files with 133 additions and 66 deletions

View File

@ -27,7 +27,7 @@ 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](#capturing-aka-saving-an-url-using-save) * [Saving a webpage](#capturing-aka-saving-an-url-using-save)
* [Retrieving archive](#retrieving-the-archive-for-an-url-using-archive_url) * [Retrieving archive](#retrieving-the-archive-for-an-url-using-archive_url)
* [Retrieving the oldest archive](#retrieving-the-oldest-archive-for-an-url-using-oldest) * [Retrieving the oldest archive](#retrieving-the-oldest-archive-for-an-url-using-oldest)
* [Retrieving the recent most/newest archive](#retrieving-the-newest-archive-for-an-url-using-newest) * [Retrieving the recent most/newest archive](#retrieving-the-newest-archive-for-an-url-using-newest)
@ -38,7 +38,7 @@ Table of contents
* [List of URLs that Wayback Machine knows and has archived for a domain name](#list-of-urls-that-wayback-machine-knows-and-has-archived-for-a-domain-name) * [List of URLs that Wayback Machine knows and has archived for a domain name](#list-of-urls-that-wayback-machine-knows-and-has-archived-for-a-domain-name)
* [With the Command-line interface](#with-the-command-line-interface) * [With the Command-line interface](#with-the-command-line-interface)
* [Save](#save) * [Saving webpage](#save)
* [Archive URL](#get-archive-url) * [Archive URL](#get-archive-url)
* [Oldest archive URL](#oldest-archive) * [Oldest archive URL](#oldest-archive)
* [Newest archive URL](#newest-archive) * [Newest archive URL](#newest-archive)

179
index.rst
View File

@ -9,7 +9,7 @@ waybackpy
:alt: Wayback Machine :alt: Wayback Machine
Wayback Machine Wayback Machine
Waybackpy is a Python library that interfaces with `Internet Waybackpy is a Python package that interfaces with `Internet
Archive <https://en.wikipedia.org/wiki/Internet_Archive>`__'s `Wayback Archive <https://en.wikipedia.org/wiki/Internet_Archive>`__'s `Wayback
Machine <https://en.wikipedia.org/wiki/Wayback_Machine>`__ API. Archive Machine <https://en.wikipedia.org/wiki/Wayback_Machine>`__ API. Archive
webpages and retrieve archived webpages easily. webpages and retrieve archived webpages easily.
@ -26,11 +26,15 @@ 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 <#capturing-aka-saving-an-url-using-save>`__ - `Saving a webpage <#capturing-aka-saving-an-url-using-save>`__
- `Retrieving
archive <#retrieving-the-archive-for-an-url-using-archive_url>`__
- `Retrieving the oldest - `Retrieving the oldest
archive <#retrieving-the-oldest-archive-for-an-url-using-oldest>`__ archive <#retrieving-the-oldest-archive-for-an-url-using-oldest>`__
- `Retrieving the recent most/newest - `Retrieving the recent most/newest
archive <#retrieving-the-newest-archive-for-an-url-using-newest>`__ archive <#retrieving-the-newest-archive-for-an-url-using-newest>`__
- `Retrieving the JSON response of availability
API <#retrieving-the-json-reponse-for-the-avaliblity-api-request>`__
- `Retrieving archive close to a specified year, month, day, hour, - `Retrieving archive close to a specified year, month, day, hour,
and and
minute <#retrieving-archive-close-to-a-specified-year-month-day-hour-and-minute-using-near>`__ minute <#retrieving-archive-close-to-a-specified-year-month-day-hour-and-minute-using-near>`__
@ -45,9 +49,11 @@ Table of contents
- `With the Command-line - `With the Command-line
interface <#with-the-command-line-interface>`__ interface <#with-the-command-line-interface>`__
- `Save <#save>`__ - `Saving webpage <#save>`__
- `Oldest archive <#oldest-archive>`__ - `Archive URL <#get-archive-url>`__
- `Newest archive <#newest-archive>`__ - `Oldest archive URL <#oldest-archive>`__
- `Newest archive URL <#newest-archive>`__
- `JSON response of API <#get-json-data-of-avaialblity-api>`__
- `Total archives <#total-number-of-archives>`__ - `Total archives <#total-number-of-archives>`__
- `Archive near specified time <#archive-near-time>`__ - `Archive near specified time <#archive-near-time>`__
- `Get the source code <#get-the-source-code>`__ - `Get the source code <#get-the-source-code>`__
@ -94,22 +100,41 @@ Capturing aka Saving an url using save()
import waybackpy import waybackpy
new_archive_url = waybackpy.Url( url = "https://en.wikipedia.org/wiki/Multivariable_calculus"
url = "https://en.wikipedia.org/wiki/Multivariable_calculus",
user_agent = "Mozilla/5.0 (Windows NT 5.1; rv:40.0) Gecko/20100101 Firefox/40.0" user_agent = "Mozilla/5.0 (Windows NT 5.1; rv:40.0) Gecko/20100101 Firefox/40.0"
).save() waybackpy_url_obj = waybackpy.Url(url, user_agent)
archive = waybackpy_url_obj.save()
print(new_archive_url) print(archive)
.. code:: bash .. code:: bash
https://web.archive.org/web/20200504141153/https://github.com/akamhy/waybackpy https://web.archive.org/web/20201016171808/https://en.wikipedia.org/wiki/Multivariable_calculus
Try this out in your browser @ Try this out in your browser @
https://repl.it/@akamhy/WaybackPySaveExample\ https://repl.it/@akamhy/WaybackPySaveExample\
Retrieving the archive for an URL using archive\_url
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
import waybackpy
url = "https://www.google.com/"
user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:40.0) Gecko/20100101 Firefox/40.0"
waybackpy_url_obj = waybackpy.Url(url, user_agent)
archive_url = waybackpy_url_obj.archive_url
print(archive_url)
.. code:: bash
https://web.archive.org/web/20201016153320/https://www.google.com/
Try this out in your browser @
https://repl.it/@akamhy/WaybackPyArchiveUrl\
Retrieving the oldest archive for an URL using oldest() Retrieving the oldest archive for an URL using oldest()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@ -117,12 +142,11 @@ Retrieving the oldest archive for an URL using oldest()
import waybackpy import waybackpy
oldest_archive_url = waybackpy.Url( url = "https://www.google.com/"
user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:40.0) Gecko/20100101 Firefox/40.0"
"https://www.google.com/",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:40.0) Gecko/20100101 Firefox/40.0"
).oldest()
waybackpy_url_obj = waybackpy.Url(url, user_agent)
oldest_archive_url = waybackpy_url_obj.oldest()
print(oldest_archive_url) print(oldest_archive_url)
.. code:: bash .. code:: bash
@ -139,22 +163,40 @@ Retrieving the newest archive for an URL using newest()
import waybackpy import waybackpy
newest_archive_url = waybackpy.Url( url = "https://www.facebook.com/"
user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0"
"https://www.facebook.com/",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0"
).newest()
waybackpy_url_obj = waybackpy.Url(url, user_agent)
newest_archive_url = waybackpy_url_obj.newest()
print(newest_archive_url) print(newest_archive_url)
.. code:: bash .. code:: bash
https://web.archive.org/web/20200714013225/https://www.facebook.com/ https://web.archive.org/web/20201016150543/https://www.facebook.com/
Try this out in your browser @ Try this out in your browser @
https://repl.it/@akamhy/WaybackPyNewestExample\ https://repl.it/@akamhy/WaybackPyNewestExample\
Retrieving the JSON reponse for the avaliblity API request
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
import waybackpy
url = "https://www.facebook.com/"
user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0"
waybackpy_url_obj = waybackpy.Url(url, user_agent)
json_dict = waybackpy_url_obj.JSON
print(json_dict)
.. code:: javascript
{'url': 'https://www.facebook.com/', 'archived_snapshots': {'closest': {'available': True, 'url': 'http://web.archive.org/web/20201016150543/https://www.facebook.com/', 'timestamp': '20201016150543', 'status': '200'}}}
Try this out in your browser @ https://repl.it/@akamhy/WaybackPyJSON\
Retrieving 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()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@ -163,55 +205,50 @@ Retrieving archive close to a specified year, month, day, hour, and minute using
from waybackpy import Url from waybackpy import Url
user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0" user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0"
github_url = "https://github.com/" url = "https://github.com/"
waybackpy_url_obj = Url(url, user_agent)
github_wayback_obj = Url(github_url, user_agent)
# Do not pad (don't use zeros in the month, year, day, minute, and hour arguments). e.g. For January, set month = 1 and not month = 01. # Do not pad (don't use zeros in the month, year, day, minute, and hour arguments). e.g. For January, set month = 1 and not month = 01.
.. code:: python .. code:: python
github_archive_near_2010 = github_wayback_obj.near(year=2010) github_archive_near_2010 = waybackpy_url_obj.near(year=2010)
print(github_archive_near_2010) print(github_archive_near_2010)
.. code:: bash .. code:: bash
https://web.archive.org/web/20100719134402/http://github.com/ https://web.archive.org/web/20101018053604/http://github.com:80/
.. code:: python .. code:: python
github_archive_near_2011_may = github_wayback_obj.near(year=2011, month=5) github_archive_near_2011_may = waybackpy_url_obj.near(year=2011, month=5)
print(github_archive_near_2011_may) print(github_archive_near_2011_may)
.. code:: bash .. code:: bash
https://web.archive.org/web/20110519185447/https://github.com/ https://web.archive.org/web/20110518233639/https://github.com/
.. code:: python .. code:: python
github_archive_near_2015_january_26 = github_wayback_obj.near( github_archive_near_2015_january_26 = waybackpy_url_obj.near(year=2015, month=1, day=26)
year=2015, month=1, day=26
)
print(github_archive_near_2015_january_26) print(github_archive_near_2015_january_26)
.. code:: bash .. code:: bash
https://web.archive.org/web/20150127031159/https://github.com https://web.archive.org/web/20150125102636/https://github.com/
.. code:: python .. code:: python
github_archive_near_2018_4_july_9_2_am = github_wayback_obj.near( github_archive_near_2018_4_july_9_2_am = waybackpy_url_obj.near(year=2018, month=7, day=4, hour=9, minute=2)
year=2018, month=7, day=4, hour = 9, minute = 2
)
print(github_archive_near_2018_4_july_9_2_am) print(github_archive_near_2018_4_july_9_2_am)
.. code:: bash .. code:: bash
https://web.archive.org/web/20180704090245/https://github.com/ https://web.archive.org/web/20180704090245/https://github.com/
The library doesn't supports seconds yet. You are encourged to create a The package doesn't support second argument yet. You are encourged to
PR ;) create a PR ;)
Try this out in your browser @ Try this out in your browser @
https://repl.it/@akamhy/WaybackPyNearExample\ https://repl.it/@akamhy/WaybackPyNearExample\
@ -237,16 +274,12 @@ Get the content of webpage using get()
# The following chunk of code will force a new archive of google.com and get the source of the archived page. # The following chunk of code will force a new archive of google.com and get the source of the archived page.
# waybackpy_url_object.save() type is string. # waybackpy_url_object.save() type is string.
google_newest_archive_source = waybackpy_url_object.get( google_newest_archive_source = waybackpy_url_object.get(waybackpy_url_object.save())
waybackpy_url_object.save()
)
print(google_newest_archive_source) print(google_newest_archive_source)
# waybackpy_url_object.oldest() type is str, it's oldest archive of google.com # waybackpy_url_object.oldest() type is str, it's oldest archive of google.com
google_oldest_archive_source = waybackpy_url_object.get( google_oldest_archive_source = waybackpy_url_object.get(waybackpy_url_object.oldest())
waybackpy_url_object.oldest()
)
print(google_oldest_archive_source) print(google_oldest_archive_source)
Try this out in your browser @ Try this out in your browser @
@ -260,19 +293,17 @@ Count total archives for an URL using total\_archives()
import waybackpy import waybackpy
URL = "https://en.wikipedia.org/wiki/Python (programming language)" URL = "https://en.wikipedia.org/wiki/Python (programming language)"
UA = "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4" UA = "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4"
archive_count = waybackpy.Url( waybackpy_url_object = waybackpy.Url(url=URL, user_agent=UA)
url=URL,
user_agent=UA archive_count = waybackpy_url_object.total_archives()
).total_archives()
print(archive_count) # total_archives() returns an int print(archive_count) # total_archives() returns an int
.. code:: bash .. code:: bash
2440 2516
Try this out in your browser @ Try this out in your browser @
https://repl.it/@akamhy/WaybackPyTotalArchivesExample\ https://repl.it/@akamhy/WaybackPyTotalArchivesExample\
@ -292,8 +323,8 @@ List of URLs that Wayback Machine knows and has archived for a domain name
URL = "akamhy.github.io" URL = "akamhy.github.io"
UA = "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4" UA = "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4"
known_urls = waybackpy.Url(url=URL, user_agent=UA).known_urls(alive=True, subdomain=False) # alive and subdomain are optional. waybackpy_url_object = waybackpy.Url(url=URL, user_agent=UA)
known_urls = waybackpy_url_object.known_urls(alive=True, subdomain=False) # alive and subdomain are optional.
print(known_urls) # known_urls() returns list of URLs print(known_urls) # known_urls() returns list of URLs
.. code:: bash .. code:: bash
@ -320,6 +351,17 @@ Save
Try this out in your browser @ Try this out in your browser @
https://repl.it/@akamhy/WaybackPyBashSave\ https://repl.it/@akamhy/WaybackPyBashSave\
Get archive URL
^^^^^^^^^^^^^^^
.. code:: bash
$ waybackpy --url "https://en.wikipedia.org/wiki/SpaceX" --user_agent "my-unique-user-agent" --archive_url
https://web.archive.org/web/20201007132458/https://en.wikipedia.org/wiki/SpaceX
Try this out in your browser @
https://repl.it/@akamhy/WaybackPyBashArchiveUrl\
Oldest archive Oldest archive
^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^
@ -342,6 +384,20 @@ Newest archive
Try this out in your browser @ Try this out in your browser @
https://repl.it/@akamhy/WaybackPyBashNewest\ https://repl.it/@akamhy/WaybackPyBashNewest\
Get JSON data of avaialblity API
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: bash
waybackpy --url "https://en.wikipedia.org/wiki/SpaceX" --user_agent "my-unique-user-agent" --json
.. code:: javascript
{'archived_snapshots': {'closest': {'timestamp': '20201007132458', 'status': '200', 'available': True, 'url': 'http://web.archive.org/web/20201007132458/https://en.wikipedia.org/wiki/SpaceX'}}, 'url': 'https://en.wikipedia.org/wiki/SpaceX'}
Try this out in your browser @
https://repl.it/@akamhy/WaybackPyBashJSON\
Total number of archives Total number of archives
^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^
@ -415,11 +471,22 @@ Tests
`Here <https://github.com/akamhy/waybackpy/tree/master/tests>`__ `Here <https://github.com/akamhy/waybackpy/tree/master/tests>`__
To run tests locally:
.. code:: bash
pip install -U pytest
pip install codecov
pip install pytest pytest-cov
cd tests
pytest --cov=../waybackpy
python -m codecov #For reporting coverage on Codecov
Dependency Dependency
---------- ----------
None, just python standard libraries (re, json, urllib, argparse and None, just pre-installed `python standard
datetime). Both python 2 and 3 are supported :) libraries <https://docs.python.org/3/library/>`__.
Packaging Packaging
--------- ---------

View File

@ -10,7 +10,7 @@
# ━━━━━━━━━━━┗━━┛━━━━━━━━━━━━━━━━━━━━━━━━┗━━┛━ # ━━━━━━━━━━━┗━━┛━━━━━━━━━━━━━━━━━━━━━━━━┗━━┛━
""" """
Waybackpy is a Python library that interfaces with the Internet Archive's Wayback Machine API. Waybackpy is a Python package that interfaces with the Internet Archive's Wayback Machine API.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Archive pages and retrieve archived pages easily. Archive pages and retrieve archived pages easily.

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__title__ = "waybackpy" __title__ = "waybackpy"
__description__ = "A Python library that interfaces with the Internet Archive's Wayback Machine API. Archive pages and retrieve archived pages easily." __description__ = "A Python package that interfaces with the Internet Archive's Wayback Machine API. Archive pages and retrieve archived pages easily."
__url__ = "https://akamhy.github.io/waybackpy/" __url__ = "https://akamhy.github.io/waybackpy/"
__version__ = "2.1.9" __version__ = "2.1.9"
__author__ = "akamhy" __author__ = "akamhy"