webscout 8.2.6__py3-none-any.whl → 8.2.8__py3-none-any.whl
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.
- webscout/AIauto.py +1 -1
- webscout/AIutel.py +298 -239
- webscout/Extra/Act.md +309 -0
- webscout/Extra/GitToolkit/gitapi/README.md +110 -0
- webscout/Extra/YTToolkit/README.md +375 -0
- webscout/Extra/YTToolkit/ytapi/README.md +44 -0
- webscout/Extra/YTToolkit/ytapi/extras.py +92 -19
- webscout/Extra/autocoder/autocoder.py +309 -114
- webscout/Extra/autocoder/autocoder_utiles.py +15 -15
- webscout/Extra/gguf.md +430 -0
- webscout/Extra/tempmail/README.md +488 -0
- webscout/Extra/weather.md +281 -0
- webscout/Litlogger/Readme.md +175 -0
- webscout/Provider/AISEARCH/DeepFind.py +41 -37
- webscout/Provider/AISEARCH/README.md +279 -0
- webscout/Provider/AISEARCH/__init__.py +0 -1
- webscout/Provider/AISEARCH/genspark_search.py +228 -86
- webscout/Provider/AISEARCH/hika_search.py +11 -11
- webscout/Provider/AISEARCH/scira_search.py +324 -322
- webscout/Provider/AllenAI.py +7 -14
- webscout/Provider/Blackboxai.py +518 -74
- webscout/Provider/Cloudflare.py +0 -1
- webscout/Provider/Deepinfra.py +23 -21
- webscout/Provider/Flowith.py +217 -0
- webscout/Provider/FreeGemini.py +250 -0
- webscout/Provider/GizAI.py +15 -5
- webscout/Provider/Glider.py +11 -8
- webscout/Provider/HeckAI.py +80 -52
- webscout/Provider/Koboldai.py +7 -4
- webscout/Provider/LambdaChat.py +2 -2
- webscout/Provider/Marcus.py +10 -18
- webscout/Provider/OPENAI/BLACKBOXAI.py +735 -0
- webscout/Provider/OPENAI/Cloudflare.py +378 -0
- webscout/Provider/OPENAI/FreeGemini.py +282 -0
- webscout/Provider/OPENAI/NEMOTRON.py +244 -0
- webscout/Provider/OPENAI/README.md +1253 -0
- webscout/Provider/OPENAI/__init__.py +8 -0
- webscout/Provider/OPENAI/ai4chat.py +293 -286
- webscout/Provider/OPENAI/api.py +810 -0
- webscout/Provider/OPENAI/base.py +217 -14
- webscout/Provider/OPENAI/c4ai.py +373 -367
- webscout/Provider/OPENAI/chatgpt.py +7 -0
- webscout/Provider/OPENAI/chatgptclone.py +7 -0
- webscout/Provider/OPENAI/chatsandbox.py +172 -0
- webscout/Provider/OPENAI/deepinfra.py +30 -20
- webscout/Provider/OPENAI/e2b.py +6 -0
- webscout/Provider/OPENAI/exaai.py +7 -0
- webscout/Provider/OPENAI/exachat.py +6 -0
- webscout/Provider/OPENAI/flowith.py +162 -0
- webscout/Provider/OPENAI/freeaichat.py +359 -352
- webscout/Provider/OPENAI/glider.py +323 -316
- webscout/Provider/OPENAI/groq.py +361 -354
- webscout/Provider/OPENAI/heckai.py +30 -64
- webscout/Provider/OPENAI/llmchatco.py +8 -0
- webscout/Provider/OPENAI/mcpcore.py +7 -0
- webscout/Provider/OPENAI/multichat.py +8 -0
- webscout/Provider/OPENAI/netwrck.py +356 -350
- webscout/Provider/OPENAI/opkfc.py +8 -0
- webscout/Provider/OPENAI/scirachat.py +471 -462
- webscout/Provider/OPENAI/sonus.py +9 -0
- webscout/Provider/OPENAI/standardinput.py +9 -1
- webscout/Provider/OPENAI/textpollinations.py +339 -329
- webscout/Provider/OPENAI/toolbaz.py +7 -0
- webscout/Provider/OPENAI/typefully.py +355 -0
- webscout/Provider/OPENAI/typegpt.py +358 -346
- webscout/Provider/OPENAI/uncovrAI.py +7 -0
- webscout/Provider/OPENAI/utils.py +103 -7
- webscout/Provider/OPENAI/venice.py +12 -0
- webscout/Provider/OPENAI/wisecat.py +19 -19
- webscout/Provider/OPENAI/writecream.py +7 -0
- webscout/Provider/OPENAI/x0gpt.py +7 -0
- webscout/Provider/OPENAI/yep.py +50 -21
- webscout/Provider/OpenGPT.py +1 -1
- webscout/Provider/TTI/AiForce/README.md +159 -0
- webscout/Provider/TTI/FreeAIPlayground/README.md +99 -0
- webscout/Provider/TTI/ImgSys/README.md +174 -0
- webscout/Provider/TTI/MagicStudio/README.md +101 -0
- webscout/Provider/TTI/Nexra/README.md +155 -0
- webscout/Provider/TTI/PollinationsAI/README.md +146 -0
- webscout/Provider/TTI/README.md +128 -0
- webscout/Provider/TTI/aiarta/README.md +134 -0
- webscout/Provider/TTI/artbit/README.md +100 -0
- webscout/Provider/TTI/fastflux/README.md +129 -0
- webscout/Provider/TTI/huggingface/README.md +114 -0
- webscout/Provider/TTI/piclumen/README.md +161 -0
- webscout/Provider/TTI/pixelmuse/README.md +79 -0
- webscout/Provider/TTI/talkai/README.md +139 -0
- webscout/Provider/TTS/README.md +192 -0
- webscout/Provider/TTS/__init__.py +2 -1
- webscout/Provider/TTS/speechma.py +500 -100
- webscout/Provider/TTS/sthir.py +94 -0
- webscout/Provider/TeachAnything.py +3 -7
- webscout/Provider/TextPollinationsAI.py +4 -2
- webscout/Provider/{aimathgpt.py → UNFINISHED/ChatHub.py} +88 -68
- webscout/Provider/UNFINISHED/liner_api_request.py +263 -0
- webscout/Provider/UNFINISHED/oivscode.py +351 -0
- webscout/Provider/UNFINISHED/test_lmarena.py +119 -0
- webscout/Provider/Writecream.py +11 -2
- webscout/Provider/__init__.py +8 -14
- webscout/Provider/ai4chat.py +4 -58
- webscout/Provider/asksteve.py +17 -9
- webscout/Provider/cerebras.py +3 -1
- webscout/Provider/koala.py +170 -268
- webscout/Provider/llmchat.py +3 -0
- webscout/Provider/lmarena.py +198 -0
- webscout/Provider/meta.py +7 -4
- webscout/Provider/samurai.py +223 -0
- webscout/Provider/scira_chat.py +4 -2
- webscout/Provider/typefully.py +23 -151
- webscout/__init__.py +4 -2
- webscout/cli.py +3 -28
- webscout/conversation.py +35 -35
- webscout/litagent/Readme.md +276 -0
- webscout/scout/README.md +402 -0
- webscout/swiftcli/Readme.md +323 -0
- webscout/version.py +1 -1
- webscout/webscout_search.py +2 -182
- webscout/webscout_search_async.py +1 -179
- webscout/zeroart/README.md +89 -0
- webscout/zeroart/__init__.py +134 -54
- webscout/zeroart/base.py +19 -13
- webscout/zeroart/effects.py +101 -99
- webscout/zeroart/fonts.py +1239 -816
- {webscout-8.2.6.dist-info → webscout-8.2.8.dist-info}/METADATA +116 -74
- {webscout-8.2.6.dist-info → webscout-8.2.8.dist-info}/RECORD +130 -103
- {webscout-8.2.6.dist-info → webscout-8.2.8.dist-info}/WHEEL +1 -1
- webscout-8.2.8.dist-info/entry_points.txt +3 -0
- webscout-8.2.8.dist-info/top_level.txt +1 -0
- webscout/Provider/AISEARCH/ISou.py +0 -256
- webscout/Provider/ElectronHub.py +0 -773
- webscout/Provider/Free2GPT.py +0 -241
- webscout/Provider/GPTWeb.py +0 -249
- webscout/Provider/bagoodex.py +0 -145
- webscout/Provider/geminiprorealtime.py +0 -160
- webscout/scout/core.py +0 -881
- webscout-8.2.6.dist-info/entry_points.txt +0 -3
- webscout-8.2.6.dist-info/top_level.txt +0 -2
- webstoken/__init__.py +0 -30
- webstoken/classifier.py +0 -189
- webstoken/keywords.py +0 -216
- webstoken/language.py +0 -128
- webstoken/ner.py +0 -164
- webstoken/normalizer.py +0 -35
- webstoken/processor.py +0 -77
- webstoken/sentiment.py +0 -206
- webstoken/stemmer.py +0 -73
- webstoken/tagger.py +0 -60
- webstoken/tokenizer.py +0 -158
- /webscout/Provider/{Youchat.py → UNFINISHED/Youchat.py} +0 -0
- {webscout-8.2.6.dist-info → webscout-8.2.8.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>🔍 Webscout AI Search Providers</h1>
|
|
3
|
+
<p><strong>Powerful AI-powered search capabilities with multiple provider support</strong></p>
|
|
4
|
+
</div>
|
|
5
|
+
|
|
6
|
+
> [!NOTE]
|
|
7
|
+
> AI Search Providers leverage advanced language models and search algorithms to deliver high-quality, context-aware responses with web search integration.
|
|
8
|
+
|
|
9
|
+
## ✨ Features
|
|
10
|
+
|
|
11
|
+
- **Multiple Search Providers**: Support for 7+ specialized AI search services
|
|
12
|
+
- **Streaming Responses**: Real-time streaming of AI-generated responses
|
|
13
|
+
- **Raw Response Format**: Access to raw response data when needed
|
|
14
|
+
- **Automatic Text Handling**: Smart response formatting and cleaning
|
|
15
|
+
- **Robust Error Handling**: Comprehensive error management
|
|
16
|
+
- **Cross-Platform Compatibility**: Works seamlessly across different environments
|
|
17
|
+
|
|
18
|
+
## 📦 Supported Search Providers
|
|
19
|
+
|
|
20
|
+
| Provider | Description | Key Features |
|
|
21
|
+
|----------|-------------|-------------|
|
|
22
|
+
| **DeepFind** | General purpose AI search | Web-based, reference removal, clean formatting |
|
|
23
|
+
| **Felo** | Fast streaming search | Advanced capabilities, real-time streaming |
|
|
24
|
+
| **Isou** | Scientific search | Multiple model selection, citation handling |
|
|
25
|
+
| **Genspark** | Efficient search | Fast response, markdown link removal |
|
|
26
|
+
| **Monica** | Comprehensive search | Related question suggestions, source references |
|
|
27
|
+
| **WebPilotAI** | Web-integrated search | Web page analysis, content extraction |
|
|
28
|
+
| **Scira** | Research-focused search | Multiple models (Grok3, Claude), vision support |
|
|
29
|
+
| **IAsk** | Multi-mode search | Question, Academic, Fast modes, detail levels |
|
|
30
|
+
| **Hika** | General AI search | Simple interface, clean text output |
|
|
31
|
+
| **Perplexity** | Advanced AI search & chat | Multiple modes (Pro, Reasoning), model selection, source control |
|
|
32
|
+
|
|
33
|
+
## 🚀 Installation
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install -U webscout
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## 💻 Quick Start Guide
|
|
40
|
+
|
|
41
|
+
### Basic Usage Pattern
|
|
42
|
+
|
|
43
|
+
All AI Search providers follow a consistent usage pattern:
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
from webscout import ProviderName
|
|
47
|
+
|
|
48
|
+
# Initialize the provider
|
|
49
|
+
ai = ProviderName()
|
|
50
|
+
|
|
51
|
+
# Basic search
|
|
52
|
+
response = ai.search("Your query here")
|
|
53
|
+
print(response) # Automatically formats the response
|
|
54
|
+
|
|
55
|
+
# Streaming search
|
|
56
|
+
for chunk in ai.search("Your query here", stream=True):
|
|
57
|
+
print(chunk, end="", flush=True) # Print response as it arrives
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Provider Examples
|
|
61
|
+
|
|
62
|
+
<details>
|
|
63
|
+
<summary><strong>DeepFind Example</strong></summary>
|
|
64
|
+
|
|
65
|
+
```python
|
|
66
|
+
from webscout import DeepFind
|
|
67
|
+
|
|
68
|
+
# Initialize the search provider
|
|
69
|
+
ai = DeepFind()
|
|
70
|
+
|
|
71
|
+
# Basic search
|
|
72
|
+
response = ai.search("What is Python?")
|
|
73
|
+
print(response)
|
|
74
|
+
|
|
75
|
+
# Streaming search
|
|
76
|
+
for chunk in ai.search("Tell me about AI", stream=True):
|
|
77
|
+
print(chunk, end="")
|
|
78
|
+
```
|
|
79
|
+
</details>
|
|
80
|
+
|
|
81
|
+
<details>
|
|
82
|
+
<summary><strong>Scira Example</strong></summary>
|
|
83
|
+
|
|
84
|
+
```python
|
|
85
|
+
from webscout import Scira
|
|
86
|
+
|
|
87
|
+
# Initialize with default model (Grok3)
|
|
88
|
+
ai = Scira()
|
|
89
|
+
|
|
90
|
+
# Basic search
|
|
91
|
+
response = ai.search("What is the impact of climate change?")
|
|
92
|
+
print(response)
|
|
93
|
+
|
|
94
|
+
# Streaming search with Claude model
|
|
95
|
+
ai = Scira(model="scira-claude")
|
|
96
|
+
for chunk in ai.search("Explain quantum computing", stream=True):
|
|
97
|
+
print(chunk, end="", flush=True)
|
|
98
|
+
|
|
99
|
+
# Available models:
|
|
100
|
+
# - scira-default (Grok3)
|
|
101
|
+
# - scira-grok-3-mini (Grok3-mini)
|
|
102
|
+
# - scira-vision (Grok2-Vision)
|
|
103
|
+
# - scira-claude (Sonnet-3.7)
|
|
104
|
+
# - scira-optimus (optimus)
|
|
105
|
+
```
|
|
106
|
+
</details>
|
|
107
|
+
|
|
108
|
+
<details>
|
|
109
|
+
<summary><strong>Isou Example</strong></summary>
|
|
110
|
+
|
|
111
|
+
```python
|
|
112
|
+
from webscout import Isou
|
|
113
|
+
|
|
114
|
+
# Initialize with specific model
|
|
115
|
+
ai = Isou(model="siliconflow:deepseek-ai/DeepSeek-R1-Distill-Qwen-32B")
|
|
116
|
+
|
|
117
|
+
# Get a response with scientific information
|
|
118
|
+
response = ai.search("Explain the double-slit experiment")
|
|
119
|
+
print(response)
|
|
120
|
+
```
|
|
121
|
+
</details>
|
|
122
|
+
|
|
123
|
+
<details>
|
|
124
|
+
<summary><strong>Perplexity Example</strong></summary>
|
|
125
|
+
|
|
126
|
+
```python
|
|
127
|
+
from webscout import Perplexity
|
|
128
|
+
|
|
129
|
+
# Initialize (optionally pass cookies for authenticated features)
|
|
130
|
+
# cookies = {"perplexity-user": "your_cookie_value"}
|
|
131
|
+
# ai = Perplexity(cookies=cookies)
|
|
132
|
+
ai = Perplexity() # Anonymous access
|
|
133
|
+
|
|
134
|
+
# Basic search (auto mode)
|
|
135
|
+
response = ai.search("What is the weather in London?")
|
|
136
|
+
print(response)
|
|
137
|
+
|
|
138
|
+
# Streaming search
|
|
139
|
+
for chunk in ai.search("Explain black holes", stream=True):
|
|
140
|
+
print(chunk, end="", flush=True)
|
|
141
|
+
|
|
142
|
+
# Pro search with specific model (requires authentication via cookies)
|
|
143
|
+
# try:
|
|
144
|
+
# ai_pro = Perplexity(cookies=your_cookies)
|
|
145
|
+
# response_pro = ai_pro.search("Latest AI research papers", mode='pro', model='gpt-4o', sources=['scholar'])
|
|
146
|
+
# print(response_pro)
|
|
147
|
+
# except Exception as e:
|
|
148
|
+
# print(f"Pro search failed: {e}")
|
|
149
|
+
|
|
150
|
+
# Available modes: 'auto', 'pro', 'reasoning', 'deep research'
|
|
151
|
+
# Available sources: 'web', 'scholar', 'social'
|
|
152
|
+
# Models depend on the mode selected.
|
|
153
|
+
```
|
|
154
|
+
</details>
|
|
155
|
+
|
|
156
|
+
## 🎛️ Advanced Configuration
|
|
157
|
+
|
|
158
|
+
<details>
|
|
159
|
+
<summary><strong>Timeout and Proxy Settings</strong></summary>
|
|
160
|
+
|
|
161
|
+
```python
|
|
162
|
+
# Configure timeout
|
|
163
|
+
ai = DeepFind(timeout=60) # 60 seconds timeout
|
|
164
|
+
|
|
165
|
+
# Use with proxy
|
|
166
|
+
proxies = {'http': 'http://proxy.com:8080'}
|
|
167
|
+
ai = Felo(proxies=proxies)
|
|
168
|
+
|
|
169
|
+
# Configure max tokens (for providers that support it)
|
|
170
|
+
ai = Genspark(max_tokens=800)
|
|
171
|
+
|
|
172
|
+
# Configure model and group for Scira
|
|
173
|
+
ai = Scira(model="scira-claude", group="web")
|
|
174
|
+
```
|
|
175
|
+
</details>
|
|
176
|
+
|
|
177
|
+
<details>
|
|
178
|
+
<summary><strong>Response Formats</strong></summary>
|
|
179
|
+
|
|
180
|
+
```python
|
|
181
|
+
# Get raw response format
|
|
182
|
+
response = ai.search("Hello", stream=True, raw=True)
|
|
183
|
+
# Output: {'text': 'Hello'}, {'text': ' there!'}, etc.
|
|
184
|
+
|
|
185
|
+
# Get formatted text response
|
|
186
|
+
response = ai.search("Hello", stream=True)
|
|
187
|
+
# Output: Hello there!
|
|
188
|
+
```
|
|
189
|
+
</details>
|
|
190
|
+
|
|
191
|
+
## 🔧 Provider Capabilities
|
|
192
|
+
|
|
193
|
+
| Provider | Key Capabilities | Technical Details |
|
|
194
|
+
|----------|-----------------|-------------------|
|
|
195
|
+
| **DeepFind** | • Web-based AI search<br>• Automatic reference removal<br>• Clean response formatting | • Streaming support with progress tracking<br>• JSON response parsing<br>• Error handling |
|
|
196
|
+
| **Felo** | • Advanced search capabilities<br>• Real-time response streaming<br>• JSON-based response parsing | • Automatic text cleaning<br>• Session management<br>• Rate limiting support |
|
|
197
|
+
| **Isou** | • Multiple model selection<br>• Scientific and general category support<br>• Citation handling | • Deep and simple search modes<br>• Specialized model options<br>• Markdown formatting |
|
|
198
|
+
| **Genspark** | • Fast response generation<br>• Markdown link removal<br>• JSON structure normalization | • Session-based API interactions<br>• Efficient content parsing<br>• Streaming optimization |
|
|
199
|
+
| **Monica** | • Comprehensive search responses<br>• Related question suggestions<br>• Source references | • Answer snippets<br>• Clean formatted responses<br>• Web content integration |
|
|
200
|
+
| **WebPilotAI** | • Web page analysis<br>• Content extraction<br>• Structured data retrieval | • URL processing<br>• HTML parsing<br>• Metadata extraction |
|
|
201
|
+
| **Scira** | • Research-focused search<br>• Multiple model options<br>• Vision support | • Grok3, Claude, Vision models<br>• Customizable group parameters<br>• Efficient content parsing |
|
|
202
|
+
| **IAsk** | • Multi-mode search (Question, Academic, etc.)<br>• Adjustable detail level<br>• Source citation | • Asynchronous backend (sync wrapper)<br>• WebSocket communication<br>• HTML parsing & formatting |
|
|
203
|
+
| **Hika** | • General AI search<br>• Simple streaming<br>• Basic text cleaning | • SSE streaming<br>• Custom headers for auth<br>• JSON response parsing |
|
|
204
|
+
| **Perplexity** | • Multiple search modes (Pro, Reasoning)<br>• Model selection per mode<br>• Source filtering (web, scholar, social)<br>• Follow-up questions | • `curl_cffi` for Cloudflare bypass<br>• Socket.IO communication<br>• SSE streaming<br>• Requires cookies for Pro features |
|
|
205
|
+
|
|
206
|
+
## 🛡️ Error Handling
|
|
207
|
+
|
|
208
|
+
<details>
|
|
209
|
+
<summary><strong>Exception Handling Example</strong></summary>
|
|
210
|
+
|
|
211
|
+
```python
|
|
212
|
+
from webscout import exceptions
|
|
213
|
+
|
|
214
|
+
try:
|
|
215
|
+
response = ai.search("Your query")
|
|
216
|
+
except exceptions.APIConnectionError as e:
|
|
217
|
+
print(f"API error: {e}")
|
|
218
|
+
except Exception as e:
|
|
219
|
+
print(f"An error occurred: {e}")
|
|
220
|
+
```
|
|
221
|
+
</details>
|
|
222
|
+
|
|
223
|
+
## 📝 Response Handling
|
|
224
|
+
|
|
225
|
+
<details>
|
|
226
|
+
<summary><strong>Working with Response Objects</strong></summary>
|
|
227
|
+
|
|
228
|
+
```python
|
|
229
|
+
# Response objects automatically convert to text
|
|
230
|
+
response = ai.search("What is AI?")
|
|
231
|
+
print(response) # Prints formatted text
|
|
232
|
+
|
|
233
|
+
# Access raw text if needed
|
|
234
|
+
print(response.text)
|
|
235
|
+
```
|
|
236
|
+
</details>
|
|
237
|
+
|
|
238
|
+
## 🔒 Best Practices
|
|
239
|
+
|
|
240
|
+
<details>
|
|
241
|
+
<summary><strong>Streaming for Long Responses</strong></summary>
|
|
242
|
+
|
|
243
|
+
```python
|
|
244
|
+
for chunk in ai.search("Long query", stream=True):
|
|
245
|
+
print(chunk, end="", flush=True)
|
|
246
|
+
```
|
|
247
|
+
</details>
|
|
248
|
+
|
|
249
|
+
<details>
|
|
250
|
+
<summary><strong>Error Handling</strong></summary>
|
|
251
|
+
|
|
252
|
+
```python
|
|
253
|
+
try:
|
|
254
|
+
response = ai.search("Query")
|
|
255
|
+
except exceptions.APIConnectionError:
|
|
256
|
+
# Handle connection errors
|
|
257
|
+
pass
|
|
258
|
+
```
|
|
259
|
+
</details>
|
|
260
|
+
|
|
261
|
+
<details>
|
|
262
|
+
<summary><strong>Provider Selection Guide</strong></summary>
|
|
263
|
+
|
|
264
|
+
| Use Case | Recommended Provider |
|
|
265
|
+
|----------|----------------------|
|
|
266
|
+
| General purpose search | **DeepFind**, **Hika** |
|
|
267
|
+
| Fast streaming responses | **Felo** |
|
|
268
|
+
| Scientific or specialized queries | **Isou**, **Scira** |
|
|
269
|
+
| Clean and efficient responses | **Genspark** |
|
|
270
|
+
| Comprehensive answers with sources | **Monica**, **IAsk** |
|
|
271
|
+
| Web page interaction/analysis | **WebPilotAI** |
|
|
272
|
+
| Advanced control (modes, models) | **Perplexity**, **Scira**, **Isou** |
|
|
273
|
+
| Research-focused | **Scira**, **Isou**, **Perplexity** (with scholar source) |
|
|
274
|
+
|
|
275
|
+
</details>
|
|
276
|
+
|
|
277
|
+
## 🤝 Contributing
|
|
278
|
+
|
|
279
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|