home bbs files messages ]

Forums before death by AOL, social media and spammers... "We can't have nice things"

   alt.magick      Meh.. another magic/spellcasting forum      90,437 messages   

[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]

   Message 90,427 of 90,437   
   street@shellcrash.com to All   
   AI Generated Usenet Client Update (3/3)   
   24 Dec 25 01:36:43   
   
   [continued from previous message]   
      
                   print(f"[{r['rel_num']}] #{r['num']}")   
                   print(f"Group: {group}")  # <-- group under article number   
                   print(f"From: {r['from']}")   
                   print(f"Date: {r['date']}")   
                   print(f"Replies: {r['replies']}")   
                   print(f"Subject: {r['subject']}   
   ")   
           elif k == "b":   
               c = prompt("How many posts? ")   
               if c.isdigit():   
                   for p2 in posts[index:index+int(c)]:   
                       print(f"[{p2['rel_num']}] #{p2['num']}")   
                       print(f"Group: {group}")  # <-- group under article number   
                       print(f"From: {p2['from']}")   
                       print(f"Date: {p2['date']}")   
                       print(f"Replies: {p2['replies']}")   
                       print(f"Subject: {p2['subject']}   
   ")   
           elif k == "p":   
               v = prompt("Lines per page: ")   
               if v.isdigit():   
                   global PAGE_LINES   
                   PAGE_LINES = int(v)   
           elif k == "r":   
               show_replies_thread(nntp, group, p["msgid"])   
           elif k == "n":   
               post_article(nntp, group)   
           elif k == "y":   
               post_article(nntp, group, p["msgid"], p["subject"])   
      
   # ---------- MAIN ----------   
   def main():   
       print(f"   
   Connecting to {NNTP_SERVER}:{NNTP_PORT}   
   ")   
       try:   
           nntp = nntplib.NNTP_SSL(NNTP_SERVER, NNTP_PORT, USERNAME, PASSWORD)   
       except Exception as e:   
           print(f"Initial connection failed: {e}")   
           sys.exit(1)   
       browse_group(nntp, START_GROUP)   
       try:   
           nntp.quit()   
       except:   
           pass   
      
   if __name__ == "__main__":   
       main()   
      
   --- SoupGate-Win32 v1.05   
    * Origin: you cannot sedate... all the things you hate (1:229/2)   

[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]


(c) 1994,  bbs@darkrealms.ca