88
99Access many URL shortening services from one library.
1010
11+ Language: Python
12+ Website: http://gitorious.org/shorty
13+ Repository: git://gitorious.org/shorty/python.git
14+ Requirements:
15+ Python 2.4+
16+ Simplejson (not required in python 2.6+)
17+
1118Supported URL shortening services for shrinking long urls:
1219 sandbox (stored locally in memory for testing)
1320 tinyurl.com
@@ -29,23 +36,17 @@ location by requesting the tiny url.
2936
3037See example.py for a demo of using this library.
3138
32- Language: Python
33- Website: http://gitorious.org/shorty
34- Repository: git://gitorious.org/shorty/python.git
35- Requirements:
36- Python 2.4+
37- Simplejson (not required in python 2.6+)
38-
3939Build:
4040 Each URL service is implemented in its own module inside the services
4141 folder. To use this library you must compile all the various modules together.
42- To compile you will use the compile.py script. Here is its usage:
42+ To compile you will use the compile.py script.
4343
4444 python compile.py <services>
4545
46- <services> is a spaceseperated list of the services you wantincluded .
46+ <services> is a spaceseparated list of the services you wantinclude .
4747 If you wish to use all supported services use the --all flag instead.
4848 After the script runs a file named 'shorty.py' will appear.
49+ This is the module you will be using inside your projects.
4950 A copy of the full shorty.py module will be kept in this repository.
5051
5152Install: