Skip to content

Commit

Permalink
Update and optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeanAmier committed Aug 25, 2021
1 parent 12205b9 commit 5ddb672
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 代码示例/JA3指纹.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import time

import requests
from fake_useragent import FakeUserAgent

ua = [FakeUserAgent().chrome for _ in range(10)]
for i in ua:
response = requests.get(
'https://ja3er.com/json',
headers={
'User-Agent': i})
print(response.json())
time.sleep(1)

0 comments on commit 5ddb672

Please sign in to comment.