This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
julen (author)
Mon Nov 02 09:22:37 -0800 2009
commit 7cd3bdb2b6766648e1f0abef8f927cc6128febe0
tree 22bc0d46ed1636e56aac219267fc4bbc91a5b74e
parent d54918856fc571284ffe6a97fe756517d2ef2b0f parent 12d486e45fe93a349725bfb8d655655cc6ce9f46
tree 22bc0d46ed1636e56aac219267fc4bbc91a5b74e
parent d54918856fc571284ffe6a97fe756517d2ef2b0f parent 12d486e45fe93a349725bfb8d655655cc6ce9f46
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README | ||
| |
socialdict/ |
README
django-socialdict ================= http://github.com/julen/django-socialdict socialdict is a django app that retrieves terms from microblogging sites and stores and displays them as a simple dictionary. Currently terms can only be retrieved from a single backed, although support for multiple sites is planned. Installation ------------ * Add 'socialdict' to your INSTALLED_APPS and sync your database. * In your project settings file you need to add the following settings: SOCIAL_URL : the URL string to perform the search SOCIAL_HASHTAG : the hashtag that will be used to retrieve terms. * Include socialdict.urls within your project's URL structure. * To retrieve terms you need to setup a cron job that calls the socialdict/bin/update_terms.py. You can also run this script from the command line. How it w orks ------------- Terms are retrieved based on a certain hashtag and there is a parser that defines what goes in and what goes out. Currently entries that contain URLs or the at-sign are discarded, since they can lead to false positives. The hastag is deleted and a colon character splits the term and the meaning. So the pattern to follow is: TERM: meaning #hashtag








