Skip to content

ihfazhillah/facebook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Facebook

a simple script to upload facebook status using your account. not from a graph API.

How to use

  1. install requests and bs4 package from pypi
  2. open the shell and type:
from facebook import Facebook

fb = Facebook(("youremail", "yourpassword"))
fb.update_status("your status here")

Note you need to pass a tuple in Facebook initialization.

or you can use the old way

from facebook import login, update_status

resp, sess = login("http://m.facebook.com", ("youremail", "yourpassword"))
resp, sess = update_status(resp, sess, "your status")

Thats, Easy enough... !!

About

Facebook Script Automation, using python requests library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages