This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NodeAT16 < Formula | |
desc "Platform built on V8 to build network applications" | |
homepage "https://nodejs.org/" | |
url "https://nodejs.org/dist/v16.20.0/node-v16.20.0.tar.xz" | |
sha256 "e0990f992234e40a51fe11f92c3816c93a77e1b081145d3dd762cd1026345349" | |
license "MIT" | |
livecheck do | |
url "https://nodejs.org/dist/" | |
regex(%r{href=["']?v?(16(?:\.\d+)+)/?["' >]}i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An Example of how to parse command line arguments in streamlit. | |
# This is free and unencumbered software released into the public domain. | |
import os | |
import sys | |
import random | |
import argparse | |
import streamlit as st | |
parser = argparse.ArgumentParser(description='This app lists animals') |