main.py 226 B

12345678910111213141516
  1. import httpx
  2. class main():
  3. def __init__(self):
  4. pass
  5. def run(self):
  6. url = "https://www.zhcw.com/kjxx/ssq/"
  7. resp = httpx.get(url)
  8. if __name__ == "__main__":
  9. main = main()
  10. main.run()