Metadata-Version: 2.1
Name: pygst
Version: 0.0.4
Summary: Python global stock time
Home-page: https://github.com/taobun/pygst
Author: Bun Uthaitirat
License: UNKNOWN
Description: # pygst (Python global stock time)
        
        This lib will tell you what is current market status of your stock.
        
        Holiday is coming soon.
        
        ## Example
        
        ```
        from pygst import get_market_status, MarketStatus
        
        status = get_market_status("AAPL")
        if status == MarketStatus.PRE or status == MarketStatus.POST:
            print("Extended time")
        else:
            print(f"{status.name.lower()} time")
        
        ```
        
Platform: UNKNOWN
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
