Metadata-Version: 2.1
Name: flask_get_ip
Version: 5.0
Summary: Securely getting the IP address of a Flask http request client.
Author-email: Jiro Mikro <jiromikro@google.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

Securely getting the IP address of a Flask http request client

```python
from flask import Flask
from flask_get_ip import get_ip

app = Flask(__name__)

@app.route("/")
def index():
    return "Hello, " + get_ip()
```
