pytrends-modern 0.1.0__tar.gz → 0.1.1__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.
Files changed (24) hide show
  1. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/MANIFEST.in +1 -1
  2. {pytrends_modern-0.1.0/pytrends_modern.egg-info → pytrends_modern-0.1.1}/PKG-INFO +8 -8
  3. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/README.md +7 -7
  4. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pyproject.toml +1 -1
  5. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1/pytrends_modern.egg-info}/PKG-INFO +8 -8
  6. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/LICENSE +0 -0
  7. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/examples/advanced_usage.py +0 -0
  8. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/examples/basic_usage.py +0 -0
  9. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/__init__.py +0 -0
  10. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/cli.py +0 -0
  11. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/config.py +0 -0
  12. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/exceptions.py +0 -0
  13. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/py.typed +0 -0
  14. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/request.py +0 -0
  15. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/rss.py +0 -0
  16. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern/utils.py +0 -0
  17. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern.egg-info/SOURCES.txt +0 -0
  18. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern.egg-info/dependency_links.txt +0 -0
  19. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern.egg-info/entry_points.txt +0 -0
  20. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern.egg-info/requires.txt +0 -0
  21. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/pytrends_modern.egg-info/top_level.txt +0 -0
  22. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/setup.cfg +0 -0
  23. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/tests/conftest.py +0 -0
  24. {pytrends_modern-0.1.0 → pytrends_modern-0.1.1}/tests/test_basic.py +0 -0
@@ -1,6 +1,6 @@
1
1
  include README.md
2
2
  include LICENSE
3
3
  include pyproject.toml
4
- recursive-include pytrends_plus *.py py.typed
4
+ recursive-include pytrends_modern *.py py.typed
5
5
  recursive-include examples *.py
6
6
  recursive-include tests *.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytrends-modern
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Modern Google Trends API - Combining the best of pytrends, with RSS feeds, Selenium scraping, and enhanced features
5
5
  Author: pytrends-modern contributors
6
6
  License: MIT
@@ -87,7 +87,7 @@ pip install pytrends-modern[all]
87
87
  ### Basic Usage
88
88
 
89
89
  ```python
90
- from pytrends_plus import TrendReq
90
+ from pytrends_modern import TrendReq
91
91
 
92
92
  # Initialize
93
93
  pytrends = TrendReq(hl='en-US', tz=360)
@@ -115,7 +115,7 @@ print(related['Python']['top'])
115
115
  ### RSS Feed (Fast Real-Time Data)
116
116
 
117
117
  ```python
118
- from pytrends_plus import TrendsRSS
118
+ from pytrends_modern import TrendsRSS
119
119
 
120
120
  # Get trending searches with rich media
121
121
  rss = TrendsRSS()
@@ -303,7 +303,7 @@ pytrends = TrendReq(
303
303
 
304
304
  ```python
305
305
  import asyncio
306
- from pytrends_plus import AsyncTrendReq
306
+ from pytrends_modern import AsyncTrendReq
307
307
 
308
308
  async def get_trends():
309
309
  pytrends = AsyncTrendReq(hl='en-US')
@@ -317,8 +317,8 @@ df = asyncio.run(get_trends())
317
317
  ### Rate Limit Handling
318
318
 
319
319
  ```python
320
- from pytrends_plus import TrendReq
321
- from pytrends_plus.exceptions import TooManyRequestsError
320
+ from pytrends_modern import TrendReq
321
+ from pytrends_modern.exceptions import TooManyRequestsError
322
322
 
323
323
  pytrends = TrendReq(retries=5, backoff_factor=0.5)
324
324
 
@@ -332,7 +332,7 @@ except TooManyRequestsError:
332
332
  ### Batch Processing
333
333
 
334
334
  ```python
335
- from pytrends_plus import TrendReq
335
+ from pytrends_modern import TrendReq
336
336
  import time
337
337
 
338
338
  keywords = ['Python', 'JavaScript', 'Rust', 'Go', 'Java']
@@ -352,7 +352,7 @@ for kw in keywords:
352
352
  pytest
353
353
 
354
354
  # With coverage
355
- pytest --cov=pytrends_plus
355
+ pytest --cov=pytrends_modern
356
356
 
357
357
  # Specific test
358
358
  pytest tests/test_request.py::test_interest_over_time
@@ -40,7 +40,7 @@ pip install pytrends-modern[all]
40
40
  ### Basic Usage
41
41
 
42
42
  ```python
43
- from pytrends_plus import TrendReq
43
+ from pytrends_modern import TrendReq
44
44
 
45
45
  # Initialize
46
46
  pytrends = TrendReq(hl='en-US', tz=360)
@@ -68,7 +68,7 @@ print(related['Python']['top'])
68
68
  ### RSS Feed (Fast Real-Time Data)
69
69
 
70
70
  ```python
71
- from pytrends_plus import TrendsRSS
71
+ from pytrends_modern import TrendsRSS
72
72
 
73
73
  # Get trending searches with rich media
74
74
  rss = TrendsRSS()
@@ -256,7 +256,7 @@ pytrends = TrendReq(
256
256
 
257
257
  ```python
258
258
  import asyncio
259
- from pytrends_plus import AsyncTrendReq
259
+ from pytrends_modern import AsyncTrendReq
260
260
 
261
261
  async def get_trends():
262
262
  pytrends = AsyncTrendReq(hl='en-US')
@@ -270,8 +270,8 @@ df = asyncio.run(get_trends())
270
270
  ### Rate Limit Handling
271
271
 
272
272
  ```python
273
- from pytrends_plus import TrendReq
274
- from pytrends_plus.exceptions import TooManyRequestsError
273
+ from pytrends_modern import TrendReq
274
+ from pytrends_modern.exceptions import TooManyRequestsError
275
275
 
276
276
  pytrends = TrendReq(retries=5, backoff_factor=0.5)
277
277
 
@@ -285,7 +285,7 @@ except TooManyRequestsError:
285
285
  ### Batch Processing
286
286
 
287
287
  ```python
288
- from pytrends_plus import TrendReq
288
+ from pytrends_modern import TrendReq
289
289
  import time
290
290
 
291
291
  keywords = ['Python', 'JavaScript', 'Rust', 'Go', 'Java']
@@ -305,7 +305,7 @@ for kw in keywords:
305
305
  pytest
306
306
 
307
307
  # With coverage
308
- pytest --cov=pytrends_plus
308
+ pytest --cov=pytrends_modern
309
309
 
310
310
  # Specific test
311
311
  pytest tests/test_request.py::test_interest_over_time
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pytrends-modern"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Modern Google Trends API - Combining the best of pytrends, with RSS feeds, Selenium scraping, and enhanced features"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytrends-modern
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Modern Google Trends API - Combining the best of pytrends, with RSS feeds, Selenium scraping, and enhanced features
5
5
  Author: pytrends-modern contributors
6
6
  License: MIT
@@ -87,7 +87,7 @@ pip install pytrends-modern[all]
87
87
  ### Basic Usage
88
88
 
89
89
  ```python
90
- from pytrends_plus import TrendReq
90
+ from pytrends_modern import TrendReq
91
91
 
92
92
  # Initialize
93
93
  pytrends = TrendReq(hl='en-US', tz=360)
@@ -115,7 +115,7 @@ print(related['Python']['top'])
115
115
  ### RSS Feed (Fast Real-Time Data)
116
116
 
117
117
  ```python
118
- from pytrends_plus import TrendsRSS
118
+ from pytrends_modern import TrendsRSS
119
119
 
120
120
  # Get trending searches with rich media
121
121
  rss = TrendsRSS()
@@ -303,7 +303,7 @@ pytrends = TrendReq(
303
303
 
304
304
  ```python
305
305
  import asyncio
306
- from pytrends_plus import AsyncTrendReq
306
+ from pytrends_modern import AsyncTrendReq
307
307
 
308
308
  async def get_trends():
309
309
  pytrends = AsyncTrendReq(hl='en-US')
@@ -317,8 +317,8 @@ df = asyncio.run(get_trends())
317
317
  ### Rate Limit Handling
318
318
 
319
319
  ```python
320
- from pytrends_plus import TrendReq
321
- from pytrends_plus.exceptions import TooManyRequestsError
320
+ from pytrends_modern import TrendReq
321
+ from pytrends_modern.exceptions import TooManyRequestsError
322
322
 
323
323
  pytrends = TrendReq(retries=5, backoff_factor=0.5)
324
324
 
@@ -332,7 +332,7 @@ except TooManyRequestsError:
332
332
  ### Batch Processing
333
333
 
334
334
  ```python
335
- from pytrends_plus import TrendReq
335
+ from pytrends_modern import TrendReq
336
336
  import time
337
337
 
338
338
  keywords = ['Python', 'JavaScript', 'Rust', 'Go', 'Java']
@@ -352,7 +352,7 @@ for kw in keywords:
352
352
  pytest
353
353
 
354
354
  # With coverage
355
- pytest --cov=pytrends_plus
355
+ pytest --cov=pytrends_modern
356
356
 
357
357
  # Specific test
358
358
  pytest tests/test_request.py::test_interest_over_time
File without changes