Skip to content

Commit 70a798b

Browse files
committed
Release 0.0.5
1 parent 6cf7613 commit 70a798b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+353
-159
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Devin Python Library
1+
# Devintest Python Library
22

33
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fdevalog%2Fcompany-python-test)
4-
[![pypi](https://img.shields.io/pypi/v/test-package-devin)](https://pypi.python.org/pypi/test-package-devin)
4+
[![pypi](https://img.shields.io/pypi/v/devin-new-test-package)](https://pypi.python.org/pypi/devin-new-test-package)
55

6-
The Devin Python library provides convenient access to the Devin API from Python.
6+
The Devintest Python library provides convenient access to the Devintest APIs from Python.
77

88
## Installation
99

1010
```sh
11-
pip install test-package-devin
11+
pip install devin-new-test-package
1212
```
1313

1414
## Reference
@@ -20,9 +20,9 @@ A full reference for this library is available [here](https://github.com/devalog
2020
Instantiate and use the client with the following:
2121

2222
```python
23-
from devin import CustomClientName
23+
from devintest import MyClientNameDevin
2424

25-
client = CustomClientName(
25+
client = MyClientNameDevin(
2626
base_url="https://yourhost.com/path/to/api",
2727
)
2828
client.imdb.create_movie(
@@ -38,9 +38,9 @@ The SDK also exports an `async` client so that you can make non-blocking calls t
3838
```python
3939
import asyncio
4040

41-
from devin import AsyncCustomClientName
41+
from devintest import AsyncMyClientNameDevin
4242

43-
client = AsyncCustomClientName(
43+
client = AsyncMyClientNameDevin(
4444
base_url="https://yourhost.com/path/to/api",
4545
)
4646

@@ -61,7 +61,7 @@ When the API returns a non-success status code (4xx or 5xx response), a subclass
6161
will be thrown.
6262

6363
```python
64-
from devin.core.api_error import ApiError
64+
from devintest.core.api_error import ApiError
6565

6666
try:
6767
client.imdb.create_movie(...)
@@ -78,9 +78,9 @@ The SDK provides access to raw response data, including headers, through the `.w
7878
The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
7979

8080
```python
81-
from devin import CustomClientName
81+
from devintest import MyClientNameDevin
8282

83-
client = CustomClientName(
83+
client = MyClientNameDevin(
8484
...,
8585
)
8686
response = client.imdb.with_raw_response.create_movie(...)
@@ -114,9 +114,9 @@ The SDK defaults to a 60 second timeout. You can configure this with a timeout o
114114

115115
```python
116116

117-
from devin import CustomClientName
117+
from devintest import MyClientNameDevin
118118

119-
client = CustomClientName(
119+
client = MyClientNameDevin(
120120
...,
121121
timeout=20.0,
122122
)
@@ -135,9 +135,9 @@ and transports.
135135

136136
```python
137137
import httpx
138-
from devin import CustomClientName
138+
from devintest import MyClientNameDevin
139139

140-
client = CustomClientName(
140+
client = MyClientNameDevin(
141141
...,
142142
httpx_client=httpx.Client(
143143
proxies="http://my.test.proxy.example.com",

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
2-
name = "test-package-devin"
2+
name = "devin-new-test-package"
33

44
[tool.poetry]
5-
name = "test-package-devin"
6-
version = "0.0.4"
5+
name = "devin-new-test-package"
6+
version = "0.0.5"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -27,7 +27,7 @@ classifiers = [
2727
"Typing :: Typed"
2828
]
2929
packages = [
30-
{ include = "devin", from = "src"}
30+
{ include = "devintest", from = "src"}
3131
]
3232

3333
[project.urls]

reference.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Reference
22
## Imdb
3-
<details><summary><code>client.imdb.<a href="src/devin/imdb/client.py">create_movie</a>(...)</code></summary>
3+
<details><summary><code>client.imdb.<a href="src/devintest/imdb/client.py">create_movie</a>(...)</code></summary>
44
<dl>
55
<dd>
66

@@ -27,9 +27,9 @@ Add a movie to the database
2727
<dd>
2828

2929
```python
30-
from devin import CustomClientName
30+
from devintest import MyClientNameDevin
3131

32-
client = CustomClientName(
32+
client = MyClientNameDevin(
3333
base_url="https://yourhost.com/path/to/api",
3434
)
3535
client.imdb.create_movie(
@@ -79,7 +79,7 @@ client.imdb.create_movie(
7979
</dl>
8080
</details>
8181

82-
<details><summary><code>client.imdb.<a href="src/devin/imdb/client.py">get_movie</a>(...)</code></summary>
82+
<details><summary><code>client.imdb.<a href="src/devintest/imdb/client.py">get_movie</a>(...)</code></summary>
8383
<dl>
8484
<dd>
8585

@@ -106,9 +106,9 @@ Retrieve a movie from the database based on the ID
106106
<dd>
107107

108108
```python
109-
from devin import CustomClientName
109+
from devintest import MyClientNameDevin
110110

111-
client = CustomClientName(
111+
client = MyClientNameDevin(
112112
base_url="https://yourhost.com/path/to/api",
113113
)
114114
client.imdb.get_movie(

src/devin/__init__.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/devin/core/__init__.py

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/devin/imdb/__init__.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/devin/imdb/errors/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/devin/imdb/types/__init__.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/devin/version.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)