isrpa 0.8.6__tar.gz → 0.8.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: isrpa
3
- Version: 0.8.6
3
+ Version: 0.8.7
4
4
  Summary: isrpa package
5
5
  Home-page: https://github.com/yourusername/mypackage
6
6
  Author: ysq
@@ -102,6 +102,14 @@ def save_file(url, cookies, file_path):
102
102
  for item in cookies:
103
103
  if top_level_domain in item.get("domain"):
104
104
  cookie[item["name"]] = item["value"]
105
+ print("------top_level_domain------")
106
+ print(top_level_domain)
107
+ print("------raw cookies------")
108
+ print(cookies)
109
+ print("------cookie-----")
110
+ print(cookie)
111
+ print("------url-----")
112
+ print(url)
105
113
  response = requests.get(url, cookies=cookie)
106
114
  with open(file_path, 'wb') as file:
107
115
  file.write(response.content)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: isrpa
3
- Version: 0.8.6
3
+ Version: 0.8.7
4
4
  Summary: isrpa package
5
5
  Home-page: https://github.com/yourusername/mypackage
6
6
  Author: ysq
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='isrpa',
5
- version='0.8.6',
5
+ version='0.8.7',
6
6
  packages=find_packages(),
7
7
  install_requires=["requests", "tldextract"],
8
8
  author='ysq',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes