欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Python 通過(guò)微信控制實(shí)現(xiàn)app定位發(fā)送到個(gè)人服務(wù)器再轉(zhuǎn)發(fā)微信服務(wù)器接收位置信息

 更新時(shí)間:2019年08月05日 10:29:27   作者:wzjssssssssss  
這篇文章主要介紹了Python 通過(guò)微信控制實(shí)現(xiàn)app定位發(fā)送到個(gè)人服務(wù)器,再轉(zhuǎn)發(fā)微信服務(wù)器接收位置信息,本文給出了實(shí)例代碼,代碼簡(jiǎn)單易懂,非常不錯(cuò)具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

考慮到女友的安全問(wèn)題,就做了一個(gè)app實(shí)現(xiàn)定位和服務(wù)器實(shí)現(xiàn)轉(zhuǎn)發(fā)的東西。剛學(xué)python,竟沒(méi)想到用對(duì)象編程會(huì)更加方便,全程過(guò)程式開(kāi)發(fā),代碼有點(diǎn)臃腫,就當(dāng)學(xué)習(xí)下python吧.

效果就是:在微信公眾號(hào)中輸入指定字符比如:”我要知道你的位置”,手機(jī)那端的位置就彈出來(lái)了.主要是講一下思路:先是app實(shí)現(xiàn)定位,當(dāng)微信發(fā)送消息時(shí),消息從微信服務(wù)器轉(zhuǎn)發(fā)到開(kāi)發(fā)者服務(wù)器然后用socket發(fā)送指定消息來(lái)通知app,I need your location,app接收到消息之后再發(fā)送給開(kāi)發(fā)服務(wù)器(app 開(kāi)service實(shí)現(xiàn)后臺(tái)全程運(yùn)行),由于定位信息是經(jīng)緯度,所以用了高德API,但是發(fā)現(xiàn)谷歌地球的定位是準(zhǔn)的,可能和android內(nèi)置的定位有關(guān)系吧,然后就轉(zhuǎn)換了一下不同地圖的經(jīng)緯度,然后轉(zhuǎn)成位置信息發(fā)送給微信服務(wù)器.

import socket
import threading
import os
import requests
from flask import Flask
from flask import request
from bs4 import BeautifulSoup
import json
global sock
#實(shí)現(xiàn)通過(guò)微信控制手機(jī)app定位發(fā)送給服務(wù)器顯示位置信息
loca = "welcome"
app = Flask(__name__)
#搭建web服務(wù)器通過(guò)socket發(fā)送消息給app索取定位信息,然后轉(zhuǎn)發(fā)給微信服務(wù)器
@app.route("/wx_check",methods=["POST","GET"]) #這里用了一個(gè)Web框架  "/wx_check" 是你在微信中填的開(kāi)發(fā)者服務(wù)器路徑
def application():
  openID = request.args['openid'] # 微信發(fā)的,詳見(jiàn)開(kāi)發(fā)者文檔
  soup = BeautifulSoup(request.data,"html.parser")
  content = soup.find("content") # content 是微信用戶發(fā)的消息,可用來(lái)驗(yàn)證用戶
  sock.send(b"getlocation") # 發(fā)送信息通知android
  global loca
  while True: #手動(dòng)阻塞
    if loca != "welcome":
      break
  back = loca
  loca = "welcome"
  return """
  <xml> 
  <ToUserName>%s</ToUserName> 
  <FromUserName>qqmsssssssss</FromUserName>
  <CreateTime>12345678</CreateTime> 
  <MsgType>text</MsgType> 
  <Content>%s</Content> 
  </xml>"""%(openID,back)
def start():
  app.run('0.0.0.0',80)
threading.Thread(target=start,args=()).start()
# 與app進(jìn)行socket連接 接受定位信息 另外用到經(jīng)緯度兼容轉(zhuǎn)換API 和經(jīng)緯度轉(zhuǎn)位置API
def tcplink(sock,addr):
  try:
    print('Accept new connection from %s:%s...' % addr)
    while True:
      sock.setblocking(True)
      data = sock.recv(1024)
      location = data.decode('utf-8')
      print("client:"+location)
      # 以下進(jìn)行經(jīng)緯度 地圖信息的轉(zhuǎn)換 loca為app所在地址接上面的 堵塞
      if location != "":
        global loca
        print(location)
        lis = location.split(",")
        location = "%s,%s"%(lis[1],lis[0])
        print(location)
        xml = requests.get("http://api.gpsspg.com/convert/coord/?oid=xxxx&key=xxxxxxxxxxxxxxxxxx&from=0&to=3&latlng=%s&output=xml"%location)
        soup = BeautifulSoup(xml.text,"html.parser")
        print(soup.text)
        lat= soup.find("lat").string
        lng= soup.find("lng").string
        location = "%s,%s"%(lng,lat)
        print("after"+location)
        a = requests.get("http://restapi.amap.com/v3/geocode/regeo?key=xxxxxxxxxxxxxxxxx&location="+location)
        loca = a.text
        obj = json.loads(loca)
        loca = obj["regeocode"]["formatted_address"]
      else:
        print("socket is close,waiting new accept")
        sock.close()
        break
  except Exception as e:
    location = "raise error"
  finally:
    pass

try:
  s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
  s.bind(('0.0.0.0',9999))
  s.listen(10)
  print('waiting to connect')
  while True:
    sock,addr = s.accept()  #等待app來(lái)連接
    t = threading.Thread(target=tcplink,args=(sock,addr))
    t.start()
finally:
  print("ending")
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
以下是android端代碼:

# 獲取定位,其實(shí)就是獲取經(jīng)緯度
private Location getLastKnownLocation() {
    LocationManager mLocationManager = (LocationManager)getApplicationContext().getSystemService(LOCATION_SERVICE);
    List<String> providers = mLocationManager.getProviders(true);
    Location bestLocation = null;
    for (String provider : providers) {
      Location l = mLocationManager.getLastKnownLocation(provider);
      if (l == null) {
        continue;
      }
      if (bestLocation == null || l.getAccuracy() < bestLocation.getAccuracy()) {
        // Found best last known location: %s", l);
        bestLocation = l;
      }
    }
    return bestLocation;
  }

  String provider;
  public void GetLocation(){
    LocationManager mLocationManager;
    Location location = getLastKnownLocation();

//    Log.d("TAG", provider.toString());
    Log.d("TAG", location.toString());
    if (location != null) {
      //獲取當(dāng)前位置,這里只用到了經(jīng)緯度
      String string =location.getLongitude() + ","+ location.getLatitude();
      try {
        OutputStream outputStream = socket.getOutputStream();
        PrintWriter writer = new PrintWriter(outputStream);
        writer.write(string);
        writer.flush();
//       writer.close();
//       socket.shutdownOutput();
      } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      }
    }
  }
  @SuppressLint("ShowToast") public void Connect(){
    try {
      socket = new Socket();
      socket.connect(new InetSocketAddress("xxx.xxx.xxx.xxx",9999));
      while (true) {
        Log.d("TAG", socket.isConnected()+"");
        InputStream stream = socket.getInputStream(); 
        byte[] b = new byte[11];
        stream.read(b);
        String sb = new String(b);
        if(sb.equalsIgnoreCase("getlocation")){
          GetLocation();
        }else
        {
          OutputStream outoStream = socket.getOutputStream();
          outoStream.write("error code".getBytes());
          socket.shutdownOutput();
        }
      }
    } catch (IOException e) {
      // TODO Auto-generated catch block
      Log.d("TAG", "error");
      e.printStackTrace();
    }
  }

總結(jié)

以上所述是小編給大家介紹的Python 通過(guò)微信控制實(shí)現(xiàn)app定位發(fā)送到個(gè)人服務(wù)器再轉(zhuǎn)發(fā)微信服務(wù)器接收位置信息 ,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

相關(guān)文章

  • request基本使用及各種請(qǐng)求方式參數(shù)的示例

    request基本使用及各種請(qǐng)求方式參數(shù)的示例

    這篇文章主要為大家介紹了request的基本使用及各種請(qǐng)求方式參數(shù)示例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步早日升職加薪
    2022-04-04
  • pyhthon繪制超炫酷的心形線星形線擺線

    pyhthon繪制超炫酷的心形線星形線擺線

    這篇文章主要為大家介紹了如何用pyhthon繪制各種超炫酷的擺線,本文主要實(shí)現(xiàn)了心形線和星形線也就是外擺線和內(nèi)擺線兩種,有需要的朋友可以借鑒參考下
    2021-10-10
  • 超級(jí)實(shí)用的8個(gè)Python列表技巧

    超級(jí)實(shí)用的8個(gè)Python列表技巧

    這篇文章主要介紹了實(shí)用的8個(gè)Python列表技巧,幫助大家更好的理解和學(xué)習(xí)python列表的知識(shí),感興趣的朋友可以了解下
    2020-08-08
  • python使用PIL剪切和拼接圖片

    python使用PIL剪切和拼接圖片

    這篇文章主要為大家詳細(xì)介紹了python使用PIL剪切和拼接圖片,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-03-03
  • Python實(shí)現(xiàn)文件復(fù)制刪除

    Python實(shí)現(xiàn)文件復(fù)制刪除

    本文通過(guò)2個(gè)具體的實(shí)例,給大家展示了如何使用Python實(shí)現(xiàn)文件的復(fù)制與刪除,非常的簡(jiǎn)單實(shí)用,有需要的小伙伴可以參考下
    2016-04-04
  • 淺談python的深淺拷貝以及fromkeys的用法

    淺談python的深淺拷貝以及fromkeys的用法

    這篇文章主要介紹了python的深淺拷貝以及fromkeys的用法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-03-03
  • python將下載到本地m3u8視頻合成MP4的代碼詳解

    python將下載到本地m3u8視頻合成MP4的代碼詳解

    這篇文章主要介紹了python將下載到本地m3u8視頻合成MP4的代碼詳解,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-11-11
  • Python類方法總結(jié)講解

    Python類方法總結(jié)講解

    這篇文章主要介紹了Python類方法總結(jié)講解,本篇文章通過(guò)簡(jiǎn)要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下
    2021-07-07
  • Mac版Python3安裝/升級(jí)的方式

    Mac版Python3安裝/升級(jí)的方式

    這篇文章主要介紹了Mac版Python3安裝/升級(jí)的方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-03-03
  • python記錄程序運(yùn)行時(shí)間的三種方法

    python記錄程序運(yùn)行時(shí)間的三種方法

    這篇文章主要介紹了python記錄程序運(yùn)行時(shí)間的三種方法的相關(guān)資料,需要的朋友可以參考下
    2017-07-07

最新評(píng)論