Metadata-Version: 2.4
Name: csyshodan
Version: 0.1.1
Summary: Python Utility for Shodan API - Print Shodan API code templates
Home-page: https://github.com/yourusername/csyshodan
Author: Your Name
Author-email: Your Name <your.email@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/csyshodan
Project-URL: Documentation, https://github.com/yourusername/csyshodan#readme
Project-URL: Repository, https://github.com/yourusername/csyshodan
Project-URL: Issues, https://github.com/yourusername/csyshodan/issues
Keywords: shodan,api,security,utilities,code generation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Security
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# CSYSHODAN

**Python Utility for Shodan API Code Generation**

A simple utility package that helps you quickly print Shodan API code templates with examples.

## Installation

```bash
pip install csyshodan
```

## Usage

After installing, simply import and use the `print_csy` function:

```python
from csyshodan import print_csy

# Print Shodan API code template
print_csy()
```

## What it does

The `print_csy()` function prints a ready-to-use Shodan API code template, including:

- Shodan API client initialization
- Search functionality example
- Error handling
- Result parsing and display
- Complete working code template

## Example Output

```python
from csyshodan import print_csy
print_csy()

# Output:
# from shodan import Shodan
# 
# # Replace with your Shodan API key
# API_KEY = "YOUR_API_KEY"
# 
# def shodan_search(query):
#     api = Shodan(API_KEY)
#     ...
```

## Requirements

- Python 3.7 or higher

## License

MIT License

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Author

Your Name

## Version

0.1.0
