Support non-default session
See original GitHub issueAs far as I can tell, s3path is hard-wired to use boto3’s default session. But I need to use a non-default session.
Actually, after further analysis of the source code, it looks like I could do
from s3path import S3Path, register_configuration_parameter
register_configuration_parameter(S3Path("/"), resource=boto3.resource("s3"))
where above one can easily substitute a resource based on a user-defined session. But it took me a while of reading the code in order to figure this out. (I didn’t find any corresponding documentation.) Am I doing it right?
Thanks for the great library!
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Introduction to UDS — udsoncan 0 documentation
A service is basically a type of request that has some parameters. ... must first switch to a non-default session that enables the...
Read more >Overview of Unified Diagnostic Services Protocol - Adventure
e.g. ECUReset, Session Change Several UDS services support a Data Identifier(DID) to get access to data via a logical number(DID) which is ...
Read more >UDS Explained - A Simple Intro (Unified Diagnostic Services)
This describes the session layer in the UDS OSI model. Specifically, it outlines service request/confirmation/indication primitives. These provide an interface ...
Read more >UDS Unified Diagnostic Services - ISO 14229 Info
Sub-Function not supported in active session ... Session. Non-Default. Session. Timeout. Standardized values of Parameter „Diagnostic Session Type“.
Read more >Support for non-default session.sid_length and ... - GitHub
Hi, Let's assume one is using non-default values in php.ini for session.sid-length and session.sid_bits_per_character as per ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @maresb I updated the README as you suggested Thanks for your feedback
Looks great, thanks!!!