Metadata-Version: 1.1
Name: ReExpose
Version: 0.1.0
Summary: ReExpose HTTP basic auth endpoints on localhost as unauthenticated endpoints
Home-page: https://github.com/jeffcasavant/reexpose
Author: Jeff Casavant
Author-email: jeff.casavant@gmail.com
License: UNKNOWN
Description: # reexpose
        
        Expose an authenticated HTTP endpoint on localhost as an unauthenticated one.
        
        Built for Plex Podcasts to connect to premium podcast feeds.
        
        ## Installation & running
        
        ```
        git clone https://github.com/jeffcasavant/reexpose.git
        cd reexpose
        pip install .
        ```
        
        This will put ReExpose on your path.  Then, copy `config_example.yaml` to
        `config.yaml` and edit it to your liking.  When you're ready:
        
        ```
        reexpose --config path/to/config.yaml [--port 5000]
        ```
        
        ReExpose will make the endpoint available on localhost at port 5000 by default.
        
        ## Development
        
        Simply install the dev extra:
        
        ```
        pip install .[dev]
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP
