update urls
authorclaromes <support@claromes.com>
Sun, 25 May 2025 14:19:48 +0000 (11:19 -0300)
committerclaromes <support@claromes.com>
Sun, 25 May 2025 14:19:48 +0000 (11:19 -0300)
CITATION.cff
README.md
docs/_templates/page.html
pyproject.toml
waybacktweets/_cli.py
waybacktweets/api/visualize.py

index f730ed11a8151d39405b2a9306125dfea2c1d18b..9e9e55dd7b7a80871ec33cd296f645b222e17817 100644 (file)
@@ -14,29 +14,25 @@ authors:
 identifiers:
   - type: doi
     value: 10.5281/zenodo.12528447
-    description: The concept DOI of the work.
+    description: Retrieves archived tweets from Wayback Machine in HTML, CSV, and JSON.
   - type: url
     value: "https://pypi.org/project/waybacktweets/"
     description: Python Package Index.
   - type: url
-    value: "https://claromes.github.io/waybacktweets/"
+    value: "https://waybacktweets.claromes.com/"
     description: Documentation.
 repository-code: "https://github.com/claromes/waybacktweets"
-url: "https://claromes.github.io/waybacktweets"
+url: "https://waybacktweets.claromes.com/"
 abstract: >-
-  Retrieves archived tweets CDX data from the Wayback
-  Machine, performs necessary parsing, and saves the data in
-  HTML (for easy viewing of the tweets using the iframe
-  tag), CSV, and JSON formats.
+  Retrieves archived tweets CDX data from the Wayback Machine, performs necessary parsing, and saves the data in HTML, for easy viewing of the tweets using the iframe tags, CSV, and JSON formats.
 keywords:
   - Twitter
-  - Wayback Machine
+  - X
   - Tweets
-  - Python
+  - Wayback Machine
   - OSINT
   - SOCMINT
-  - X
+  - Python
 license: GPL-3.0
-commit: 16f9997a8e2e2b87932ca061bf5731cd65d1d588
-version: 1.0a5
-date-released: "2024-06-24"
+version: 1.0
+date-released: "2025-05-26"
index b8236a2f2b959e722ef758206b5d72faab9a14ff..a8950354a2413f7b873708d1b0efbc70cffcd64a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 [![PyPI](https://img.shields.io/pypi/v/waybacktweets)](https://pypi.org/project/waybacktweets) [![PyPI Downloads](https://static.pepy.tech/badge/waybacktweets)](https://pepy.tech/projects/waybacktweets)
 
-Retrieves archived tweets CDX data from the Wayback Machine, performs necessary parsing (see [Field Options](https://claromes.github.io/waybacktweets/field_options.html)), and saves the data in HTML, for easy viewing of the tweets using the iframe tags, CSV, and JSON formats.
+Retrieves archived tweets CDX data from the Wayback Machine, performs necessary parsing (see [Field Options](https://waybacktweets.claromes.com/field_options)), and saves the data in HTML, for easy viewing of the tweets using the iframe tags, CSV, and JSON formats.
 
 ## Installation
 
@@ -48,7 +48,7 @@ Options:
 
   Documentation:
 
-      https://claromes.github.io/waybacktweets/
+      https://waybacktweets.claromes.com/
 ```
 
 ## Module
@@ -101,7 +101,7 @@ Important: Starting from version 1.0, the web app will no longer receive all upd
 
 ## Documentation
 
-- [Wayback Tweets documentation](https://claromes.github.io/waybacktweets)
+- [Wayback Tweets documentation](https://waybacktweets.claromes.com/)
 - [Wayback CDX Server API (Beta) documentation](https://archive.org/developers/wayback-cdx-server.html)
 
 ## Acknowledgements
index 701f810ad311a059d555783f3f18d23db93ad030..902cb7d6121e6c7d23cb79a757b9c76e2674204b 100644 (file)
@@ -6,9 +6,9 @@
 
     <meta property="og:title" content="{{ title|e }}" />
     <meta property="og:description" content="Retrieves archived tweets CDX data from the Wayback Machine, performs necessary parsing, and saves the data">
-    <meta property="og:image" content="https://claromes.github.io/waybacktweets/_static/card.png" />
+    <meta property="og:image" content="https://waybacktweets.claromes.com/_static/card.png" />
 
     <meta name="twitter:title" content="{{ title|e }}">
     <meta name="twitter:description" content="Retrieves archived tweets CDX data from the Wayback Machine, performs necessary parsing, and saves the data">
-    <meta property="twitter:image" content="https://claromes.github.io/waybacktweets/_static/card.png" />
+    <meta property="twitter:image" content="https://waybacktweets.claromes.com/_static/card.png" />
 {% endblock %}
index c087769a4a12f468ca69911e93d2322a900b50c4..5311355e3eee99d8b432595517adc9163bf57adb 100644 (file)
@@ -31,8 +31,8 @@ classifiers = [
 exclude = ["app/**", "assets/**", "docs/**", ".streamlit/**"]
 
 [tool.poetry.urls]
-"Homepage" = "https://claromes.github.io/waybacktweets/"
-"Documentation" = "https://claromes.github.io/waybacktweets/"
+"Homepage" = "https://waybacktweets.claromes.com/"
+"Documentation" = "https://waybacktweets.claromes.com/"
 "Issue Tracker" = "https://github.com/claromes/waybacktweets/issues"
 
 [tool.poetry.dependencies]
index ed9530344ee99b335e9eae517abe59285e2d4f19..7b2c747ea0d92e12401bdc5b00afd87596f9e0e7 100644 (file)
@@ -50,7 +50,7 @@ Examples:\n
     With options and verbose output: waybacktweets --from 20200305 --to 20231231 --limit 300 --verbose jack\n\n
 
 Documentation:\n
-    https://claromes.github.io/waybacktweets/
+    https://waybacktweets.claromes.com/
     """,  # noqa: E501
 )
 @click.argument("username", type=str)
index 5e3cc3495ac9d0eb9fa91c507cc6e2f4f83d937d..b7c8072917653c0828367dac92418dbf5b702fc8 100644 (file)
@@ -59,7 +59,7 @@ class HTMLTweetsVisualizer:
 
         html = "<!DOCTYPE html>\n"
         html += '<html lang="en">\n'
-        html += "<!-- This document was generated by Wayback Tweets. Visit: https://claromes.github.io/waybacktweets -->\n"
+        html += "<!-- This document was generated by Wayback Tweets. Visit: https://waybacktweets.claromes.com/ -->\n"
 
         html += "<head>"
         html += '<meta charset="UTF-8">\n'
@@ -183,7 +183,7 @@ class HTMLTweetsVisualizer:
             html += f'<a href="#" id="page_link_{page}" onclick="showPage({page})">{page}</a>\n'
         html += "</div>\n"
 
-        html += '<br><p class="source">generated by <a href="https://claromes.github.io/waybacktweets/" target="_blank">Wayback Tweets↗</a></p>\n'
+        html += '<br><p class="source">generated by <a href="https://waybacktweets.claromes.com/" target="_blank">Wayback Tweets↗</a></p>\n'
 
         html += """
         <script>