Metadata-Version: 2.2
Name: ssi_pingme
Version: 0.0.4
Summary: TODO
Home-page: https://github.com/$GIT_USER_NAME/pingme
Author: $GIT_USER_NAME
Author-email: kimleeng@gmail.com
License: MIT License
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastcore
Requires-Dist: setuptools
Requires-Dist: pydantic-settings
Requires-Dist: pydantic
Requires-Dist: python_dotenv
Requires-Dist: envyaml
Requires-Dist: pandas
Requires-Dist: black
Requires-Dist: requests
Requires-Dist: uvicorn
Requires-Dist: fastapi
Requires-Dist: httpx
Provides-Extra: dev
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# ssi_pingme


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

# Dev mode

``` sh
#Create the dev environment in ./.venv then activate it so you're working in it
conda env create -p ./.venv --file conda.dev.env.yaml
conda activate ./.venv
#Need to add kernel to jupyterhub for processing on server, ipykernel is part of conda.dev.env.yaml
python -m ipykernel install --user --name=Pingme
#After this change your kernel to Pingme via JupyterHub (top right of a notebook)

#Now we need to create the repo locally
nbdev_export

#with it created we can install the dev env
pip install -e '.[dev]'
#optional test to ensure it worked
core_hello_world test #to test everything works

#now we can do nbdev_prepare
nbdev_prepare
```

## Install

``` sh
pip install ssi_pingme
```

## How to use

Fill me in please! Don’t forget code examples:

``` python
1 + 1
```

    2
