Metadata-Version: 2.1
Name: desync_search
Version: 0.1.4
Summary: A library for interfacing with the desync_search API
Home-page: https://github.com/yourusername/desync_search
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests


### Sample Code

``` python
from desync_search import DesyncSearch

# Initialize the client
client = DesyncSearch(api_key="Your-API-Key")

# Perform a search
response = client.search("https://www.137ventures.com/", stealth_level=1)

# Access results
print(response.text_content)
print(response.internal_links)
print(response.external_links)

```
