Techcombine frameworl for ecommerce
Project description
techcombine-framework
Installation for everyone
$pip install techcombine
Installation for Developer
$pip install techcombine[dev]
Now you can test this package by using pytest
or pytest direstory/
, For example
$pytest
# or
$pytest .\techcombine\tests\
Installation from sources
(env)$python setup.py install
manual
class LINENotify
notify_hook():
Make webhook to Line Notify from your server
return: request
from techcombine.utils import generate_notify_data
LINENotify.notify_hook(subtitle, data=None: dict, **kwargs)
# When you use this method you need to defind variable in django.conf settings
LINE_NOTIFY_TOKEN = some sting + 'access_token'
LINE_NOTIFY_API = 'https://notify-api.line.me/api/notify'
# Data example
data = {
"Order ID": order.slug,
"email": order.email,
"first_name": order.first_name,
"phone_number": order.phone_number,
"created_at": order.created_at,
} # Or use generate_notify_data(ojb)
parameter:
- subtitle: (str) Is subtitle of data hook to line notify chat
- data: (default=None/DictType only) Is dict of your all data to show in mail
- Or using **dict
generate_notify_data():
Generate dict data from django models object.
return: dict data format for using in notify_hook()
from techcombine.utils import generate_notify_data
data = generate_notify_data(ojb, key_type="id", header=None)
parameter:
- obj: (Django models object) field['obj.id or obj.slug', 'name', 'email', 'created_at', 'url']
#if header=None: data will doesn't have url field
- key_type: (str) Type of object key from ID or Slug
- header: (str) For fill link url of object
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file test2techcombine-0.0.5.tar.gz
.
File metadata
- Download URL: test2techcombine-0.0.5.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b76fd97264f2314cefd81840729ca93b61b88d5d39bc8fd9eaceaefdeac9adc |
|
MD5 | 5722de0d0bd4baf474292205d82b71e2 |
|
BLAKE2b-256 | bc8f118ced93e3c6cd3cdca148a007c31a7f2f6cd1190632101be2699743878c |