adb install -r 替换已存在的应用程序,也就是说强制安装
adb install -l 锁定该应用程序
adb install -t 允许测试包
adb install -s 把应用程序安装到sd卡上
adb install -d 允许进行将见状,也就是安装的比手机上带的版本低
| # _*_ coding: utf-8 _*_ | |
| """ | |
| python_sqlalchemy.py by xianhu | |
| """ | |
| import sqlalchemy | |
| import sqlalchemy.orm | |
| import sqlalchemy.ext.declarative |
| #!/usr/bin/env python | |
| # -*- coding:utf-8 -*- | |
| # Author :h1code2 | |
| # File :test.py | |
| # Email :h1code2@163.com | |
| # Time :2021/2/18 18:23 | |
| # Software :PyCharm | |
| """ | |
| 原文地址:https://mp.weixin.qq.com/s/Z_sQRgBWgYF2tIRI1ut-kg |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # @Time : 2021/6/30 16:13 | |
| # @Author : h1code2 | |
| # @File : code.py | |
| # @Software: PyCharm | |
| # import module | |
| from geopy.geocoders import Nominatim |
adb install -r 替换已存在的应用程序,也就是说强制安装
adb install -l 锁定该应用程序
adb install -t 允许测试包
adb install -s 把应用程序安装到sd卡上
adb install -d 允许进行将见状,也就是安装的比手机上带的版本低
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
Note: this was written in April/May 2014 and the API may have changed since. I have nothing to do with Tinder, nor their API, and I do not offer any support for anything you may build on top of this
| from email.mime.text import MIMEText | |
| from email.header import Header | |
| from smtplib import SMTP_SSL | |
| # qq mail sending server | |
| host_server = 'smtp.qq.com' | |
| sender_mail = 'SENDER_MAIL' | |
| sender_passcode = 'PASS_CODE' | |
| # receiver mail |