Advertisement

Create Web Based Python Apps in the Cloud with WayScript (Made Easy!)

Create Web Based Python Apps in the Cloud with WayScript (Made Easy!) Hey Everyone! In this one we'll look at how we can connect our workflows to website endpoints and python code. We'll create a password generator which runs from the cloud and then returns the password to our website.

Sign up for WayScript now --

Python code for the password generator:
import string
from random import *

characters = string.ascii_letters + string.digits + string.punctuation

password = "".join(choice(characters) for x in range(randint(8,16)))

print(password)


HTML code used in this video:


Tutorial on the python code for the random password generator:

(Forgive me it was one of my first videos on youtube, haha)



Follow WayScript on Social Media:
GitHub -
Twitter -
Linkedin -
Facebook -

#WayScript gives you flexible building blocks to seamlessly integrate, automate, and host tools in the cloud. Unlock new potential with drag and drop programming.

Need ideas on how to use WayScript? View our template library to get ideas:


Let us know any feedback to help us improve the platform.

Ready to get started? Get Superpowers with WayScript today.

WayScript,Python,Programming,Web App,Cloud,Cloud hosted,Cloud hosted application,random password generator,website,web development,tutorial,how to,Derrick Sherrill,Drag and Drop Superpowers,Build Website,Python app,

Post a Comment

0 Comments