Metadata-Version: 2.1
Name: wiseyoda
Version: 1.0.1
Summary: Quote the wise and powerful master Yoda.
Home-page: https://github.com/Mikaayenson/WiseYoda
License: Apache 2.0
Keywords: Star Wars,Yoda,Quotes
Author: Mika Ayenson
Author-email: Mika.ayenson@elastic.co
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3
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
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Security
Classifier: Typing :: Typed
Requires-Dist: marshmallow-dataclass (>=8.5.10,<9.0.0)
Project-URL: Bug Tracker, https://github.com/Mikaayenson/WiseYoda/issues
Project-URL: Repository, https://github.com/Mikaayenson/WiseYoda
Description-Content-Type: text/markdown

#

<div align="center">
  <img width="1072" alt="logo" src="https://user-images.githubusercontent.com/1636709/210475936-9943ee5d-6bec-488d-a309-7a0df2312291.png">
  <h1>WiseYoda</h1>

  <p>
    Quotes from the <a href="https://github.com/Mikaayenson/WiseYoda">Wise Yoda</a>
  </p>


<!-- Badges -->

[![Supported Python versions](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![Python Testing](https://github.com/Mikaayenson/WiseYoda/actions/workflows/python-testing.yml/badge.svg)](https://github.com/Mikaayenson/WiseYoda/actions/workflows/python-testing.yml)

<h5>
    <a href="https://github.com/Mikaayenson/WiseYoda/issues/">Report Bug</a>
  <span> · </span>
    <a href="https://github.com/Mikaayenson/WiseYoda/issues/">Request Feature</a>
  </h5>
</div>

<br />

<!-- About the Project -->
## :star2: About the Project

Simple library to obtain wisdom from the wise Master Yoda in the form of quotes. Create a [feature request](https://github.com/Mikaayenson/WiseYoda/issues) if there are some useful features/commands that you hate to remember!

<!-- Screenshots -->
### :camera: Screenshots

<p align="center">
<img width="710" alt="Help" src="https://user-images.githubusercontent.com/1636709/210474079-0fd9c801-d6ba-4c87-8244-41a4c4ba5ed1.png">
<img width="710" alt="Simple" src="https://user-images.githubusercontent.com/1636709/210474075-5ad35761-5765-49e7-ae22-62ff4aec85e1.png">
<img width="710" alt="Complex" src="https://user-images.githubusercontent.com/1636709/210474078-d8c3c528-9bc6-4934-a970-4d372e3202a1.png">

</p>

<!-- Getting Started -->
## :toolbox: Getting Started

<!-- Prerequisites -->
### :bangbang: Prerequisites

This project uses poetry as the python package manager

- `poetry` Follow the [poetry install](https://python-poetry.org/docs/) guide
- `python3.8+` Download from [python](https://www.python.org/downloads/) (ideally `3.10`)

```bash
   pip install wiseyoda
```

<!-- Usage -->
## :eyes: Usage

Reminder: These commands must be run in the virtualenv where you installed the dependencies.

```bash
  from wise_yoda import Quotes
  lesson = Quotes().random_quote()
  lesson = Quotes().select_quote(season=1, episode=1)
```

<!-- Run Locally -->
### :running: Run Locally

Clone the project

```bash
  git clone https://github.com/Mikaayenson/WiseYoda.git
```

Go to the project directory

```bash
  cd wise_yoda
```

Install system and Python dependencies

```bash
  make deps
```

Run wiseyoda

```bash
  wiseyoda --help
```

<!-- Development -->
### :construction: Development


<div align="center">
  <img width="710" alt="makefile" src="https://user-images.githubusercontent.com/1636709/210474182-474a778f-9267-4e7c-84d3-3edb48cc9f8a.png">
</div>

Install pre-commit

```bash
  pre-commit install
```

Update Python dependencies

```bash
  make deps-py-update
```

<!-- Running Tests -->
### :test_tube: Running Tests

Run tests

```bash
  make test
```

Run linter

```bash
  make check
```

<!-- Build: Poetry -->
### :triangular_flag_on_post: Build: Python Package

Build this project as a `sdist` and `wheel`

```bash
  make build
```


<!-- License -->
## :warning: License

Distributed under the Apache2.0 License. See LICENSE.txt for more information.

