Metadata-Version: 2.1
Name: blacktip
Version: 0.0.7
Summary: SEC Edgar Analysis Tools (by Blacktip Research)
Home-page: http://blacktipresearch.com/Angler
Author: Matt Beveridge
Author-email: mattjbev@gmail.com
License: MIT
Description: # Blacktip
        
        Easy-to-use large scale analysis tool for SEC edgar information.
        Examine any company filing with the SEC in seconds without having 
        to download data from edgar. Register [here](http://blacktipresearch.com/accounts/signup)
        before use to be able to use Angler.
        
        
        ## Angler
        This is the main SEC analysis tool. After registering your account on the
        [Blacktip Research website](http://blacktipresearch.com/accounts/signup), use your **username** and 
        **password** to interface with Angler.
        
        ### Documentation
        The workflow is the following:
        
        **import**
        ```
        from blacktip.angler import Angler
        ```
        
        **initialize**
        ```
        instance = Angler(username, password)
        ```
        
        **get data**
        ```
        form10K = instance.query10K("AAPL", 2019)
        ```
        
        **manipulate the data**
        ```
        # example calculations
        assets = form10K.asset_sheet()
        ROE = form10K.calc_ROE()
        net_income = form10K.filter(regex="^NetIncomeLoss$")
        ```
        
        **close your instance**
        ```
        instance.dispose()
        ```
        
        For explicit documentation, visit the [Angler Documentation](http://blacktipresearch.com/Angler).
Keywords: SEC,edgar,finance,10-K,10-Q,analytics
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
