Skip to content

Commit f967337

Browse files
author
Wasin Waeosri
committed
add README.md
1 parent 6dc25db commit f967337

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)