from flask import Flask, Response, jsonify from flask_cors import CORS port = 7860 host = "0.0.0.0" app = Flask(__name__) CORS(app) @app.route('/', defaults={'path': ''}) @app.route('/', methods=['GET', 'POST']) def catch_all(path): # HTML content html = ''' Under maintenance

A note from us


Hello, discord users and redditors. An inside man from the janitorai discord told me that you were using my proxy.

Stop using these proxies. Most, if not all of the proxies you use are made by 4chan users.

The code that all of these reverse proxies run were made by an anonymous user on 4chan.

You are all nothing but worthless leeches.

We do not like you. Stop using these proxies. Make your own.


Want to talk? Add me on Discord.
Discord Username: "lainchan.org"

''' # html = '''HuggingFace is, once again, currently experiencing a DDoS attack. Please check back within 24 hours. Due to being banned from the JanitorAI server under false pretenses, I am unable to properly communicate with you all. Apologies for the inconvenience. Discord tag: Moxxie#4385''' # return html return Response(html, status=403) if __name__ == '__main__': app.run(host=host, port=port)