اذهب إلى المحتوى

السؤال

Recommended Posts

  • 0
نشر (معدل)

نعم يمكنك فعل ذلك عن طريق مكتبة tweepy التي يجب عليك تحميلها وتثبيتها أولا ثم يجب عليك الحصول على مفاتيح الوصول من موقع المطورين لتويتر، عن طريق الخطوات التالية:

20131126_twitterBot01-1.thumb.jpg.eea17e

20131126_twitterBot02-1-920x815.thumb.jp

وبعد ذلك في Details قم بالضغط على الزر الأزرق الكبير لإنشاء مفاتيح الوصول.

هذا مثال لشيفرة برمجية لإرسال تغريدة عن طريق البايثون:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import tweepy, time, sys

argfile = str(sys.argv[1])

#enter the corresponding information from your Twitter application:
CONSUMER_KEY = '1234abcd...'#keep the quotes, replace this with your consumer key
CONSUMER_SECRET = '1234abcd...'#keep the quotes, replace this with your consumer secret key
ACCESS_KEY = '1234abcd...'#keep the quotes, replace this with your access token
ACCESS_SECRET = '1234abcd...'#keep the quotes, replace this with your access token secret
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)

filename=open(argfile,'r')
f=filename.readlines()
filename.close()

for line in f:
    api.update_status(line)
    time.sleep(900)#Tweet every 15 minutes

ملاحظة: قم بإضافة المعلومات حسب المطلوب (معلومات CONSUMER_KEY و ACCESS_KEY وغيرها ...).

بعد ذلك قم بعمل ملف باسم – على سبيل المثال – helloworld.txt وقم بكتابة أي نص تريد تغريده ثم بعد ذلك أكتب الأمر التالي في سطر الأوامر:

python helloworld.py helloworld.txt

وستجد التغريدة على حسابك في تويتر.

إذا أردت المزيد من الشرح حول مكتبة tweepy فستجده في المصدر.

المصدر

تم التعديل في بواسطة هشام رزق الله

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...