CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 27 Jul 2025 09:51:15 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100124234537
location: https://web.archive.org/web/20100124234537/https://github.com/joshthecoder/shorty-python
server-timing: captures_list;dur=0.531832, exclusion.robots;dur=0.023069, exclusion.robots.policy;dur=0.011096, esindex;dur=0.011709, cdx.remote;dur=42.748323, LoadShardBlock;dur=144.868406, PetaboxLoader3.datanode;dur=51.299447, PetaboxLoader3.resolve;dur=41.695641
x-app-server: wwwb-app223
x-ts: 302
x-tr: 215
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app223; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 27 Jul 2025 09:51:16 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 24 Jan 2010 23:45:35 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "102250f6d306f1a8ff38cb1784cb8752"
x-archive-orig-x-runtime: 162ms
x-archive-orig-content-length: 28707
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 24 Jan 2010 23:45:37 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 22 Dec 2009 08:45:47 GMT", ; rel="prev memento"; datetime="Sat, 23 Jan 2010 14:36:40 GMT", ; rel="memento"; datetime="Sun, 24 Jan 2010 23:45:37 GMT", ; rel="next memento"; datetime="Mon, 11 Jun 2018 02:56:13 GMT", ; rel="last memento"; datetime="Tue, 06 Oct 2020 12:55:52 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_13_20100124185211_crawl103-c/51_13_20100124233950_crawl101.arc.gz
server-timing: captures_list;dur=0.830892, exclusion.robots;dur=0.029653, exclusion.robots.policy;dur=0.014184, esindex;dur=0.017187, cdx.remote;dur=51.678030, LoadShardBlock;dur=188.085007, PetaboxLoader3.datanode;dur=198.860606, PetaboxLoader3.resolve;dur=147.181138, load_resource;dur=166.935060
x-app-server: wwwb-app223
x-ts: 200
x-tr: 478
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
joshthecoder's shorty-python at master - GitHub
This service is courtesy of Pledgie.
joshthecoder / shorty-python
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (1)
- Graphs
-
Branch:
master
-
Branches (1)
- master ✓
- Tags (1)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
python library for accessing many url shortening services — Read more
README
_ _ ___| |__ ___ _ __| |_ _ _ / __| '_ \ / _ \| '__| __| | | | \__ \ | | | (_) | | | |_| |_| | |___/_| |_|\___/|_| \__|\__, | __/ | |___/ Access many URL shortening services from one library. Language: Python Website: https://gitorious.org/shorty Mailinglist: shorty-python at googlegroups.com Repository: git://gitorious.org/shorty/python.git Requirements: Python 2.4+ Simplejson (not required in python 2.6+) Supported URL shortening services for shrinking long urls: tinyurl.com burnurl.com tr.im hurl.ws urlborg.com xr.com bit.ly snipurl.com is.gd hex.io cli.gs twurl.nl (tweetburner) digg.com a.gd buk.me fon.gs fwd4.me chilp.it short.ie short.to to.ly budurl.com kl.am Shorty can expand any url service by getting the redirect location by requesting the tiny url. Shorty also comes with a service called sandbox. This service stores the urls in memory and is useful for testing your application independently from a remote service. See example.py for a demo of using this library. Build: Each URL service is implemented in its own module inside the services folder. To use this library you must compile all the various modules together. To compile you will use the compile.py script. python compile.py <services> <services> is a space separated list of the services you want include. If you wish to use all supported services use the --all flag instead. After the script runs a file named 'shorty.py' will appear. This is the module you will be using inside your projects. A copy of the full shorty.py module will be kept in this repository. Install: Simply include the shorty.py module in your python path. If using a version of python before 2.6 you will also need to have simplejson installed.