Thursday 29 May 2014

Using Facebook Graph Search in Python for extracting Page Feeds

In this example I am using Facebook Python SDK.
Download the zip file and install it to your system.

For using Facebook Graph API you need Access Token.
Facebook provides both short-term (expires in around 100 minutes) and long-term tokens (60 days).
   
You can get a temporary access token from Facebook Explorer (Don't Hesitate in taking all permissions :P)
You can check the status of the access token by clicking on the Debug Button. 

If you want to take a long-term token then you will have to create an app on Facebook. 
Go to Facebook Developers and then click on App->Create an App. Once you have created an App you will get an App ID and App Secret(Never share it). 
First you will get a short term access token for your app at Access Token Tools.
Now to get your long-term access token go to -

https://graph.facebook.com/oauth/access_token?             
    client_id=APP_ID&
    client_secret=APP_SECRET&
    grant_type=fb_exchange_token& 
    fb_exchange_token=EXISTING_ACCESS_TOKEN   

You will get a new access token that will not expire in next 60 days.

Now to get feeds from a page you need to get its page_id. To get page_id you can just search the source code of the page and you will get it in format -  "type":"ent:page","uid":344128252278047

Code to use Facebook Graph API -

import facebook
graph = facebook.GraphAPI("ACCESS TOKEN")
strr = "/v2.0/"+str(PAGE_ID)+"/feed"
profile = graph.get_object(strr)
print profile

Now profile will give you the data in JSON format
You can just use it as python dictionary and go through all the feeds.
Not all the results are shown on the first page of the results. Instead, Facebook has Pagination to move along all the result pages. 

You can just use profile as python dictionary.
Code to display few details of the feeds -

def fetch_post(data):
            post_id = str(data["id"])
            author_id = "-"
            author_name = "-"
            if("from" in data):
                author_id = str(data["from"]["id"].encode('utf-8', 'replace'))
                author_name = str(data["from"]["name"].encode('utf-8', 'replace'))
            message = "-"
            if("message" in data):
                message = str(data["message"].encode('utf-8', 'replace'))
            name = "-"
            if("name" in data):
                name = str(data["name"].encode('utf-8', 'replace'))
            caption = "-"
            if("caption" in data):
                caption = str(data["caption"].encode('utf-8', 'replace'))
            source = "-"
            if("source" in data):
                source = str(data["source"].encode('utf-8', 'replace'))
            description = "-"
            if("description" in data):
                description = str(data["description"].encode('utf-8', 'replace'))
            link = "-"
            if("link" in data):
                link = str(data["link"].encode('utf-8', 'replace'))
            cr_time = "-"
            if("created_time" in data):
                cr_time = str(data["created_time"].encode('utf-8', 'replace'))
            up_time = "-"
            if("updated_time" in data):
                up_time = str(data["updated_time"].encode('utf-8', 'replace'))
            shares = "0"
            if("shares" in data):
                shares = str(data["shares"]["count"])
            likes = "0"
            if("likes" in data):
                likes = str(len(data["likes"]["data"]))
            print "Post-ID: %s" %(post_id)
            print "Author-ID: %s Author-Name: %s" %(author_id,author_name)
            print "Message: %s" %(message)
            print "Name: %s" %(name)
            print "Caption: %s" %(caption)
            print "Source: %s" %(source)
            print "Description: %s" %(description)
            print "Link: %s" %(link)
            print "Created-Time: %s Updated-Time: %s" %(cr_time,up_time)
            print "Shares: %s" %(shares)
            print "Likes: %s" %(likes)

import facebook
graph = facebook.GraphAPI("ACCESS TOKEN")
strr = "/v2.0/"+str(PAGE_ID)+"/feed"
profile = graph.get_object(strr)

print profile
sz = len(profile["data"])
for x in range(0,sz):
        if("id" in profile["data"][x]):
                details = fetch_post(profile["data"][x])

In this way you can use Facebook Graph API for fetching posts of the Page.

Here's the output of the above program for PAGE_ID - 344128252278047 (Sachin Tendulkar)

Post-ID: 344128252278047_792267827464085
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Great to meet a former 'India' player and a legend.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.792251527465715.1073741827.344128252278047/792267740797427/?type=1&relevant_count=1
Created-Time: 2014-05-28T17:32:03+0000 Updated-Time: 2014-05-29T13:21:28+0000
Shares: 1138
Likes: 25
Post-ID: 344128252278047_792251544132380
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Happy to be invited as the Goodwill Ambassador for the 35th National Games in Kerala.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.792251527465715.1073741827.344128252278047/792251310799070/?type=1&relevant_count=1
Created-Time: 2014-05-28T16:55:58+0000 Updated-Time: 2014-05-29T13:19:01+0000
Shares: 873
Likes: 25
Post-ID: 344128252278047_792025730821628
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Just got back from Kerala after a visit regarding our football team in the Indian Super League - Kerala Blasters. The support and enthusiasm of the fans and the leadership was wonderful. The following for the game of football in the state is phenomenal and am sure Kerala Blasters will give all the fans more reason to cheer and further enjoy the beautiful game of  football.
Name: -
Caption: -
Source: -
Description: -
Link: -
Created-Time: 2014-05-28T07:10:11+0000 Updated-Time: 2014-05-29T13:15:57+0000
Shares: 1482
Likes: 25
Post-ID: 344128252278047_791965037494364
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: People used to call me master blaster. I'm supporting Kerala Kochi team. I hope the entire Kerala will be behind our football team. That's why we thought of naming it as Kerala Blasters FC
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/791964920827709/?type=1&relevant_count=1
Created-Time: 2014-05-28T05:21:46+0000 Updated-Time: 2014-05-29T13:21:19+0000
Shares: 6729
Likes: 25
Post-ID: 344128252278047_791463707544497
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Practice session at the Wankhede Stadium.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/791463687544499/?type=1&relevant_count=1
Created-Time: 2014-05-27T08:22:05+0000 Updated-Time: 2014-05-29T11:42:08+0000
Shares: 2082
Likes: 25
Post-ID: 344128252278047_790873174270217
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: -
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/790873134270221/?type=1&relevant_count=1
Created-Time: 2014-05-26T06:15:29+0000 Updated-Time: 2014-05-29T11:42:15+0000
Shares: 3814
Likes: 25
Post-ID: 344128252278047_789877277703140
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: -
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/789877204369814/?type=1&relevant_count=1
Created-Time: 2014-05-24T06:27:39+0000 Updated-Time: 2014-05-29T11:42:22+0000
Shares: 4143
Likes: 25
Post-ID: 344128252278047_788296784527856
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: The first match of my career was not that great. I had sleepless nights as I had failed to score. I finally spoke to my seniors and they advised me not to take pressure and be at ease and in control of my game. That helped me score 58 in my next match. I have not forgotten that advice and share it with every youngster I meet.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/788296561194545/?type=1&relevant_count=1
Created-Time: 2014-05-21T05:53:24+0000 Updated-Time: 2014-05-29T11:42:25+0000
Shares: 2249
Likes: 25
Post-ID: 344128252278047_787300977960770
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: http://bit.ly/1hbHmjn
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/787300941294107/?type=1&relevant_count=1
Created-Time: 2014-05-19T07:39:49+0000 Updated-Time: 2014-05-29T11:42:31+0000
Shares: 3068
Likes: 25
Post-ID: 344128252278047_786249771399224
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: British Commonwealth issues legal tender coins in honor of Sachin. View or pre-order on : www.eicgold.com
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/785889024768632/?type=1&relevant_count=1
Created-Time: 2014-05-17T05:30:00+0000 Updated-Time: 2014-05-29T06:46:33+0000
Shares: 8856
Likes: 25
Post-ID: 344128252278047_785246431499558
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Memorable Picture
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/785237004833834/?type=1&relevant_count=1
Created-Time: 2014-05-15T05:49:20+0000 Updated-Time: 2014-05-29T11:04:28+0000
Shares: 40945
Likes: 25
Post-ID: 344128252278047_783730588317809
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Happy Buddha Purnima.
Name: -
Caption: -
Source: -
Description: -
Link: -
Created-Time: 2014-05-14T04:00:00+0000 Updated-Time: 2014-05-29T10:26:56+0000
Shares: 722
Likes: 25
Post-ID: 344128252278047_783742051649996
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: It's about not accepting every little challenge thrown at you. Sometimes you hold back and when it's needed you go for it.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/783738561650345/?type=1&relevant_count=1
Created-Time: 2014-05-12T06:10:17+0000 Updated-Time: 2014-05-29T06:23:06+0000
Shares: 4728
Likes: 25
Post-ID: 344128252278047_782458088445059
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: The match starts much, much earlier than the actual match.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/782110831813118/?type=1&relevant_count=1
Created-Time: 2014-05-10T04:00:00+0000 Updated-Time: 2014-05-29T08:34:29+0000
Shares: 1867
Likes: 25
Post-ID: 344128252278047_781472771876924
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: -
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/781472655210269/?type=1&relevant_count=1
Created-Time: 2014-05-08T05:07:38+0000 Updated-Time: 2014-05-29T07:08:59+0000
Shares: 6088
Likes: 25
Post-ID: 344128252278047_781042355253299
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: http://bit.ly/1hbHmjn
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/781042131919988/?type=1&relevant_count=1
Created-Time: 2014-05-07T09:18:25+0000 Updated-Time: 2014-05-29T08:56:12+0000
Shares: 2275
Likes: 25
Post-ID: 344128252278047_780358695321665
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: http://bit.ly/1sevIqw
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/780357431988458/?type=1&relevant_count=1
Created-Time: 2014-05-06T05:30:53+0000 Updated-Time: 2014-05-28T07:33:13+0000
Shares: 5977
Likes: 25
Post-ID: 344128252278047_779887502035451
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: -
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402883266402545.98317.344128252278047/779886642035537/?type=1&relevant_count=1
Created-Time: 2014-05-05T04:39:39+0000 Updated-Time: 2014-05-27T18:33:27+0000
Shares: 874
Likes: 25
Post-ID: 344128252278047_778466455510889
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Happy Birthday Brian!
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/778466282177573/?type=1&relevant_count=1
Created-Time: 2014-05-02T07:19:25+0000 Updated-Time: 2014-05-29T10:27:46+0000
Shares: 8878
Likes: 25
Post-ID: 344128252278047_777709918919876
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: I always had a dream to play for India but I never let it put pressure on me.
http://bit.ly/1hbHmjn
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/777699385587596/?type=1&relevant_count=1
Created-Time: 2014-05-01T05:30:00+0000 Updated-Time: 2014-05-29T11:13:00+0000
Shares: 4369
Likes: 25
Post-ID: 344128252278047_776701259020742
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: I celebrated the World Wish Day with Rahul Jediya. Rahul is getting treated for a life threatening disease at the Nair Hospital Mumbai. He wished to meet me above all things he could have asked for. I was glad to spend time with him at my house. Thank you Make-A-Wish Foundation for making his wish a reality.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/776324329058435/?type=1&relevant_count=1
Created-Time: 2014-04-29T03:30:00+0000 Updated-Time: 2014-05-28T15:19:44+0000
Shares: 4836
Likes: 25
Post-ID: 344128252278047_776206965736838
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: SMS "Play" to 51001 or click on http://bit.ly/1pFGUhO to play and win exciting prizes everyday.
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/776206722403529/?type=1&relevant_count=1
Created-Time: 2014-04-28T05:35:20+0000 Updated-Time: 2014-05-25T03:53:55+0000
Shares: 171
Likes: 25
Post-ID: 344128252278047_776197449071123
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: Thank you Sushil Kumar. I would also want to thank everyone for their warm heartfelt wishes. They meant a lot to me. 
Name: Timeline Photos
Caption: Sachin Sir ko Janamdin ki Hardik Shubhkaamnayen. Hum sabke liye aap ek prerna hain.
Source: -
Description: -
Link: https://www.facebook.com/214438055336512/photos/a.230714137042237.49706.214438055336512/577504559029858/?type=1
Created-Time: 2014-04-28T05:06:57+0000 Updated-Time: 2014-05-27T15:29:15+0000
Shares: 211
Likes: 25
Post-ID: 344128252278047_775769199113948
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: http://bit.ly/1hbHmjn
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/775769089113959/?type=1&relevant_count=1
Created-Time: 2014-04-27T11:44:50+0000 Updated-Time: 2014-05-28T11:08:05+0000
Shares: 3602
Likes: 25
Post-ID: 344128252278047_774563225901212
Author-ID: 344128252278047 Author-Name: Sachin Tendulkar
Message: The #WeAreSachin was a fantastic initiative by Toshiba to connect with my fans and a big thanks to everyone for making me a part of this world record. Watch mosaic here: http://bit.ly/sachincollage
Name: -
Caption: -
Source: -
Description: -
Link: https://www.facebook.com/SachinTendulkar/photos/a.402901949734010.98326.344128252278047/774563172567884/?type=1&relevant_count=1
Created-Time: 2014-04-25T04:08:20+0000 Updated-Time: 2014-05-27T05:22:16+0000
Shares: 2739
Likes: 25

54 comments:

  1. Hi, thanks for your sharing.
    I try to use your code to crawl some data from Facebook fan page, but it seems that it can only collect up to 25 #Likes. Is there any solving way? Thanks.

    ReplyDelete
  2. hi sir,
    where i ll find PAGE_ID.i need some clarification about
    PAGE_ID

    ReplyDelete
  3. I simply want to say I’m very new to blogs and actually loved you’re blog site. Almost certainly I’m going to bookmark your blog post . You absolutely come with great well written articles. Thanks a lot for sharing your blog.

    Back to original

    ReplyDelete

  4. It's interesting that many of the bloggers to helped clarify a few things for me as well as giving.Most of ideas can be nice content.The people to give them a good shake to get your point and across the command .

    digital marketing company in india

    ReplyDelete
  5. Great post! I am actually getting ready to across this information, is very helpful my friend. Also great blog here with all of the valuable information you have Keep up the good work you are doing here.Well, got a good knowledge.

    Hadoop Training in Chennai

    Base SAS Training in Chennai

    ReplyDelete
  6. It's interesting that many of the bloggers your tips helped to clarify a few things for me as well as giving.. very specific nice content. And tell people specific ways to live their lives.Sometimes you just have to yell at people and give them a good shake to get your point across.

    Invisalign Treatment In Chennai

    Best Dental Clinic In Annanagar

    ReplyDelete
  7. I do trust all of the concepts you’ve presented on your post. They’re really convincing and will definitely work. Still, the posts are too brief for newbies. May you please extend them a little from subsequent time?Also, I’ve shared your website in my social networks.
    Best Interior Designers in Chennai
    Interior Designers in Chennai

    ReplyDelete

  8. you are giving a very interesting post and it is usefull.
    informatica training in chennai

    ReplyDelete
  9. Thank you for this great article which is about using facebook graph search in python.keep more updates.
    SEO Company in India

    ReplyDelete
  10. It's like you read my mind! You seem to know a lot about this, like you wrote the book in it or something. I think that you can do with some pics to drive the message home a little bit, but instead of that, this is fantastic blog. A great read. I will definitely be back.
    Logistics Software
    Warehouse Management Software
    Logistics management software
    Human resources management software
    Fleet Management Software

    ReplyDelete
  11. This comment has been removed by the author.

    ReplyDelete
  12. Hi,
    Thanks for sharing a very interesting article about Using Facebook Graph Search in Python for extracting Page Feeds. This is very useful information for online blog review readers. Keep it up such a nice posting like this.

    From,
    Maestro Infotech,
    Web Design Company Bangalore

    ReplyDelete
  13. The Mobile Accessories is a largest mobile retail Chain dealing in leading international and Indian Brands of mobile phones and accessories headquartered with using special offers and low cost of the latest branded mobile phones. This is amazing offers with some of days.

    Mobile Showrooms in OMR

    ReplyDelete
  14. Thanks for the informative article.this is one of the best resources i have found in quite some time nicely written and great info.web design company in chennai

    ReplyDelete
  15. nice post.I am impressed by the quality of information on this website.Thanks for sharing this post
    hr and payroll software in chennai

    Automotive erp software in chennai

    Construction erp software in chennai

    ReplyDelete
  16. Thank you for benefiting from time to focus on this kind of, I feel firmly about it and also really like comprehending far more with this particular subject matter. In case doable, when you get know-how, is it possible to thoughts modernizing your site together with far more details? It’s extremely useful to me.
    Click here:
    angularjs training in bangalore
    Click here:
    angularjs training in chennai

    ReplyDelete
  17. I am sure this post has helped me save many hours of browsing other related posts just to find what I was looking for. Many thanks!
    Click here:
    Microsoft azure training in bangalore
    Click here:
    Microsoft azure training in pune

    ReplyDelete
  18. This is ansuperior writing service point that doesn't always sink in within the context of the classroom. In the first superior writing service paragraph you either hook the reader's interest or lose it. Of course your teacher, who's getting paid to teach you how to write an good essay, 


    Data Science training in chennai
    Data science training in velachery
    Data science training in tambaram
    Data Science training in OMR
    Data Science training in anna nagar

    ReplyDelete
  19. From your discussion I have understood that which will be better for me and which is easy to use. Really, I have liked your brilliant discussion. I will comThis is great helping material for every one visitor. You have done a great responsible person. i want to say thanks owner of this blog.

    java training in chennai | java training in bangalore

    java online training | java training in pune

    selenium training in chennai

    selenium training in bangalore

    ReplyDelete
  20. The knowledge of technology you have been sharing thorough this post is very much helpful to develop new idea. here by i also want to share this.
    Devops Training in pune

    ReplyDelete
  21. Inspiring writings and I greatly admired what you have to say , I hope you continue to provide new ideas for us all and greetings success always for you..Keep update more information..
    best rpa training in bangalore
    rpa training in bangalore | rpa course in bangalore
    RPA training in bangalore
    rpa training in chennai
    rpa online training

    ReplyDelete
  22. First this is a really Creative and Unique Article. Well, the main reason of me sharing my post here is that, We being the Best Digital Marketing Agency in Bangalore are open for Partnerships with Mobile App Development, Website Development and Graphics related company !


    ReplyDelete
  23. Thank you for allowing me to read it, welcome to the next in a recent article. And thanks for sharing the nice article, keep posting or updating news article.
    AWS training in sholinganallur
    AWS training in Tambaram
    AWS training in Velachery

    ReplyDelete
  24. I would like to thank you for your nicely written post, its informative and your writing style encouraged me to read it till end. Thanks
    angularjs online training

    apache spark online training

    informatica mdm online training

    devops online training

    aws online training

    ReplyDelete
  25. Some us know all relating to the compelling medium you present powerful steps on this blog and therefore strongly encourage contribution from other ones on this subject while our own child is truly discovering a great deal. Have fun with the remaining portion of the year.
    Microsoft Azure online training
    Selenium online training
    Java online training
    Python online training
    uipath online training

    ReplyDelete
  26. Hello, I read your blog occasionally, and I own a similar one, and I was just wondering if you get a lot of spam remarks? If so how do you stop it, any plugin or anything you can advise? I get so much lately it’s driving me insane, so any assistance is very much appreciated.
    AWS Training in Chennai | Best AWS Training in Chennai
    Best Data Science Training in Chennai
    Best Python Training in Chennai
    Best RPA Training in Chennai
    Digital Marketing Training in Chennai
    Matlab Training in Chennai
    Best AWS Course Training in Chennai
    Best Devops Course Training in Chennai
    Java Training Institute in Chennai
    C C++ Training in Chennai

    ReplyDelete
  27. Attend The Python training in bangalore From ExcelR. Practical Python training in bangalore Sessions With Assured Placement Support From Experienced Faculty. ExcelR Offers The Python training in bangalore.
    python training in bangalore

    ReplyDelete
  28. Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging.
    blue prism Training in Electronic City

    ReplyDelete
  29. Thanks for sharing, very informative. Top Programming Languages in 2020.

    ReplyDelete
  30. Thanks for sharing this Information. The information you Provided is much useful.

    Looking for Cloud Computing Training in Bangalore , learn from eTechno Soft Solutions Cloud Computing Training on online training and classroom training. Join today!

    ReplyDelete
  31. I love the blog. Great post. It is very true, people must learn how to learn before they can learn. lol i know it sounds funny but its very true. . .
    I love the blog. Great post. It is very true, people must learn how to learn before they can learn. lol i know it sounds funny but its very true. . .
    thank u so much.
    Ai & Artificial Intelligence Course in Chennai
    PHP Training in Chennai
    Ethical Hacking Course in Chennai Blue Prism Training in Chennai
    UiPath Training in Chennai

    ReplyDelete
  32. This is a great post I saw thanks to sharing. I really want to hope that you will continue to share great posts in the future.
    pmp certification in malaysia

    ReplyDelete
  33. I was looking at a portion of your posts on this site and I consider this site is really enlightening! Keep setting up..
    HRDF training

    ReplyDelete

  34. We are well established IT and outsourcing firm working in the market since 2013. We are providing training to the people ,
    like- Web Design , Graphics Design , SEO, CPA Marketing & YouTube Marketing.Call us Now whatsapp: +(88) 01537587949
    : SEO training course
    Free bangla sex video:careful
    good post Freelancing Training in bangladesh

    ReplyDelete
  35. Looking for a reliable online assignment help provider to help in the UAE? Don’t worry we got the solution to your problem. We offer all academic assignment services for students within the budget. Visit our website to learn

    ReplyDelete
  36. Great post! For taking the Cheap Assignment Help USA you should visit our assignment writing portal. On our portal, we provide all types of assignment writing help which you want to take.

    ReplyDelete
  37. We are one stop destination for you, if you're passing through any issues together with your QuickBooks. We will assist you within the right ways, if QuickBooks won't open. once you attempt to use your QuickBooks account, your QuickBooks won't open. It becomes very serious and sophisticated situation, so you want to take proper care of your software. If you don’t have knowledge to repair QuickBooks will not open, our QuickBooks experts can perform the simplest job to unravel your issue easily. Our certified QuickBooks professionals are very proficient and skilled to understand the explanations of QuickBooks won't open issue and apply the acceptable techniques to resolve this issue within a couple of seconds. Our online QuickBooks expert team is out there around the clock to help you, if you're facing minor or major issues with QuickBooks.

    ReplyDelete
  38. Do you want to master the latest Python programming language? AI Patasala can provide full Python training in Hyderabad and guide you on advancing and advancing your career.
    Online Python Course in Hyderabad

    ReplyDelete
  39. This an excellent article blog, it offers solutions to difficult questions, easy description can make a difficult thing understandable, and you put so much effort to discuss everything in clear terms, thanks for sharing. elizade university cut off mark for civil engineering course

    ReplyDelete
  40. I enjoyed reading your blog post and I learned a lot from it. Keep up the good work! i just want to recommended you the Best SEO agency in Surat

    ReplyDelete
  41. informative blog, thanks for sharing us and if you are intresting in data analyst then checkout data science course in satara

    ReplyDelete