type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| 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 |
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
adb install -r 替换已存在的应用程序,也就是说强制安装
adb install -l 锁定该应用程序
adb install -t 允许测试包
adb install -s 把应用程序安装到sd卡上
adb install -d 允许进行将见状,也就是安装的比手机上带的版本低
| #!/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 |
| #!/usr/bin/env python | |
| # -*- coding:utf-8 -*- | |
| # Author :h1code2 | |
| # File :test.py | |
| # Email :[email protected] | |
| # Time :2021/2/18 18:23 | |
| # Software :PyCharm | |
| """ | |
| 原文地址:https://mp.weixin.qq.com/s/Z_sQRgBWgYF2tIRI1ut-kg |
| # _*_ coding: utf-8 _*_ | |
| """ | |
| python_sqlalchemy.py by xianhu | |
| """ | |
| import sqlalchemy | |
| import sqlalchemy.orm | |
| import sqlalchemy.ext.declarative |
| # _*_ coding: utf-8 _*_ | |
| # Flask中的一些定义 | |
| # ============================================================================================================================= | |
| # WSGI: Web服务器网关接口,是一种Web服务使用的协议。 | |
| # 路由: 处理URL和函数之间关系的程序称为"路由"。 | |
| # 视图函数: 类似于index()这样的,被app.route装饰器注册为路由的函数,或者通过app.add_url_rule()添加路由映射关系的函数,被称为视图函数。 | |
| # app.route(): 路由装饰器,可以带参数,参数可以指定数据类型:int/float/path。path类似于字符串,但不将反斜线/当做分隔符。 | |
| # ============================================================================================================================= |