@@ -32,15 +32,27 @@ import time
3232import tbaapiv3client
3333from tbaapiv3client.rest import ApiException
3434from pprint import pprint
35- configuration = tbaapiv3client.Configuration()
35+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
36+ # See configuration.py for a list of all supported configuration parameters.
37+ configuration = tbaapiv3client.Configuration(
38+ host = " https://www.thebluealliance.com/api/v3"
39+ )
40+
41+ # The client must configure the authentication and authorization parameters
42+ # in accordance with the API server security policy.
43+ # Examples for each auth method are provided below, use the example that
44+ # satisfies your auth use case.
45+
3646# Configure API key authorization: apiKey
37- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
47+ configuration = tbaapiv3client.Configuration(
48+ host = " https://www.thebluealliance.com/api/v3" ,
49+ api_key = {
50+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
51+ }
52+ )
3853# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
3954# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
4055
41- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
42- configuration.host = " https://www.thebluealliance.com/api/v3"
43-
4456# Enter a context with an instance of the API client
4557with tbaapiv3client.ApiClient(configuration) as api_client:
4658 # Create an instance of the API class
@@ -100,15 +112,27 @@ import time
100112import tbaapiv3client
101113from tbaapiv3client.rest import ApiException
102114from pprint import pprint
103- configuration = tbaapiv3client.Configuration()
115+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
116+ # See configuration.py for a list of all supported configuration parameters.
117+ configuration = tbaapiv3client.Configuration(
118+ host = " https://www.thebluealliance.com/api/v3"
119+ )
120+
121+ # The client must configure the authentication and authorization parameters
122+ # in accordance with the API server security policy.
123+ # Examples for each auth method are provided below, use the example that
124+ # satisfies your auth use case.
125+
104126# Configure API key authorization: apiKey
105- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
127+ configuration = tbaapiv3client.Configuration(
128+ host = " https://www.thebluealliance.com/api/v3" ,
129+ api_key = {
130+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
131+ }
132+ )
106133# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
107134# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
108135
109- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
110- configuration.host = " https://www.thebluealliance.com/api/v3"
111-
112136# Enter a context with an instance of the API client
113137with tbaapiv3client.ApiClient(configuration) as api_client:
114138 # Create an instance of the API class
@@ -168,15 +192,27 @@ import time
168192import tbaapiv3client
169193from tbaapiv3client.rest import ApiException
170194from pprint import pprint
171- configuration = tbaapiv3client.Configuration()
195+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
196+ # See configuration.py for a list of all supported configuration parameters.
197+ configuration = tbaapiv3client.Configuration(
198+ host = " https://www.thebluealliance.com/api/v3"
199+ )
200+
201+ # The client must configure the authentication and authorization parameters
202+ # in accordance with the API server security policy.
203+ # Examples for each auth method are provided below, use the example that
204+ # satisfies your auth use case.
205+
172206# Configure API key authorization: apiKey
173- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
207+ configuration = tbaapiv3client.Configuration(
208+ host = " https://www.thebluealliance.com/api/v3" ,
209+ api_key = {
210+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
211+ }
212+ )
174213# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
175214# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
176215
177- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
178- configuration.host = " https://www.thebluealliance.com/api/v3"
179-
180216# Enter a context with an instance of the API client
181217with tbaapiv3client.ApiClient(configuration) as api_client:
182218 # Create an instance of the API class
@@ -236,15 +272,27 @@ import time
236272import tbaapiv3client
237273from tbaapiv3client.rest import ApiException
238274from pprint import pprint
239- configuration = tbaapiv3client.Configuration()
275+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
276+ # See configuration.py for a list of all supported configuration parameters.
277+ configuration = tbaapiv3client.Configuration(
278+ host = " https://www.thebluealliance.com/api/v3"
279+ )
280+
281+ # The client must configure the authentication and authorization parameters
282+ # in accordance with the API server security policy.
283+ # Examples for each auth method are provided below, use the example that
284+ # satisfies your auth use case.
285+
240286# Configure API key authorization: apiKey
241- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
287+ configuration = tbaapiv3client.Configuration(
288+ host = " https://www.thebluealliance.com/api/v3" ,
289+ api_key = {
290+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
291+ }
292+ )
242293# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
243294# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
244295
245- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
246- configuration.host = " https://www.thebluealliance.com/api/v3"
247-
248296# Enter a context with an instance of the API client
249297with tbaapiv3client.ApiClient(configuration) as api_client:
250298 # Create an instance of the API class
@@ -304,15 +352,27 @@ import time
304352import tbaapiv3client
305353from tbaapiv3client.rest import ApiException
306354from pprint import pprint
307- configuration = tbaapiv3client.Configuration()
355+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
356+ # See configuration.py for a list of all supported configuration parameters.
357+ configuration = tbaapiv3client.Configuration(
358+ host = " https://www.thebluealliance.com/api/v3"
359+ )
360+
361+ # The client must configure the authentication and authorization parameters
362+ # in accordance with the API server security policy.
363+ # Examples for each auth method are provided below, use the example that
364+ # satisfies your auth use case.
365+
308366# Configure API key authorization: apiKey
309- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
367+ configuration = tbaapiv3client.Configuration(
368+ host = " https://www.thebluealliance.com/api/v3" ,
369+ api_key = {
370+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
371+ }
372+ )
310373# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
311374# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
312375
313- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
314- configuration.host = " https://www.thebluealliance.com/api/v3"
315-
316376# Enter a context with an instance of the API client
317377with tbaapiv3client.ApiClient(configuration) as api_client:
318378 # Create an instance of the API class
@@ -372,15 +432,27 @@ import time
372432import tbaapiv3client
373433from tbaapiv3client.rest import ApiException
374434from pprint import pprint
375- configuration = tbaapiv3client.Configuration()
435+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
436+ # See configuration.py for a list of all supported configuration parameters.
437+ configuration = tbaapiv3client.Configuration(
438+ host = " https://www.thebluealliance.com/api/v3"
439+ )
440+
441+ # The client must configure the authentication and authorization parameters
442+ # in accordance with the API server security policy.
443+ # Examples for each auth method are provided below, use the example that
444+ # satisfies your auth use case.
445+
376446# Configure API key authorization: apiKey
377- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
447+ configuration = tbaapiv3client.Configuration(
448+ host = " https://www.thebluealliance.com/api/v3" ,
449+ api_key = {
450+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
451+ }
452+ )
378453# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
379454# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
380455
381- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
382- configuration.host = " https://www.thebluealliance.com/api/v3"
383-
384456# Enter a context with an instance of the API client
385457with tbaapiv3client.ApiClient(configuration) as api_client:
386458 # Create an instance of the API class
@@ -440,15 +512,27 @@ import time
440512import tbaapiv3client
441513from tbaapiv3client.rest import ApiException
442514from pprint import pprint
443- configuration = tbaapiv3client.Configuration()
515+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
516+ # See configuration.py for a list of all supported configuration parameters.
517+ configuration = tbaapiv3client.Configuration(
518+ host = " https://www.thebluealliance.com/api/v3"
519+ )
520+
521+ # The client must configure the authentication and authorization parameters
522+ # in accordance with the API server security policy.
523+ # Examples for each auth method are provided below, use the example that
524+ # satisfies your auth use case.
525+
444526# Configure API key authorization: apiKey
445- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
527+ configuration = tbaapiv3client.Configuration(
528+ host = " https://www.thebluealliance.com/api/v3" ,
529+ api_key = {
530+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
531+ }
532+ )
446533# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
447534# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
448535
449- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
450- configuration.host = " https://www.thebluealliance.com/api/v3"
451-
452536# Enter a context with an instance of the API client
453537with tbaapiv3client.ApiClient(configuration) as api_client:
454538 # Create an instance of the API class
@@ -508,15 +592,27 @@ import time
508592import tbaapiv3client
509593from tbaapiv3client.rest import ApiException
510594from pprint import pprint
511- configuration = tbaapiv3client.Configuration()
595+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
596+ # See configuration.py for a list of all supported configuration parameters.
597+ configuration = tbaapiv3client.Configuration(
598+ host = " https://www.thebluealliance.com/api/v3"
599+ )
600+
601+ # The client must configure the authentication and authorization parameters
602+ # in accordance with the API server security policy.
603+ # Examples for each auth method are provided below, use the example that
604+ # satisfies your auth use case.
605+
512606# Configure API key authorization: apiKey
513- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
607+ configuration = tbaapiv3client.Configuration(
608+ host = " https://www.thebluealliance.com/api/v3" ,
609+ api_key = {
610+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
611+ }
612+ )
514613# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
515614# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
516615
517- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
518- configuration.host = " https://www.thebluealliance.com/api/v3"
519-
520616# Enter a context with an instance of the API client
521617with tbaapiv3client.ApiClient(configuration) as api_client:
522618 # Create an instance of the API class
@@ -576,15 +672,27 @@ import time
576672import tbaapiv3client
577673from tbaapiv3client.rest import ApiException
578674from pprint import pprint
579- configuration = tbaapiv3client.Configuration()
675+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
676+ # See configuration.py for a list of all supported configuration parameters.
677+ configuration = tbaapiv3client.Configuration(
678+ host = " https://www.thebluealliance.com/api/v3"
679+ )
680+
681+ # The client must configure the authentication and authorization parameters
682+ # in accordance with the API server security policy.
683+ # Examples for each auth method are provided below, use the example that
684+ # satisfies your auth use case.
685+
580686# Configure API key authorization: apiKey
581- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
687+ configuration = tbaapiv3client.Configuration(
688+ host = " https://www.thebluealliance.com/api/v3" ,
689+ api_key = {
690+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
691+ }
692+ )
582693# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
583694# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
584695
585- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
586- configuration.host = " https://www.thebluealliance.com/api/v3"
587-
588696# Enter a context with an instance of the API client
589697with tbaapiv3client.ApiClient(configuration) as api_client:
590698 # Create an instance of the API class
@@ -644,15 +752,27 @@ import time
644752import tbaapiv3client
645753from tbaapiv3client.rest import ApiException
646754from pprint import pprint
647- configuration = tbaapiv3client.Configuration()
755+ # Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
756+ # See configuration.py for a list of all supported configuration parameters.
757+ configuration = tbaapiv3client.Configuration(
758+ host = " https://www.thebluealliance.com/api/v3"
759+ )
760+
761+ # The client must configure the authentication and authorization parameters
762+ # in accordance with the API server security policy.
763+ # Examples for each auth method are provided below, use the example that
764+ # satisfies your auth use case.
765+
648766# Configure API key authorization: apiKey
649- configuration.api_key[' X-TBA-Auth-Key' ] = ' YOUR_API_KEY'
767+ configuration = tbaapiv3client.Configuration(
768+ host = " https://www.thebluealliance.com/api/v3" ,
769+ api_key = {
770+ ' X-TBA-Auth-Key' : ' YOUR_API_KEY'
771+ }
772+ )
650773# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
651774# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
652775
653- # Defining host is optional and default to https://www.thebluealliance.com/api/v3
654- configuration.host = " https://www.thebluealliance.com/api/v3"
655-
656776# Enter a context with an instance of the API client
657777with tbaapiv3client.ApiClient(configuration) as api_client:
658778 # Create an instance of the API class
0 commit comments