File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ #Introduction
2+ This is an example project that shows how to implement TRKD REST Client with python
3+ - trkd_authen.py: An example application that shows how to authenticate with TRKD service
4+
5+
6+ #prerequisite
7+ The following softwares are required to use this script
8+ - Python 2.7.10
9+ - The [ requests] ( http://docs.python-requests.org/en/master/ ) library
10+
11+ The script does not support Python 3!
12+
13+ #how to run the script
14+ Run the script via the command line (or shell)
15+ ```
16+ $>python <application>.py
17+ ```
18+
19+
20+ #Optional - How to install requests
21+ The best way is to get the pip package management tool
22+ 1 . export <Python_folder>\Scripts to your OS PATH environment
23+ 2 . call pip command to install lxml
24+ ```
25+ $>pip install requests
26+ ```
27+ 3 . If you are behind proxy, set the proxy first
28+ ```
29+ export https_proxy="http://<proxy.server>:<port>"
30+ $>pip install requests
31+ ```
32+ #Releae Note
33+ - Version 1: 1 Sep 2016
34+ - trkd_authen.py
You can’t perform that action at this time.
0 commit comments