Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

replit-keep-alive

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

replit-keep-alive

Create a simple Flask webserver to keep your Repl online using a pinger. (such as https://up.rdsl.ga/)

  • 1.2.0
  • PyPI
  • Socket score

Maintainers
1

This is a simple package to create a webserver to keep your repl online using a pinger. (such as https://up.rdsl.ga/). With the new version your console won't be spammed with useless error logs.

Usage:

First you need to install the package by going to the shell and pasting: pip install replit-keep-alive in there. Wait until it is finished

Now the actual code:


Recommended version to use:

from replit_keep_alive import WaitressStart
WaitressStart() 
  • Default
from replit_keep_alive import start
start() #The text argument is optional. So we didn't use it here
  • Or with custom text
from replit_keep_alive import start
start("Hello world!") #The text argument is optional. 

  • Waitress version. (Without debug/development server)
from replit_keep_alive import WaitressStart
WaitressStart() #The text argument is optional. So we didn't use it here. 
  • Or the waitress version. With custom text
from replit_keep_alive import WaitressStart
WaitressStart("Hello world!") #The text argument is optional. So we didn't use it here. 

Paste these codeblocks somewhere in your code to get it working! Thanks for using Replit keep alive ❤️!

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc