Skip to content

Commit 636161f

Browse files
Merge pull request #87 from avadev/updateREADME
Update readme
2 parents aba9d35 + e92dafb commit 636161f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ Install simply with pip.
1212

1313
**OR**
1414

15-
Clone this repository to your local machine.
15+
1. Clone this repository to your local machine.
1616
```
1717
$ git clone https://github.com/avadev/AvaTax-REST-V2-Python-SDK.git
1818
```
19-
Once downloaded, cd into the ```AvaTax-REST-V2-Python-SDK``` directory.
19+
2. Once downloaded, cd into the ```AvaTax-REST-V2-Python-SDK``` directory.
2020
```
2121
$ cd AvaTax-REST-V2-Python-SDK
2222
```
23-
Begin a new virtual environment with Python 3 and activate it.
23+
3. Begin a new virtual environment with Python 3 and activate it.
2424
```
2525
AvaTax-REST-V2-Python-SDK $ python3 -m venv ENV
2626
AvaTax-REST-V2-Python-SDK $ source ENV/bin/activate
2727
```
28-
[pip](https://pip.pypa.io/en/stable) install this package as well as the testing set of extras into your virtual enviroment.
28+
4. [pip](https://pip.pypa.io/en/stable) install this package as well as the testing set of extras into your virtual enviroment.
2929
```
3030
(ENV) AvaTax-REST-V2-Python-SDK $ pip install -e .
3131
(ENV) AvaTax-REST-V2-Python-SDK $ pip install -e .[testing]
@@ -36,12 +36,12 @@ AvaTax-REST-V2-Python-SDK $ source ENV/bin/activate
3636
### Create a transaction
3737

3838

39-
**Import the AvataxClient from the client module**
39+
**Import the AvataxClient from the avalara module**
4040

4141
First thing to do is to import the AvataxClient constructor module to your name space, or your python script.
4242

4343
```
44-
from client import AvataxClient
44+
from avalara import AvataxClient
4545
```
4646

4747
**Now we are ready to construct a client object**
@@ -137,7 +137,7 @@ To learn more about integrating our REST API into your system, visit our [develo
137137

138138
We realize that having to format the TransactionModel can be complicated and time consuming, thus we created a tool called Transaction Builder to help you put together a transaction model, and create it!
139139
First import the transaction builder constructor into your name space:
140-
```from transaction_builder import TransactionBuilder```
140+
```from avalara.transaction_builder import TransactionBuilder```
141141

142142
Then, let's create a transaction builder object:
143143
```

0 commit comments

Comments
 (0)