Metadata-Version: 1.1
Name: campbot
Version: 0.0.12
Summary: Package for automatic edition of camptocamp.org
Home-page: http://github.com/cbeauchesne/CampBot
Author: Charles de Beauchesne
Author-email: charles.de.beauchesne@gmail.com
License: WTFPL
Description: # CampBot
        
        Bot framework for camptocamp.org
        
        ## Installation
        
        ```batch
            pip install campbot
        ```
        
        ## Command line usage
        
        ### Export recent contribution
        
        This command will load all contributions made in the last 24 hours
        
        ```batch
            campbot contributions
        ```
        
        Optional arguments : 
        
        * `-starts=2017-12-07` : will export all contributions after this date (included)
        * `-starts=2017-12-07` : will export all contributions before this date (excluded)
        * `--out=data.csv` : out file name, default value is `contributions.csv`
        
        
        ### Migrate BBCodes
        
        ```batch
           campbot remove_bbcode <ids_file> --login=<login> --password=<password> [--delay=<seconds>] [--batch]
        ```
        
        * *ids_files :* path to a file thtat contains document's ids to migrate. Format is : 
        ```
        id1 | w
        id2 | r
        ```
        
        * *batch :* do not ask confirmation before saving a document. Use very carefully
        * *delay :* delay in second between each request. Defaut is 1 seconds.
        
        
        ### Check recent changes
        Check that last day modifications pass these tests : 
          
        * History is filled
        * No big deletions
        * And all patterns present in the first message of topic where report should be posted
        
        ```batch
        campbot check_recent_changes <message_url> --langs=<langs> --login=<login> --password=<password> [--delay=<seconds>]
        ```
          
          
        ### Check poll voters
        
        Check that voters in a poll forum has at least one contribution during last 180 days
        
        ```batch
        campbot check_voters <message_url> --login=<login> --password=<password>
        ```
        
        <message_url> is the url of the massage that contains the poll you need to check
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved
Classifier: Natural Language :: French
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Communications
