Skip to content

Commit 9abbe67

Browse files
committed
Remove 12ft.io
1 parent d4d16f8 commit 9abbe67

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Run it while passing in the full path to the `data/` directory. (`/home/you/outl
7979
- [archive.is](https://archive.is)
8080
- [Ghost Archive](https://ghostarchive.org)
8181
- Google Search Cache
82-
- [12ft Ladder](https://12ft.io)
82+
- ~~[12ft Ladder](https://12ft.io)~~ Dead as of July 14, 2025
8383
- ~~[RemoveJS](https://remove-js.com)~~ Dead as of summer 2024 (claims it will come back someday)
8484
- [txtify.it](https://txtify.it)
8585
- [Twiiit](https://twiiit.com) For twitter. Chooses a random nitter instance for you.

bot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''Telegram bot that (primarily) attempts to perform url hacks to get around paywalls'''
22

33

4-
__version__ = '2.6.1'
4+
__version__ = '2.6.2'
55

66

77
import asyncio
@@ -264,7 +264,6 @@ async def add_bypasses(url: str) -> str:
264264
bypass_names = (
265265
(wayback, 'Wayback Machine'),
266266
(google_cache, 'Google Cache'),
267-
(twelve_ft, '12ft.io'),
268267
(archive_is, 'archive.is'),
269268
(ghostarchive, 'Ghost Archive'),
270269
(txtify_it, 'txtify.it'),
@@ -321,6 +320,8 @@ async def google_cache(url: str, client: httpx.AsyncClient) -> str | None:
321320
@timer
322321
@snitch
323322
async def twelve_ft(url: str, client: httpx.AsyncClient) -> str | None:
323+
# disabled code but left around incase 13ft.io becomes a thing
324+
# https://github.com/wasi-master/13ft
324325
twelve_ft_url = f'https://12ft.io/{url}'
325326
try:
326327
r = await client.get(f'https://12ft.io/api/proxy?ref=&q={url}', timeout=2)

0 commit comments

Comments
 (0)