https://github.com/jcmgray/hshbsh
https://github.com/jcmgray/hshbsh
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jcmgray/hshbsh
- Owner: jcmgray
- Created: 2018-02-20T17:49:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T16:01:59.000Z (over 7 years ago)
- Last Synced: 2025-01-26T16:34:27.739Z (5 months ago)
- Language: Python
- Size: 577 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```