Metadata-Version: 2.4
Name: mydsaaa
Version: 0.0.2
Summary: A Python package that prints C++ DSA codes
Home-page: https://github.com/yourusername/mydsaaa
Author: me
Author-email: me@gmail.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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# mydsaaa

This is a Python package to quickly access common DSA codes in C++ language for educational purposes.

## Installation

```bash
pip install mydsaaa
```

## Usage

```python
import dsa

# List available commands
dsa.help()

# Print a specific code
dsa.bubble_sort()

# Print ALL codes
dsa.all()
```
