일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 개발환경
- 아두이노
- RUBY
- mqtt
- nano
- 오렌지파이
- Android
- Server
- Beacon
- python3
- BLE
- flask
- Arduino
- Python
- uno
- Raspberry Pi 3
- 라즈베리파이
- IOT
- odroid-x2
- orange pi
- Raspberry Pi
- ruby on rails
- dht11
- rails
- STM32F4
- ubuntu
- parser
- java
- JSON
- Nginx
- Today
- Total
목록Programming/python (14)
[熱情]
현재.. 라즈베리파이3에 우분투 mate 를 사용중임. 파이썬은 python3.x를 사용중.. python2기반이라 오류는 것들이 많음. 라즈베리파일로 비콘 스캔하기.. http://codeanalysis.tistory.com/2 python2기반이다. python3에 할려는 오류가 난다. 관련된 사이트.. http://stackoverflow.com/questions/23985163/python3-error-no-module-named-bluetooth-on-linux-mint python3 -m pip install bluez 이거하라는데 안됨 ㅠㅠ 해당 사이트에서 python3로 되어 있다고 함.. https://github.com/flyinactor91/RasPi-iBeacons코드 다운.. su..
트위터 관련 라이브러리 설치 pip install tweepy import tweepy import datetime consumer_key = 'GWQ________________u1Ei4sHp' consumer_secret = '82rdhqQ_____________________34IgOfmI0P' auth = tweepy.OAuthHandler(consumer_key, consumer_secret) access_token = '742986558___________________________iTm26XM' access_token_secret = '8WQtBZ_________________________vh9zEmqYsto' auth.set_access_token(access_token, access_..
https://github.com/simonmonk/ 여기가면. 책 예제를 다 다운받을수 있음. >>> print('hello python') hello python >>> >>> 2+2 4 file.py로 파일 만들어서 $ python file.py 로 실행하면된다.. *는 곱하기.. /는 나누기 나눗셈보다 곱셈을 먼저 계산.. 덧셈보다 나눗셈을 계산한다. >>> 20*9/5+32 68.0 for 문 >>> for a in [1, 2, 3]: ... print(a) File "", line 2 print(a) ^ IndentationError: expected an indented block // >> for x in range(1,10): ... print(x) ... //>> 난수. 램덤..>>> ..