Metadata-Version: 2.1
Name: podsearch
Version: 0.1.2
Summary: Let's find some podcasts!
Home-page: https://github.com/nalgeon/podsearch-py
License: UNKNOWN
Author: Anton Zhiyanov
Author-email: m@antonz.ru
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3

# Podast searcher

> Search any podcast by name

[![PyPI Version][pypi-image]][pypi-url]
[![Build Status][build-image]][build-url]
[![Code Coverage][coverage-image]][coverage-url]
[![Code Quality][quality-image]][quality-url]

## Installation

```sh
pip install podsearch
```

## Usage

```python
>>> import podsearch
>>> podcasts = podsearch.search("python")
>>> podcasts[0].name
'Talk Python To Me'
>>> podcasts[0].author
'Michael Kennedy (@mkennedy)'
>>> podcasts[0].url
'https://podcasts.apple.com/us/podcast/id979020229'
```

## Development setup

```sh
$ python3 -m venv env
$ . env/bin/activate
$ make deps
$ tox
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Make sure to add or update tests as appropriate.

Use [Black](https://black.readthedocs.io/en/stable/) for code formatting and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0-beta.4/) for commit messages.

## [Changelog](CHANGELOG.md)

## License

[MIT](https://choosealicense.com/licenses/mit/)

<!-- Badges -->

[pypi-image]: https://img.shields.io/pypi/v/podsearch?style=flat-square
[pypi-url]: https://pypi.org/project/podsearch/
[build-image]: https://img.shields.io/travis/nalgeon/podsearch-py?style=flat-square
[build-url]: https://travis-ci.org/nalgeon/podsearch-py
[coverage-image]: https://img.shields.io/coveralls/github/nalgeon/podsearch-py?style=flat-square
[coverage-url]: https://coveralls.io/github/nalgeon/podsearch-py
[quality-image]: https://img.shields.io/codeclimate/maintainability/nalgeon/podsearch-py?style=flat-square
[quality-url]: https://codeclimate.com/github/nalgeon/podsearch-py

