https://github.com/psibi/identier
Python API library for identi.ca/StatusNet
https://github.com/psibi/identier
Last synced: about 1 year ago
JSON representation
Python API library for identi.ca/StatusNet
- Host: GitHub
- URL: https://github.com/psibi/identier
- Owner: psibi
- License: other
- Created: 2012-05-09T14:28:59.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-06-15T05:54:11.000Z (almost 14 years ago)
- Last Synced: 2025-03-25T13:39:13.332Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 160 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
Identier
---------
Identier is an Python API library for identi.ca.
``Identier`` provides a API for accessing services of identi.ca. This support various extensions provided by StatusNet apart from it's Twitter compatible API's.
Installation:
-------------
It is very easy to install Identier.
(pip install | easy_install) identi
... or in the traditional way:
$ git clone git://github.com/psibi/Identier.git
$ cd Identier
$ python setup.py install
Usage:
------
An example of how to get various status update from the public timeline.
from identi import Identica
identica = Identica()
pt_xml = identica.getPublicTimeline()
statuses = identica.getValues(pt_xml,"text") #List containing all statuses
for value in statuses:
print value
To Do:
-------
1. Write more examples for using this API inside the examples directory.
2. Remove Django dependency by providing alternate solution for solving Unicode related problem.
3. Do Documentation.
License:
--------
GNU General Public License v3 (GPLv3)
Bug Report:
-----------
Issue it here: https://github.com/psibi/Identier/issues