This repository was archived by the owner on Jun 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +1378
-12
lines changed
src/apideck_accounting_unify Expand file tree Collapse file tree 9 files changed +1378
-12
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,11 @@ speakeasyVersion: 1.523.2
2
2
sources:
3
3
accounting:
4
4
sourceNamespace: apideck-accounting-only-oas
5
- sourceRevisionDigest: sha256:da2fb1c25f6e49afaac1e59d0e15ba472fb9ed71cdb1fa415f62888b514325b4
5
+ sourceRevisionDigest: sha256:56f817619ba615301852d6a0a8f2351bfad3de3b42ad3ebaf6af8ec12ed21193
6
6
sourceBlobDigest: sha256:6d730e4fc04f1f82cc3401f99edab1f888d699a469e32a9ad951a53be8913b0e
7
7
tags:
8
8
- latest
9
+ - speakeasy-sdk-regen-1743006270
9
10
- 10.12.4
10
11
lending:
11
12
sourceNamespace: lending
@@ -18,10 +19,10 @@ targets:
18
19
accounting-py:
19
20
source: accounting
20
21
sourceNamespace: apideck-accounting-only-oas
21
- sourceRevisionDigest: sha256:da2fb1c25f6e49afaac1e59d0e15ba472fb9ed71cdb1fa415f62888b514325b4
22
+ sourceRevisionDigest: sha256:56f817619ba615301852d6a0a8f2351bfad3de3b42ad3ebaf6af8ec12ed21193
22
23
sourceBlobDigest: sha256:6d730e4fc04f1f82cc3401f99edab1f888d699a469e32a9ad951a53be8913b0e
23
24
codeSamplesNamespace: apideck-accounting-only-oas-python-code-samples
24
- codeSamplesRevisionDigest: sha256:fce1be86a0a48ada39015f31219a0e617a341ec02e321503d1a7c351dd7c7f4f
25
+ codeSamplesRevisionDigest: sha256:f8875db073876970fbaf5611c0a0867c5e614f5e4f29233c25a8004dd29717fc
25
26
accounting-ts:
26
27
source: accounting
27
28
sourceNamespace: accounting
Original file line number Diff line number Diff line change @@ -5,8 +5,11 @@ management:
5
5
docVersion: 10.12.4
6
6
speakeasyVersion: 1.523.2
7
7
generationVersion: 2.560.1
8
- releaseVersion: 0.9.2
9
- configChecksum: f59c302bb5bf8d03a4536a5a1478a37b
8
+ releaseVersion: 0.9.3
9
+ configChecksum: 0e7b549b186bf3a5fb600571014acf42
10
+ repoURL: https://github.com/apideck-libraries/sdk-python-pack.git
11
+ repoSubDirectory: accounting
12
+ installationURL: https://github.com/apideck-libraries/sdk-python-pack.git#subdirectory=accounting
10
13
published: true
11
14
features:
12
15
python:
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ generation:
18
18
oAuth2ClientCredentialsEnabled : true
19
19
oAuth2PasswordEnabled : true
20
20
python :
21
- version : 0.9.2
21
+ version : 0.9.3
22
22
additionalDependencies :
23
23
dev : {}
24
24
main : {}
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+
2
+
3
+ ## 2025-03-26 16:24:15
4
+ ### Changes
5
+ Based on:
6
+ - OpenAPI Doc
7
+ - Speakeasy CLI 1.523.2 (2.560.1) https://github.com/speakeasy-api/speakeasy
8
+ ### Generated
9
+ - [ python v0.9.3] accounting
10
+ ### Releases
11
+ - [ PyPI v0.9.3] https://pypi.org/project/apideck-accounting-unify/0.9.3 - accounting
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " apideck-accounting-unify"
3
- version = " 0.9.2 "
3
+ version = " 0.9.3 "
4
4
description = " Python Client SDK Generated by Speakeasy."
5
5
authors = [{ name = " Speakeasy" },]
6
6
readme = " README-PYPI.md"
@@ -15,6 +15,7 @@ dependencies = [
15
15
]
16
16
17
17
[tool .poetry ]
18
+ repository = " https://github.com/apideck-libraries/sdk-python-pack.git"
18
19
packages = [
19
20
{ include = " apideck_accounting_unify" , from = " src" }
20
21
]
Original file line number Diff line number Diff line change 1
1
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
3
+ import re
3
4
import shutil
4
5
5
6
try :
6
- shutil .copyfile ("README.md" , "README-PYPI.md" )
7
+ with open ("README.md" , "r" , encoding = "utf-8" ) as rh :
8
+ readme_contents = rh .read ()
9
+ GITHUB_URL = "https://github.com/apideck-libraries/sdk-python-pack.git"
10
+ GITHUB_URL = (
11
+ GITHUB_URL [: - len (".git" )] if GITHUB_URL .endswith (".git" ) else GITHUB_URL
12
+ )
13
+ # links on PyPI should have absolute URLs
14
+ readme_contents = re .sub (
15
+ r"(\[[^\]]+\]\()((?!https?:)[^\)]+)(\))" ,
16
+ lambda m : m .group (1 )
17
+ + GITHUB_URL
18
+ + "/blob/master/"
19
+ + m .group (2 )
20
+ + m .group (3 ),
21
+ readme_contents ,
22
+ )
23
+
24
+ with open ("README-PYPI.md" , "w" , encoding = "utf-8" ) as wh :
25
+ wh .write (readme_contents )
7
26
except Exception as e :
8
- print ("Failed to copy README.md to README-PYPI.md" )
9
- print (e )
27
+ try :
28
+ print ("Failed to rewrite README.md to README-PYPI.md, copying original instead" )
29
+ print (e )
30
+ shutil .copyfile ("README.md" , "README-PYPI.md" )
31
+ except Exception as ie :
32
+ print ("Failed to copy README.md to README-PYPI.md" )
33
+ print (ie )
Original file line number Diff line number Diff line change 3
3
import importlib .metadata
4
4
5
5
__title__ : str = "apideck-accounting-unify"
6
- __version__ : str = "0.9.2 "
6
+ __version__ : str = "0.9.3 "
7
7
__openapi_doc_version__ : str = "10.12.4"
8
8
__gen_version__ : str = "2.560.1"
9
9
__user_agent__ : str = (
10
- "speakeasy-sdk/python 0.9.2 2.560.1 10.12.4 apideck-accounting-unify"
10
+ "speakeasy-sdk/python 0.9.3 2.560.1 10.12.4 apideck-accounting-unify"
11
11
)
12
12
13
13
try :
You can’t perform that action at this time.
0 commit comments