This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import wikipedia | |
wikipedia.set_lang("tr") | |
file = open("aranacaklar.txt", "r" , encoding="utf-8") | |
line = file.readlines() | |
words = line | |
count = 0 | |
for word in words: | |
print(word,' aranıyor ...') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import wikipedia | |
wikipedia.set_lang("tr") | |
file = open("aranacaklar.txt", "r" , encoding="utf-8") | |
line = file.readlines() | |
words = line | |
for word in words: | |
print(word,' Aranıyor ...') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1-) Python Wikipedia Paketi Kullanımı | |
http://www.python.tc/python-wikipedia-paketi-kullanimi-ozellikleri | |
2-) Python ile Arduino Haberleşmesi - PySerial | |
http://www.python.tc/python-ile-arduino-haberlesmesi | |
3-) Python Kullanarak Web Siteden Veri Çekme - BeautifulSoup Kullanımı | |
http://www.python.tc/python-kullanarak-web-siteden-veri-cekme | |
4-) Python Log Tutma - logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************* Kütüphanelerimizi ekliyelim. *********************************/ | |
#include <SPI.h> | |
#include "Adafruit_MQTT.h" | |
#include "Adafruit_MQTT_Client.h" | |
#include <Ethernet.h> | |
#include <EthernetClient.h> | |
/************************* Ethernet İşlemcisinin Kurulumu *****************************/ |
NewerOlder