File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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
77import 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
323322async 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 )
You can’t perform that action at this time.
0 commit comments