Metadata-Version: 2.1
Name: tw-stocks
Version: 0.1.1
Summary: tw stocks infos
Home-page: https://github.com/pjwang0710/tw-stocks
Author: PJ
Author-email: pjwang0710@gmail.com
License: MIT
Description: # TWStocks Python SDK
        TWStocks HTTP API SDK
        
        ## Installation
        ```
        $ pip install tw_stocks
        ```
        
        ## How to use?
        ```
        from tw_stocks import TWStocks
        twstocks = TWStocks('API secret key')
        twstocks.get_cash_flow_statement('1101', '2021-01-01')
        ```
        Output:
        ```
        [{'CMKey': '1101',
          'CashAndCashEquivalents': '62025098',
          'CashFlowFromFinancingActivities': '-1790927',
          'CashFlowFromInvestingActivities': '5292661',
          'CashFlowFromOperatingActivities': '7124458',
          'DateRange': '202101',
          'EarningsBeforeTaxes': '4846931',
          'FreeCashFlow': '2232457',
          'NetCashFlow': '10591576'}]
        ```
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Description-Content-Type: text/markdown
