12345678910111213141516171819202122232425 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2022/05/24 15:02:12
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : api
- '''
- _host = r"http://www.xiaohua.com"
- startUrl = _host + "/detail/"
- # http://www.xiaohua.com/duanzi?page=2
- startDuanziUrl=_host+"/duanzi/"
|