     _________________________________________________________________

                                  README

  Content:

  1. About
  2. Description
  3. System requirements
  4. Usage


     _________________________________________________________________


  (1) ABOUT

    VERSION: 1.0
    AUTHOR: Tomaž Muraus <kami[at]k5-storitve[dot]net>
    WEBSITE: http://www.tomaz-muraus.info
    
    
  (2) DESCRIPTION

    SimpleTwitter is a simple PHP script for retrieving your twitter
    status messages and some other functionality.
    None of the actions in this class require user authentication.


  (3) SYSTEM REQUIREMENTS

    - PHP >= 5.0.0
    - 1 MB of free disk space


  (4) USAGE

    1. Include a file SimpleTwitter.php in your PHP script
    2. Create a SimpleTwitter object - first parameter is your
    twitter username.
    3. The following methods are available:
    
    getMyTimeline($limit = 10, $formatLinks = TRUE)			-> returns $limit latest status messages for your account
    getPublicTimeline($limit = 10, $formatLinks = TRUE)		-> returns $limit status messages from the public time line
    getFriendsStatus($formatLinks = TRUE)					-> returns status messages from your friends
    getUserRelationship($targetScreenname)					-> returns relationship information between your and given user account
    findTwitts($query, $formatLinks = TRUE)					-> returns status messages matching the search query
    getUserInformation()									-> returns information about your twitter account
	
	Example is located in file SimpleTwitter.example.php.