Skip to main content

Facebook Tools Box

Project description

FBToolsBox

Facebook Automation Tools
Author : Dapunta Khurayra X
Library : FBToolsBox
Release : 01/01/2024
Last Update : 07/01/2024
Version : 0.0.2
Python : 3.10 - 3.12



Installation

pip install fbtoolsbox



Features

After Finishing Reading The Documentation,
See The Instructions For Usage

  1. Login via Cookie, Email, and Phone
  2. Get Access Token EAAG, EAAB, EAAD, EAAC, EAAF and EABB
  3. Get Information of Profile, Page, and Group
  4. Automation 1
  5. Change Privacy
  6. Friend Option



Create Account

from FBTools.CreateAccount import CreateAccount

name = 'Input Your Name Here'
password = 'Input Your Password Here'
birthday = '25/12/1995' # DD/MM/YYYY
email = 'examplename@example.com'
gender = 1 # 1=Male, 0=Female
CA = CreateAccount()
CA.SetData(name=name, password=password, birthday=birthday, email=email, gender=gender)
CA.Create()

Parameter

name : Name You Want To Create (string, default=None)
password : Password You Want To Create (string, default=None)
birthday : Birth Date You Want To Set (string, default=None)
email : Email You Want To Register (string, default=None)
phone : Phone You Want To Register (string, default=None)
gender : Gender You Want To Set (bool, default=0 -> female)




Login

Parameter

cookie   = 'datr=nxbaxnynx; sb=axn...' # Input Your Cookie Here
email    = 'dapuntaxayonara@gmail.com' # Input Your Email Here
phone    = '6282245780524'             # Input Your Phone Here
password = 'satusampaidelapan'         # Input Your Password Here

Login With Cookie

from FBTools import Start
FB = Start(cookie=cookie)

Login With Email & Password

from FBTools import Start
FB = Start(email=email, password=password)

Login With Phone & Password

from FBTools import Start
FB = Start(phone=phone, password=password)



Instructions For Use

If you want to use one cookie (single cookie) to run this tools, put LoginCookie or LoginEmail or LoginPhone on top, or put it in a different def (make your own def login())

from FBTools import Start

def Login():
    cok = input('Input Your Cookie : ')
    FB = Start(cookie=cok) #--> Single Cookie
    if FB.IsValid:
        BotComment(FB)
    else:
        exit('Cookie Invalid')

def BotComment(FB):
    post = input('Input ID Post : ')
    comt = input('Write Comment : ')
    loop = int(input('How Many : '))
    for i in range(loop):
        Comment = FB.CommentToPost(post=post, text=comt)
        print(Comment)

if __name__ == '__main__':
   Login()

If you want to use many cookies (multi cookies) to run this tools, put LoginCookie or LoginEmail or LoginPhone in the same function as the next object call

from FBTools import Start

list_cookie = ['cookie1','cookie2','cookie3','cookie4']
id_target   = '1827084332'

def BotFollow():
   for cok in list_cookie:
      FB = Start(cookie=cok) #--> Multi Cookies
      FO = FB.Follow(id_target)
      print(FO)

if __name__ == '__main__':
   BotFollow()



Get Access Token

TokenEAAG = FB.TokenEAAG()
TokenEAAB = FB.TokenEAAB()
TokenEAAD = FB.TokenEAAD()
TokenEAAC = FB.TokenEAAC()
TokenEAAF = FB.TokenEAAF()
TokenEABB = FB.TokenEABB()



Get Info Account, Page, Group

Parameter

# Must Be Included
target_profile = '100000198243102'               # ID/URL Profile Target (string, default=False)
target_page    = '100044426739616'               # ID/URL Page Target (string, default=False)
target_group   = '1824553201274304'              # ID/URL Group Target (string, default=False)

Get Info Profile

profile = FB.GetInfoProfile(target_profile)
print(profile.id)
print(profile.username)
print(profile.name)
print(profile.short_name)
print(profile.gender)
print(profile.work)
print(profile.education)
print(profile.current_city)
print(profile.hometown)
print(profile.relationship)
print(profile.birthday)
print(profile.language)
print(profile.website)
print(profile.github)
print(profile.instagram)
print(profile.friend)
print(profile.follower)

Get Info Page

page = FB.GetInfoPage(target_page)
print(page.id)
print(page.username)
print(page.name)
print(page.follower)
print(page.category)

Get Info Group

group = FB.GetInfoGroup(target_group)
print(group.id)
print(group.username)
print(group.name)
print(group.privacy)
print(group.membership)
print(group.admin)
print(group.moderator)
print(group.member)
print(group.new_member)
print(group.post_last_day)
print(group.post_last_month)
print(group.visibility)
print(group.history)
print(group.description)



Auto Post

Parameter

# Must Be Included
text    = 'Hello! Test Bot Post'                             # Caption (string, default=None)
group   = '1824553201274304'                                 # Group ID (string, default=None)
# 'group' must include if post to group
# You must post at least 1 text or 1 photo

# Optional
url     = ['https://e.top4top.io/p_2916o42201.jpg']          # Picture URL (list, default=None)
tag     = ['1827084332','100000415317575','100000200420913'] # Friend ID You Want To Tag (list, default=None)
privacy = 1 # 1=Public, 2=Friends, 3=OnlyMe                  # Post Privacy (int, default=None)

Post To Feed

Post = FB.PostToFeed(text=text, url=url, tag=tag, privacy=privacy)

Post To Group

Post = FB.PostToGroup(group=group, text=text, url=url, tag=tag, privacy=privacy)

Return

{'status':'success','id':idpost,'message':None}
{'status':'pending','id':idpost,'message':'Pending Post'}
{'status':'failed','id':None,'message':'cookie invalid'}
{'status':'failed','id':None,'message':"Don't Create Same/Duplicate Post"}
{'status':'failed','id':None,'message':'Your Account Restricted To Post In Group'}
{'status':'failed','id':None,'message':'Terjadi Kesalahan'}



Auto Comment

Parameter

# Must Be Included
post   = 'Facebook.com/6929777330379375'                    # ID/URL Post Target (string, default=None)
text   = 'Hello! Test Bot Comment'                          # Caption (string, default=None)
# You must comment at least 1 text or 1 photo

# Optional
photo  = 'https://e.top4top.io/p_2916o42201.jpg'            # Picture URL (string, default=None)
tag    = ['1827084332','100000415317575','100000200420913'] # Friend ID You Want To Tag (list, default=None)

Comment To Post

Comment = FB.CommentToPost(post=post, text=text, photo=photo, tag=tag)

Return

{'status':'success','id':comment_id,'message':None}
{'status':'failed','id':None,'message':'cookie invalid'}
{'status':'failed','id':None,'message':'Spam Or Something Else'}
{'status':'failed','id':None,'message':'Terjadi Kesalahan'}



Auto React

Parameter

# Must Be Included
post   = 'Facebook.com/6929777330379375'                            # ID/URL Post Target (string, default=None)
react  = 5 # 1=Like, 2=Love, 3=Haha, 4=Wow, 5=Care, 6=Sad, 7=Angry  # Reaction Type (int, default=2=Love)

React To Post

Reaction = FB.ReactToPost(post=post, react=react)

Return

{'status':'success','react_type':react_type,'message':None}
{'status':'failed','react_type':react_type,'message':'Spam Or Something Else'}
{'status':'failed','react_type':react_type,'message':'Terjadi Kesalahan'}



Auto Share

Parameter

# Must Be Included
post    = 'Facebook.com/6929777330379375'                    # ID/URL Post You Want To Share (string, default=None)
group   = '1824553201274304'                                 # Group ID (string, default=None)
# 'group' must include if share to group

# Optional
text    = 'Hello! Test Bot Share'                            # Caption (string, default=None)
tag     = ['1827084332','100000415317575','100000200420913'] # Friend ID You Want To Tag (list, default=None)
privacy = 1 # 1=Public, 2=Friends, 3=OnlyMe                  # Share Privacy (int, default=None)

Share To Feed

Share = FB.ShareToFeed(post=post, text=text, tag=tag, privacy=privacy)

Share To Group

Share = FB.ShareToGroup(post=post, group=group, text=text, tag=tag, privacy=privacy)

Return

{'status':'success','id':idshare,'message':None}
{'status':'pending','id':idshare,'message':'Pending Post'}
{'status':'failed','id':None,'message':"Don't Create Same/Duplicate Post"}
{'status':'failed','id':None,'message':'post has been deleted or there is an error'}
{'status':'failed','id':None,'message':'Your Account Restricted To Post In Group'}
{'status':'failed','id':None,'message':'Terjadi Kesalahan'}



Change Privacy

Parameter

# Must Be Included
post    = '10217059556200871'                  # ID/URL Post  You Want To Change Privacy (string, default=None)
photo   = '10214228940637251'                  # ID/URL Photo You Want To Change Privacy (string, default=None)
album   = '146803788687013'                    # ID/URL Album You Want To Change Privacy (string, default=None)
privacy = 3 # 1=Public, 2=Friends, 3=OnlyMe    # Selected Privacy (int, default=3)

Post Privacy

Privacy = FB.PostPrivacy(post=post, privacy=privacy)

Photo Privacy

Privacy = FB.PhotoPrivacy(photo=photo, privacy=privacy)

Album Privacy

Privacy = FB.AlbumPrivacy(album=album, privacy=privacy)

Return

{'status':'success','id':id,'privacy':privacy,'message':None}
{'status':'failed','id':id,'privacy':None,'message':'Spam Or Something'}
{'status':'failed','id':None,'privacy':None,'message':'Something Went Wrong'}



Friend Option

Parameter

id_target = '1827084332'    # ID Profile You Want To Give Action (string, default=False)

Add Friend

AD = FB.AddFriend(id_target)

Unfriend

UF = FB.UnFriend(id_target)

Follow

FO = FB.Follow(id_target)

Unfollow

UO = FB.UnFollow(id_target)

Block

BL = FB.Block(id_target)

Unblock

UB = FB.UnBlock(id_target)

Return

{'status':'success','id':id_target,'message':None}
{'status':'failed','id':id_target,'message':'Account Spam or Cookie Invalid'}
{'status':'failed','id':None,'message':'ID Not Found or Cookie Invalid'}



Account Settings


2 Factor Authentication

Parameter

active   = True # True=On, False=Off    # 2FA Option (bool, default=None)
password = 'acumalaka99'                # Account Password (string, default=None)

Code

A2F = FB.Authentication(active=active, password=password)

Return

{'status':'success','key':Key2FA,'recovery':RecoveryCode,'message':None}
{'status':'failed','key':None,'recovery':None,'message':'Wrong Password'}
{'status':'failed','key':None,'recovery':None,'message':'Account Spam'}
{'status':'failed','key':None,'recovery':None,'message':'Failed To Authenticate'}
{'status':'failed','key':None,'recovery':None,'message':'Unknown Error'}

Check Application

Code

APP = FB.CheckApp()

Return

{'active':[ActiveApps],'expired':[ExpiredApps]}

Profile Guard

Code

PG = FB.ProfileGuard(True) # True=On, False=Off

Return

{'status':'active','message':None}
{'status':'inactive','message':None}
{'status':'failed','message':'Token EAAG Invalid, Please Remove Your 2FA'}
{'status':'failed','message':'Error, Something Went Wrong'}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fbtoolsbox-0.0.2.tar.gz (22.6 kB view details)

Uploaded Source

File details

Details for the file fbtoolsbox-0.0.2.tar.gz.

File metadata

  • Download URL: fbtoolsbox-0.0.2.tar.gz
  • Upload date:
  • Size: 22.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for fbtoolsbox-0.0.2.tar.gz
Algorithm Hash digest
SHA256 bb656d553d307b65f0ed3fb7f2dee3d442fad68911815785168d849d025327cc
MD5 336cc3a7c984686a739972c696b0e62a
BLAKE2b-256 d4801794ccd2a683038d719e8ebbb82fe09d238d632424975dee8da93ef9aa03

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page