Skip to content

Commit

Permalink
added endpoints and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Davis (a) authored and Chris Davis (a) committed Dec 30, 2023
1 parent 8ce8d5c commit c344efd
Show file tree
Hide file tree
Showing 21 changed files with 530 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload --repository pypi dist/*
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py
138 changes: 138 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Tom Chen (tomchen.org)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include pyproject.toml
include *.md
include LICENSE
recursive-include tests test*.py
69 changes: 69 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# ClutchPy

## Endpoint Grouping/Scope
Link to API Documentation: https://apidocs.clutch.com/

```
Card Operations:
- allocateChildCard
- allocate
- reactivate
- updateAccount
- updateBalance
Transaction and History:
- cardHistory
- voidTransaction
- returnMerchandise
- checkout
- transfer
Coupon Operations:
- allocateCoupon
- couponDetails
Event Handling:
- createEventType
- listEventTypes
Request and Lookup:
- listRequests
- requestLookup
Value and Subscription Lists:
- listValueTypes
- listSubscriptionLists
Template and Campaign Handling:
- renderTemplate
- triggerCustomCampaigns
```

## Installation
```
$ pip install clutchpy
```

Note: This python module has not been publish to the PyPI (Python Package Index) yet so this installation command will not work yet.

## Usage
```python
import clutchpy

# initialize the clutch api client
client = ClutchAPI(
brand='YOUR BRAND',
location='YOUR LOCATION',
terminal='YOUR TERMINAL',
key='YOUR PRIVATE KEY',
secret='YOUR PRIVATE SECRET',
timeout='YOUR DESIRED DEFAULT TIMEOUT',
env='stage' # valid environment values are 'stage' and 'prod'
)

# define search parameters
params = {}

# send a search request
client.cards.search(params)
```
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=46.4.0", "wheel"]
build-backend = "setuptools.build_meta"
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[metadata]
version = attr: examplepy.__version__
license_files = LICENSE
53 changes: 53 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import setuptools

with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()

setuptools.setup(
name='example_pypi_package',
author='Tom Chen',
author_email='[email protected]',
description='Example PyPI (Python Package Index) Package',
keywords='example, pypi, package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tomchen/example_pypi_package',
project_urls={
'Documentation': 'https://github.com/tomchen/example_pypi_package',
'Bug Reports':
'https://github.com/tomchen/example_pypi_package/issues',
'Source Code': 'https://github.com/tomchen/example_pypi_package',
# 'Funding': '',
# 'Say Thanks!': '',
},
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
classifiers=[
# see https://pypi.org/classifiers/
'Development Status :: 5 - Production/Stable',

'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',

'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
# install_requires=['Pillow'],
extras_require={
'dev': ['check-manifest'],
# 'test': ['coverage'],
},
# entry_points={
# 'console_scripts': [ # This can provide executable scripts
# 'run=examplepy:main',
# You can execute `run` in bash to run `main()` in src/examplepy/__init__.py
# ],
# },
)
Empty file added src/__init__.py
Empty file.
Loading

0 comments on commit c344efd

Please sign in to comment.