Skip to content

Commit 4a6f1bb

Browse files
committed
adding notebooks. removing references to extend-api-client. changing stage url to prod.
1 parent f0b32dc commit 4a6f1bb

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ coverage.xml
4949

5050
# Jupyter Notebook
5151
.ipynb_checkpoints
52-
*.ipynb
52+
5353

5454
# Distribution / packaging
5555
.Python

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Thank you for your interest in contributing to the Extend API Client! This docum
77
1. Fork the repository
88
2. Clone your fork:
99
```bash
10-
git clone https://github.com/your-username/extend-api-client.git
11-
cd extend-api-client
10+
git clone https://github.com/your-username/extend-python.git
11+
cd extend-python
1212
```
1313
3. Create a virtual environment and activate it:
1414
```bash

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ and more.
2323
### From PyPI
2424

2525
```bash
26-
pip install extend-api-client
26+
pip install extend-python
2727
```
2828

2929
### From Source
3030

3131
```bash
32-
git clone https://github.com/yourusername/extend-api-client.git
33-
cd extend-api-client
32+
git clone https://github.com/yourusername/extend-python.git
33+
cd extend-python
3434
pip install -e .
3535
```
3636

@@ -74,8 +74,8 @@ The following environment variables are required for integration tests and examp
7474

7575
1. Clone the repository:
7676
```bash
77-
git clone https://github.com/yourusername/extend-api-client.git
78-
cd extend-api-client
77+
git clone https://github.com/yourusername/extend-python.git
78+
cd extend-python
7979
```
8080

8181
2. Create and activate a virtual environment:

extend/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class APIClient:
1717
cards = await client.get_virtual_cards()
1818
```
1919
"""
20-
BASE_URL = "https://apiv2-stage.paywithextend.com"
20+
BASE_URL = "https://apiv2.paywithextend.com"
2121
API_VERSION = "application/vnd.paywithextend.v2021-03-12+json"
2222

2323
_shared_instance: Optional["APIClient"] = None

0 commit comments

Comments
 (0)