Skip to main content

forum-py

GitHub issues GitHub pull requests GitHub pull license

forumpy is an unofficial SA-MP forum api.This python library ,integerated with selenium and phantomJS,helps you to automate SA-MP forum acitivities like send and get pms,threads,userinfo,contacts etc.Please view the example files for information about using these features in your python application.forumpy is still under development and has not yet been released.

Quick examples

  • Basic

      from forum.account import Account
      name = input("Input your forum user name : ")
      password = input("Input your forum password : ")
      a = Account(name,password)
      print("Logined with user id : ",a.id)
      print("\t**Account info**\n",a.User.info())
      print("\n\t***Contacts***\n")
      print("\tId\tUsername")
      for i in a.getcontacts():
          print("\t",i.id,"\t",i.name)
      print("\n\t***Threads***\n")
      print("\tTitle\tRatings\tAuthor")
      for i in a.User.getthreads():
          print(i.title,"\t",i.getrating(),"\t",i.author.name)
    
  • Send and Get private messages

      from forum.user import User
      from forum.account import Account
      name = input("Input forum username : ")
      password = input("Input forum password : ")
      a = Account(name,password)
      print(a.getpms())
      rec_names = input("Input name of recipents (seperated by space) : ").split(" ")
      users = []
      for rec_name in rec_names:
          users.append(User(a.getIdFromUserName(rec_name)))
      title = input("Input title : ")
      content = input("Input content : ")
      a.send_pm(users,title,content)
    

Please view examples files for more examples

Requirements

  • Python 3.5+
  • Selenium library
  • PhantomJS headless web driver
  • BeautifulSoup library

Release history Release notifications | RSS feed

0.0.3

2 release files

0.0.2

2 release files

This release

0.0.1 This release

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page