A self-hosted image host in Python 3.6+
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.py 148B

12345678910
  1. import sys, os
  2. import psycopg2 as pg2
  3. import flask as f
  4. def main(args):
  5. pass
  6. if __name__ == "__main__":
  7. args = sys.argv[1:]
  8. main(args)