Metadata-Version: 2.1
Name: autorequests
Version: 1.0.1
Summary: Automatically create a simple API wrapper from requests generated by your browser.
Home-page: https://github.com/Hexiro/autorequests
Author: Hexiro
License: MPL2
Description: # autorequests
        
        Autorequests provides an easy way to create a simple API wrapper from data generated by your browser.
        
        ![BUILT WITH SWAG](https://forthebadge.com/images/badges/built-with-swag.svg)
        ![NOT A BUG A FEATURE](https://forthebadge.com/images/badges/not-a-bug-a-feature.svg)
        ![IT WORKS. WHY?](https://forthebadge.com/images/badges/it-works-why.svg)
        
        ### Showcase
        
        ** the website shown in this example is [imperialb.in](https://imperialb.in)
        ![example showcase gif](https://i.imgur.com/75tMMIW.gif)
        
        ### Example Use Cases
        
        * Creating a foundation for an API wrapper
        * Testing what cookies / headers are required for a server to understand your request
        
        ### How to Copy Data
        
        1. Do an action on a website that causes a web request to be sent.
        2. Right-click --> Copy-As --> Node.JS Fetch
        
        ## 🖥️ Command Line
        
        ```console
        $ autorequests --help
        ```
        
        directory control
        
        ```console
          -i, --input           Input Directory
          -o, --output          Output Directory
        ```
        
        parsing control
        
        ```
          --no-headers          Removes all headers from the operation
          --no-cookies          Removes all cookies from the operation
        ```
        
        # 🚩 Known Issues
        
        * Method names are parsed from the url, but if the URL doesn't have any paths with a valid method name, an invalid
          method name will be used.
        * Sometimes when copying fetches from the browser, some important headers aren't including, causing the resulting API
          wrapper to fail requests.
        
        # 📅 Planned Features
        
        * converting camelCased method names to snake_case.
        * replace hardcoded values with parameters that have default values.
        * detecting base paths (like /api/v1) and setting that in the class constructor. (maybe).
        * the ability to parse other formats of data from the browser (not just fetches).
        
        # 🐞 Contributing
        
        This project has a lot of room for improvement in optimizing regexps, better OOP, and bug fixes. If you make an issue,
        pr or suggestion, it'll be very appreciated <3.
Keywords: python,python3,node
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Requires-Python: >=3.6
Description-Content-Type: text/markdown
