Added setup.py

This commit is contained in:
Antonio de la Rosa 2015-12-10 15:51:13 +01:00
parent ef0f9e5100
commit ac27d16cee
73 changed files with 55 additions and 0 deletions

View file

@ -1,18 +0,0 @@
#!/usr/bin/python3
# A simple utility for filter ips. Only use this if you don't use a server with blocking ips system
from settings import config
from bottle import request
def filterip():
#Check ip
ip = request.environ.get('REMOTE_ADDR')
if ip in config.allowed_ips:
return True
else:
return False