Open-sourced and self-hosted alternative to Google CAPTCHA services. Requires JS, but auto verifies on page load.
6 lines
118 B
Python
6 lines
118 B
Python
from app.views import app as application
|
|
app=application
|
|
|
|
if __name__ == '__main__':
|
|
application.run(port="4343")
|