Metadata-Version: 2.1
Name: sotrace
Version: 1.0.0
Summary: Get and open StackOverflow posts for your tracebacks.
Home-page: https://github.com/SuperMaZingCoder/sotrace
Author: SuperMaZingCoder
Author-email: supermazingcoder@gmail.com
License: MIT
Description: # StackOverflow Traces
        This package opens up StackOverflow posts for your errors. It's the ultimate efficiency tool!
        
        ## Example Usage
        ```py
        from sotrace import open_link
        
        
        try:
            my_dict = {}
            print(my_dict[1])
        except Exception as e:
            open_link(e)
        ```
        ```py
        from sotrace import open_link
        
        
        open_link("What does the yield keyword do?", tags=["python", "generator"], num_of_results=3)
        ```
        
        ## Roadmap
        - [ ] Documentation
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
