An open API service indexing awesome lists of open source software.

https://github.com/jcmgray/hshbsh


https://github.com/jcmgray/hshbsh

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# hshbsh

## Usage

```python
>>> import hshbsh as hb
>>> hb.hello()
'Hello World!'
>>> hb.hello('Johnnie')
'Hello Johnnie!'
```

## Installation

1. Straight from github:

```bash
pip install -U git+git://github.com/jcmgray/hshbsh.git
```

2. From inside a local clone, allowing for edits to the source:
```bash
pip install -U -e .
```

Add ``--no-deps`` if you don't any ``pip`` to try and install the package requirements (e.g. they are already installed via ``conda``, pip sometimes doesn't recognise this).

## Testing

In the main repo run:

```bash
pytest
```