-
Notifications
You must be signed in to change notification settings - Fork 2
clemesha/appengine-url-shortener
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A URL shortener that runs on Google App Engine
==============================================
THIS APP IS A WORK IN PROGRESS.
Features
--------
- User based Stats (keeps click counter)
- Allows for custom path names (e.g. "/my-named-path")
Example
-------
from google.appengine.api import users
from models import Link
user = users.get_current_user()
l = Link(user=user, url="http://google.com/a")
l.put()
print l.key().id() #use 'id' with 'base62.base62_encode'
About
A URL shortener, written in Python, that runs on Google App Engine
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published