webscout 1.1.2__tar.gz → 1.1.3__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.

Potentially problematic release.


This version of webscout might be problematic. Click here for more details.

Files changed (24) hide show
  1. {webscout-1.1.2/webscout.egg-info → webscout-1.1.3}/PKG-INFO +1 -1
  2. {webscout-1.1.2 → webscout-1.1.3}/setup.py +1 -1
  3. {webscout-1.1.2 → webscout-1.1.3}/webscout/HelpingAI.py +3 -3
  4. webscout-1.1.3/webscout/version.py +2 -0
  5. {webscout-1.1.2 → webscout-1.1.3/webscout.egg-info}/PKG-INFO +1 -1
  6. webscout-1.1.2/webscout/version.py +0 -2
  7. {webscout-1.1.2 → webscout-1.1.3}/LICENSE.md +0 -0
  8. {webscout-1.1.2 → webscout-1.1.3}/README.md +0 -0
  9. {webscout-1.1.2 → webscout-1.1.3}/setup.cfg +0 -0
  10. {webscout-1.1.2 → webscout-1.1.3}/webscout/AI.py +0 -0
  11. {webscout-1.1.2 → webscout-1.1.3}/webscout/LLM.py +0 -0
  12. {webscout-1.1.2 → webscout-1.1.3}/webscout/__init__.py +0 -0
  13. {webscout-1.1.2 → webscout-1.1.3}/webscout/__main__.py +0 -0
  14. {webscout-1.1.2 → webscout-1.1.3}/webscout/cli.py +0 -0
  15. {webscout-1.1.2 → webscout-1.1.3}/webscout/exceptions.py +0 -0
  16. {webscout-1.1.2 → webscout-1.1.3}/webscout/models.py +0 -0
  17. {webscout-1.1.2 → webscout-1.1.3}/webscout/utils.py +0 -0
  18. {webscout-1.1.2 → webscout-1.1.3}/webscout/webscout_search.py +0 -0
  19. {webscout-1.1.2 → webscout-1.1.3}/webscout/webscout_search_async.py +0 -0
  20. {webscout-1.1.2 → webscout-1.1.3}/webscout.egg-info/SOURCES.txt +0 -0
  21. {webscout-1.1.2 → webscout-1.1.3}/webscout.egg-info/dependency_links.txt +0 -0
  22. {webscout-1.1.2 → webscout-1.1.3}/webscout.egg-info/entry_points.txt +0 -0
  23. {webscout-1.1.2 → webscout-1.1.3}/webscout.egg-info/requires.txt +0 -0
  24. {webscout-1.1.2 → webscout-1.1.3}/webscout.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: Search for words, documents, images, videos, news, maps and text translation using the DuckDuckGo.com, yep.com, phind.com and you.com Also containes AI models
5
5
  Author: OEvortex
6
6
  Author-email: helpingai5@gmail.com
@@ -10,7 +10,7 @@ with open("README.md", encoding="utf-8") as f:
10
10
 
11
11
  setup(
12
12
  name="webscout",
13
- version="1.1.2", # Use the version variable from the version.py file
13
+ version="1.1.3", # Use the version variable from the version.py file
14
14
  description="Search for words, documents, images, videos, news, maps and text translation using the DuckDuckGo.com, yep.com, phind.com and you.com Also containes AI models",
15
15
  long_description=README,
16
16
  long_description_content_type="text/markdown",
@@ -41,7 +41,7 @@ class ChatBot:
41
41
  # Initialize WebDriver
42
42
  self.driver = webdriver.Chrome(options=options)
43
43
 
44
- self.HelpingAI = os.getenv('HELPING_AI_URL')
44
+ self.HelpingAI = "https://vortex.zapier.app/"
45
45
  # Navigate to the target URL
46
46
  self.driver.get(self.HelpingAI)
47
47
  time.sleep(7)
@@ -117,7 +117,7 @@ class WEBS:
117
117
  # Initialize WebDriver without specifying the path to the driver
118
118
  self.driver = webdriver.Chrome(options=options)
119
119
 
120
- self.HelpingAI = os.getenv('HELPING_AI_URL')
120
+ self.HelpingAI = "https://vortex.zapier.app/"
121
121
  # Navigate to the target URL
122
122
  self.driver.get(self.HelpingAI)
123
123
  time.sleep(7)
@@ -164,7 +164,7 @@ class WEBS:
164
164
 
165
165
  # Function to perform web search
166
166
  def web_search(self, query):
167
- url = os.getenv('WEB_SEARCH_URL')
167
+ url = "https://abhaykoul-webscout1.hf.space/mws"
168
168
  payload = {"query": query}
169
169
  response = requests.post(url, json=payload)
170
170
 
@@ -0,0 +1,2 @@
1
+ __version__ = "1.1.3"
2
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: Search for words, documents, images, videos, news, maps and text translation using the DuckDuckGo.com, yep.com, phind.com and you.com Also containes AI models
5
5
  Author: OEvortex
6
6
  Author-email: helpingai5@gmail.com
@@ -1,2 +0,0 @@
1
- __version__ = "1.1.2"
2
-
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
File without changes