-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: fal compressed file #17
Closed
Closed
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
41e507a
refactor: fal file
badayvedat 6347826
feat: fal compressed file
badayvedat cf574e7
fix: gcp repository upload
badayvedat 7f08a90
ci(integration-tests): remove unused step (#25)
badayvedat d943e76
feat: handle metadata key in @fal.function (#26)
chamini2 41339af
fix: custom app openapi metadata (#19)
badayvedat f47522a
Merge branch 'refactor-fal-toolkit-file' into feat-compressed-file
badayvedat 963e3a1
ci(integration-tests): bump python version to 3.10
badayvedat 0aa4f22
ci: cancel previous runs
badayvedat 5284184
chore: dummy commit
badayvedat 296a218
revert: dummy changes
badayvedat 4ebd8b4
fix: optional type
badayvedat 06c90d8
fix: optional type
badayvedat 74afc08
feat: `fal.App` for multiple endpoints (#27)
isidentical 5e95ddb
fix: handle regular functions on serve (#28)
isidentical 9ca7bd2
chore: drop dbt-fal special error messages (#30)
chamini2 d0287c2
fix: stop sending request that ends in error for API users after logi…
chamini2 430a4df
chore: print hint of exception if available and reference fal keys i…
chamini2 6a6f97e
fix: manual bump of fal version
chamini2 6207180
Bump the pyproject.toml version for fal (#34)
fal-bot 2e34f24
ci: avoid committing changes when bumping (#35)
chamini2 c3cf79e
Bump the pyproject.toml version for fal (#36)
fal-bot ced8331
ci: keep lock changes (#39)
chamini2 fca0fd9
fix: run integration tests on python 3.10 (#44)
mederka 02887b3
chore: update openapi client (#43)
mederka 68fb829
Merge branch 'main' into feat-compressed-file
badayvedat 5d2beab
chore: lint
badayvedat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
142 changes: 142 additions & 0 deletions
142
projects/fal/openapi-fal-rest/openapi_fal_rest/api/admin/get_invoice_users.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
from http import HTTPStatus | ||
from typing import Any, Dict, List, Optional, Union, cast | ||
|
||
import httpx | ||
|
||
from ... import errors | ||
from ...client import Client | ||
from ...models.http_validation_error import HTTPValidationError | ||
from ...types import Response | ||
|
||
|
||
def _get_kwargs( | ||
*, | ||
client: Client, | ||
) -> Dict[str, Any]: | ||
url = "{}/admin/users/invoice_users".format(client.base_url) | ||
|
||
headers: Dict[str, str] = client.get_headers() | ||
cookies: Dict[str, Any] = client.get_cookies() | ||
|
||
return { | ||
"method": "get", | ||
"url": url, | ||
"headers": headers, | ||
"cookies": cookies, | ||
"timeout": client.get_timeout(), | ||
"follow_redirects": client.follow_redirects, | ||
} | ||
|
||
|
||
def _parse_response(*, client: Client, response: httpx.Response) -> Optional[Union[HTTPValidationError, List[str]]]: | ||
if response.status_code == HTTPStatus.OK: | ||
response_200 = cast(List[str], response.json()) | ||
|
||
return response_200 | ||
if response.status_code == HTTPStatus.UNPROCESSABLE_ENTITY: | ||
response_422 = HTTPValidationError.from_dict(response.json()) | ||
|
||
return response_422 | ||
if client.raise_on_unexpected_status: | ||
raise errors.UnexpectedStatus(response.status_code, response.content) | ||
else: | ||
return None | ||
|
||
|
||
def _build_response(*, client: Client, response: httpx.Response) -> Response[Union[HTTPValidationError, List[str]]]: | ||
return Response( | ||
status_code=HTTPStatus(response.status_code), | ||
content=response.content, | ||
headers=response.headers, | ||
parsed=_parse_response(client=client, response=response), | ||
) | ||
|
||
|
||
def sync_detailed( | ||
*, | ||
client: Client, | ||
) -> Response[Union[HTTPValidationError, List[str]]]: | ||
"""Get Invoice Users | ||
|
||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
|
||
Returns: | ||
Response[Union[HTTPValidationError, List[str]]] | ||
""" | ||
|
||
kwargs = _get_kwargs( | ||
client=client, | ||
) | ||
|
||
response = httpx.request( | ||
verify=client.verify_ssl, | ||
**kwargs, | ||
) | ||
|
||
return _build_response(client=client, response=response) | ||
|
||
|
||
def sync( | ||
*, | ||
client: Client, | ||
) -> Optional[Union[HTTPValidationError, List[str]]]: | ||
"""Get Invoice Users | ||
|
||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
|
||
Returns: | ||
Union[HTTPValidationError, List[str]] | ||
""" | ||
|
||
return sync_detailed( | ||
client=client, | ||
).parsed | ||
|
||
|
||
async def asyncio_detailed( | ||
*, | ||
client: Client, | ||
) -> Response[Union[HTTPValidationError, List[str]]]: | ||
"""Get Invoice Users | ||
|
||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
|
||
Returns: | ||
Response[Union[HTTPValidationError, List[str]]] | ||
""" | ||
|
||
kwargs = _get_kwargs( | ||
client=client, | ||
) | ||
|
||
async with httpx.AsyncClient(verify=client.verify_ssl) as _client: | ||
response = await _client.request(**kwargs) | ||
|
||
return _build_response(client=client, response=response) | ||
|
||
|
||
async def asyncio( | ||
*, | ||
client: Client, | ||
) -> Optional[Union[HTTPValidationError, List[str]]]: | ||
"""Get Invoice Users | ||
|
||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
|
||
Returns: | ||
Union[HTTPValidationError, List[str]] | ||
""" | ||
|
||
return ( | ||
await asyncio_detailed( | ||
client=client, | ||
) | ||
).parsed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we editing the release files?