Skip to content

Commit 35a4524

Browse files
authored
Android user agent (#173)
* Added android user agent. * Bumped revision...
1 parent 9187703 commit 35a4524

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

changelog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.8.0.14
2+
Update user agents
13
0.8.0.13
24
Update user agents
35
0.8.0.12

pyaarlo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
_LOGGER = logging.getLogger("pyaarlo")
5454

55-
__version__ = "0.8.0.13"
55+
__version__ = "0.8.0.14"
5656

5757

5858
class PyArlo(object):

pyaarlo/constant.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,10 @@
323323
"Gecko/20100101 Firefox/135.0",
324324
"linux":
325325
"Mozilla/5.0 (X11; Linux x86_64) "
326-
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36"
326+
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36",
327+
"android":
328+
"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; PACM00 Build/O11019) "
329+
"AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/8.8 Mobile Safari/537.36"
327330
}
328331

329332
CERT_BEGIN = '-----BEGIN CERTIFICATE-----\n'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def readme():
1111
setup(
1212

1313
name='pyaarlo',
14-
version='0.8.0.13',
14+
version='0.8.0.14',
1515
packages=['pyaarlo'],
1616

1717
python_requires='>=3.7',

0 commit comments

Comments
 (0)