Metadata-Version: 1.0
Name: citi-wikibot
Version: 0.4.7
Summary: CITI's Wiki page editing for lazy people.
Home-page: https://github.com/citi-ufpe/citi-wikibot
Author: Vanessa Barreiros
Author-email: vanessa.barreiros@citi.org.br
License: UNKNOWN
Description: 
        CITi's Wikibot
        ==============
        
        Easily edit pages on `CITi's Wiki <http://wiki.citi.org.br/>`_ directly from shell or using a Markdown (.md) file.
        
        Installation
        ------------
        
        .. code-block:: shell
        
           $ pip install citi-wikibot
        
        Usage
        -----
        
        Editing a page directly from the shell
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        .. code-block:: shell
        
           $ python
           >>> from wikibot.bot import Wikibot
           >>> bot = Wikibot(username='insert_username', password='insert_password', page='insert_page')
           >>> bot.edit_page('== My title ==\nHello world!')
        
        Editing a page from a Markdown file
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        ..
        
           Important: It's recommended that you run the script in the folder your file is located  
        
        
        .. code-block:: shell
        
           $ ls
           notes.md
           $ python
           >>> from wikibot.bot import Wikibot
           >>> bot = Wikibot(username='insert_username', password='insert_password', page='insert_page')
           >>> bot.edit_page_from_file('notes.md')
        
Keywords: wiki,bot,wikibot,citi
Platform: UNKNOWN
