Metadata-Version: 2.1
Name: octoparse
Version: 1.0.1
Summary: Unofficial Octoparse API client.
Home-page: https://github.com/itzmestar/Octoparse
Author: Tarique Anwer
Author-email: itzmetariq@gmail.com
License: Apache License 2.0
Description: # Octoparse
        
        ## Unofficial Octoparse api client in python
        -----------
        
        ### Installation:
        use pip to install:
        ``` 
        pip install octoparse
        ```
        -----------
        
        ### Example usage:
        ```
        from octoparse import Octoparse
        
        octo = Octoparse()
        
        # get data for a task with task id: 'abcd-1234-djfsd-dfdf'
        data = octo.get_data('abcd-1234-djfsd-dfdf')
        
        # get data as a pandas.DataFrame for a task with task id: 'abcd-1234-djfsd-dfdf'
        df = octo.get_data_df('abcd-1234-djfsd-dfdf')
        
        # clear data for a task with task id: 'abcd-1234-djfsd-dfdf'
        octo.clear_data('abcd-1234-djfsd-dfdf')
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
