-
Notifications
You must be signed in to change notification settings - Fork 19
/
log.txt
819 lines (799 loc) · 91.5 KB
/
log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
2023-01-17 15:46:29,564 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=5)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-02-16 15:19:54,644 - root - ERROR -
Traceback (most recent call last):
File "/home/runner/work/sbi_forex_rates/sbi_forex_rates/main.py", line 69, in dump_data
page_1_text, page_2_text = extract_text(file_content)
File "/home/runner/work/sbi_forex_rates/sbi_forex_rates/main.py", line 43, in extract_text
reader = PyPDF2.PdfReader(file_content, strict=False)
File "/opt/hostedtoolcache/Python/3.10.9/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 317, in __init__
self.read(stream)
File "/opt/hostedtoolcache/Python/3.10.9/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1409, in read
self._find_eof_marker(stream)
File "/opt/hostedtoolcache/Python/3.10.9/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1465, in _find_eof_marker
raise PdfReadError("EOF marker not found")
PyPDF2.errors.PdfReadError: EOF marker not found
2023-02-18 15:18:17,364 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-02-18 15:18:24,369 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-02-18 15:18:25,835 - root - ERROR -
Traceback (most recent call last):
File "/home/runner/work/sbi_forex_rates/sbi_forex_rates/main.py", line 69, in dump_data
page_1_text, page_2_text = extract_text(file_content)
File "/home/runner/work/sbi_forex_rates/sbi_forex_rates/main.py", line 43, in extract_text
reader = PyPDF2.PdfReader(file_content, strict=False)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 317, in __init__
self.read(stream)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1409, in read
self._find_eof_marker(stream)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1465, in _find_eof_marker
raise PdfReadError("EOF marker not found")
PyPDF2.errors.PdfReadError: EOF marker not found
2023-02-19 15:17:55,582 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-02-19 15:18:02,468 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-02-19 15:18:03,752 - root - ERROR -
Traceback (most recent call last):
File "/home/runner/work/sbi_forex_rates/sbi_forex_rates/main.py", line 81, in dump_data
reader = PyPDF2.PdfReader(file_content, strict=False)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 317, in __init__
self.read(stream)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1409, in read
self._find_eof_marker(stream)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1465, in _find_eof_marker
raise PdfReadError("EOF marker not found")
PyPDF2.errors.PdfReadError: EOF marker not found
2023-03-01 15:20:51,008 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-03-01 15:20:52,461 - root - ERROR -
Traceback (most recent call last):
File "/home/runner/work/sbi_forex_rates/sbi_forex_rates/main.py", line 81, in dump_data
reader = PyPDF2.PdfReader(file_content, strict=False)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 317, in __init__
self.read(stream)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1409, in read
self._find_eof_marker(stream)
File "/opt/hostedtoolcache/Python/3.10.10/x64/lib/python3.10/site-packages/PyPDF2/_reader.py", line 1465, in _find_eof_marker
raise PdfReadError("EOF marker not found")
PyPDF2.errors.PdfReadError: EOF marker not found
2023-03-23 15:18:15,146 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-04-03 16:37:34,434 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-04-03 16:37:41,470 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-04-06 10:30:53,895 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-04-18 10:32:02,913 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-05-04 16:44:20,229 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-05-27 10:31:08,993 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-15 10:32:29,352 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-15 10:32:46,085 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-15 10:33:08,839 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-21 16:36:00,947 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f098ec54910>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-21 16:36:16,979 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f098ec54160>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-21 16:36:39,030 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f098ec544c0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-06-21 16:37:13,078 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f098ec542e0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-03 10:36:14,092 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-03 16:39:12,167 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-03 16:39:28,892 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-05 10:38:47,338 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-08 16:37:56,916 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-10 10:37:51,780 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-10 10:38:08,590 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-07-17 10:37:29,806 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-08-31 10:32:20,638 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f1b76734910>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-08-31 10:32:36,673 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f1b76734160>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-08-31 10:32:58,706 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f1b767344c0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-08-31 10:33:32,753 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f1b767342e0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-08-31 10:34:30,777 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f1b76734460>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-13 16:34:51,715 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-13 16:34:58,812 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-16 16:32:36,456 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-16 16:32:43,637 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-19 16:36:56,243 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-19 16:37:03,176 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-20 16:36:15,447 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-20 16:36:22,551 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-20 16:36:35,650 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-20 16:37:00,757 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-22 16:35:20,369 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-22 16:35:27,538 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-22 16:35:40,723 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-23 16:32:00,320 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-23 16:32:07,511 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-23 16:32:20,703 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-23 16:32:45,913 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-24 16:32:25,861 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-09-24 16:32:33,053 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-10-02 10:33:05,237 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-10-02 10:33:22,055 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-10-05 10:34:20,942 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-11-06 10:35:31,542 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-06 16:38:10,345 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-11-06 16:38:12,901 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-07 10:32:59,838 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-07 16:36:53,863 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-08 10:33:18,261 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-08 16:36:30,790 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-10 10:32:42,874 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-10 16:35:52,801 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-11 10:30:50,536 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-11 16:33:17,492 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-12 10:31:02,479 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-12 16:32:51,771 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-17 10:34:10,949 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-11-17 10:34:13,499 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-17 16:39:31,535 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-18 10:31:17,797 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-19 10:31:35,626 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-19 16:33:56,155 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-20 10:35:40,866 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-20 16:35:08,454 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-21 10:40:21,050 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7f790992ad70>, 'Connection to sbi.co.in timed out. (connect timeout=10)')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-11-21 10:40:37,827 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7f790992ae30>, 'Connection to sbi.co.in timed out. (connect timeout=10)')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-11-21 10:40:48,073 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-22 10:36:22,613 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='bank.sbi', port=443): Read timed out. (read timeout=10)")': /
2023-11-22 10:36:39,308 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='bank.sbi', port=443): Read timed out. (read timeout=10)")': /
2023-11-22 10:37:02,084 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='bank.sbi', port=443): Read timed out. (read timeout=10)")': /
2023-11-22 10:37:36,857 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='bank.sbi', port=443): Read timed out. (read timeout=10)")': /
2023-11-22 10:37:47,533 - root - INFO - Invalid PDF. Response MIME type seems to be HTML document, ASCII text, with CRLF, LF line terminators
2023-11-22 10:37:47,533 - root - INFO - Using a proxy to retry getting the PDF
2023-11-22 10:38:14,579 - root - INFO - Found a valid PDF in 1 try. Breaking away
2023-11-22 10:38:14,692 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-22 16:37:07,077 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-23 10:33:54,922 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-23 16:36:07,450 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-24 10:34:12,798 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-24 16:36:17,169 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-25 10:30:43,096 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-25 16:33:09,221 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-26 10:31:29,375 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-26 16:33:27,412 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-27 10:34:57,700 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-27 16:38:01,495 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-28 10:34:50,450 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-28 16:38:05,507 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-29 10:34:43,488 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-29 16:37:58,191 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-30 10:33:56,768 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-11-30 16:38:35,555 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-01 10:34:31,491 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-01 16:36:26,542 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-02 10:30:41,405 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-02 16:33:16,125 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-03 10:30:53,860 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-03 16:34:23,851 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-04 10:35:56,450 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-04 16:36:37,167 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-05 10:35:19,002 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:35:35,767 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:35:48,766 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:36:13,773 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:37:02,831 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:37:05,256 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:37:12,249 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-05 10:37:25,249 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-06 10:34:36,136 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-06 16:38:29,419 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-07 10:34:50,100 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-07 16:38:31,319 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-08 10:33:41,295 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-08 16:37:08,487 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-09 10:31:04,369 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-09 16:34:02,331 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-10 10:30:57,164 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-10 16:34:09,455 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7113a41300>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-10 16:34:25,484 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7113a414b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-10 16:34:47,519 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7113a41750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-10 16:35:21,544 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7113a41930>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-10 16:36:19,612 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7113a41b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-10 16:36:32,354 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-11 10:36:45,793 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-11 16:39:14,264 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f88d0151300>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-11 16:39:30,291 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f88d01514b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-11 16:39:32,496 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-12 10:34:56,277 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-12 16:37:17,788 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-13 10:34:27,413 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-13 16:36:49,298 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-14 10:34:32,624 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-14 16:33:29,782 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-15 10:34:33,965 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-15 16:36:41,945 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-16 10:31:15,933 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-16 16:34:15,786 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-17 10:31:48,094 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-17 16:35:46,326 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-18 10:35:53,521 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-18 16:37:12,594 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-19 10:34:09,817 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-19 16:30:51,362 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-20 10:31:04,747 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-20 16:36:08,221 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-21 10:33:24,360 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-21 16:36:47,076 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-22 10:33:13,519 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-22 16:35:13,184 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-23 10:31:40,240 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-23 16:34:15,617 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-24 10:31:06,237 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f06252051b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2023-12-24 10:31:12,404 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-24 16:33:41,258 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-25 10:32:46,911 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-25 16:35:54,373 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-26 10:32:04,524 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-26 16:36:03,709 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-27 10:32:53,336 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-27 16:36:53,516 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-28 10:32:34,887 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-28 16:36:52,286 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-29 10:33:06,867 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-29 16:36:47,111 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-30 10:30:59,123 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-31 10:31:00,481 - root - ERROR - No data matching the currency regex found
NoneType: None
2023-12-31 16:34:07,897 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-01 10:33:25,048 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-01 16:34:59,984 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-02 10:33:14,683 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-02 16:34:24,092 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-03 10:33:12,025 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-03 16:35:37,072 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-04 10:34:07,493 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-04 16:37:15,264 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-05 10:33:30,029 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-05 16:35:44,320 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-06 10:31:49,507 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-06 16:35:22,714 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-07 10:32:27,559 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-07 16:35:20,928 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-08 10:35:24,493 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-08 16:37:48,690 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-09 10:34:42,757 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-09 16:38:08,734 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-10 10:34:44,191 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-10 16:37:13,183 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-11 10:34:39,546 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-11 16:38:04,749 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-12 10:34:28,255 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-12 16:36:56,059 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-13 10:32:18,930 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-13 16:35:30,758 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-14 10:32:06,470 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-14 16:34:52,693 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-15 10:36:05,365 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-15 16:38:20,868 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-16 10:35:09,444 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-16 16:37:51,298 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-17 10:34:56,462 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-17 16:37:55,908 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-18 10:35:57,665 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-18 16:36:55,144 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-19 10:35:09,034 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-19 16:38:15,656 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-20 10:32:01,807 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-20 16:35:22,866 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-21 10:33:18,765 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-21 16:35:15,475 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-22 10:36:07,427 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-22 16:37:36,435 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-23 10:35:20,534 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-23 16:38:44,983 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-24 10:35:35,798 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-24 16:37:56,587 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-25 10:35:27,742 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-25 16:39:20,414 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-26 10:33:29,871 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-26 16:33:16,997 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-27 10:31:04,724 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd4bd3ea890>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-01-27 10:31:17,524 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-27 16:32:39,885 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-28 10:30:53,560 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-28 16:30:44,094 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-29 10:31:32,556 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-01-29 10:31:35,227 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-29 16:34:01,292 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-30 10:33:06,439 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-01-30 10:33:08,799 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-30 16:35:43,928 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-31 10:31:19,269 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-01-31 16:30:46,593 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-01 10:32:10,913 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-01 16:32:37,357 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-03 10:30:50,244 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-03 16:32:29,327 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-04 10:30:44,752 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-04 16:30:52,476 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-05 10:33:31,691 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-05 16:32:39,321 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-06 10:32:55,888 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-06 16:33:30,994 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-07 10:31:34,926 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-07 16:34:40,678 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-08 10:30:48,813 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-08 16:33:30,718 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-09 10:30:48,532 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-09 16:33:31,795 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-10 10:30:40,738 - root - ERROR - No data matching the currency regex found
NoneType: None
2024-02-15 16:33:15,613 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd5570e4130>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-02-15 16:33:31,630 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd5570e43a0>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-02-15 16:33:53,653 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd5570e4580>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-02-15 16:34:27,689 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd5570e4760>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-02-15 16:35:25,749 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd5570e4940>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-06 10:33:17,515 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f66cfd20940>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-18 10:31:45,362 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x771415c28940>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-18 10:32:01,402 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x771415c28bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-18 10:32:23,437 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x771415c28d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-18 10:32:57,491 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x771415c28f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-18 10:33:55,570 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x771415c29150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-24 16:31:29,761 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fb8819ef280>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-03-24 16:31:45,789 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fb8819ef4f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-03 10:32:39,193 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f53eecc5270>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-03 10:32:55,222 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f53eecc54e0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-03 10:33:17,253 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f53eecc56c0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-03 10:33:51,281 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f53eecc58a0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-03 10:34:49,325 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f53eecc5a80>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-06 10:31:06,933 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f2541dc8f40>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-06 10:31:22,958 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f2541dc91b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-06 10:31:44,993 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f2541dc9390>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-07 10:30:51,649 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f5bbb3c1030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-07 10:31:07,672 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f5bbb3c12a0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-09 16:35:08,602 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f955ce838e0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-09 16:35:24,630 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f955ce83b50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-09 16:35:46,670 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f955ce83d30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-28 10:31:38,587 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fdc6a23d3f0>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-28 10:31:54,605 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fdc6a23d660>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-28 10:32:16,628 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fdc6a23d840>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-28 10:32:50,664 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fdc6a23da20>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-04-28 10:33:48,723 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fdc6a23dc00>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-06 10:34:08,065 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7fb36c9600>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-06 10:34:24,090 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7fb36c9870>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-06 10:34:46,115 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7fb36c9a50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-06 10:35:20,140 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7fb36c9c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-06 10:36:18,207 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7fb36c9e10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-22 16:37:36,701 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7eff8983d300>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-26 16:34:21,858 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f69d1b951e0>: Failed to establish a new connection: [Errno 101] Network is unreachable')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-30 10:34:26,847 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7efc586893c0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-05-30 10:34:42,877 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7efc58689600>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-16 16:35:33,298 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f182d9f7880>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-16 16:35:49,328 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f182d9f7ac0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-16 16:36:11,360 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f182d9f7ca0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-16 16:36:45,389 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f182d9f7e80>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-16 16:37:43,462 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f182da5c0a0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-28 10:35:29,349 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3fdec9d270>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-06-28 10:35:45,381 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3fdec9d4b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-07-05 10:35:03,315 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-07-31 10:31:49,165 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff499b94bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-07-31 10:32:05,195 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff499b94df0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-07-31 10:32:27,222 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff499b94fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-07-31 10:33:01,263 - urllib3.connectionpool - WARNING - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff499b951b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-07-31 10:33:59,324 - urllib3.connectionpool - WARNING - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff499b95390>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-08-31 10:34:28,809 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-08-31 10:34:57,690 - urllib3.connectionpool - WARNING - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='www.sbi.co.in', port=443): Read timed out. (read timeout=10)")': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-09-01 10:35:06,472 - urllib3.connectionpool - WARNING - Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f26a76413c0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-09-01 10:35:22,501 - urllib3.connectionpool - WARNING - Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f26a7641600>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /documents/16012/1400784/FOREX_CARD_RATES.pdf
2024-09-06 10:37:15,946 - root - ERROR - Unable to extract date and time from the PDF. Aborting.
NoneType: None
2024-09-06 16:42:17,275 - root - ERROR - Unable to extract date and time from the PDF. Aborting.
NoneType: None
2024-09-07 10:36:27,074 - root - ERROR - Unable to extract date and time from the PDF. Aborting.
NoneType: None
2024-09-07 16:37:46,760 - root - ERROR - Unable to extract date and time from the PDF. Aborting.
NoneType: None
2024-09-08 10:35:18,296 - root - ERROR - Unable to extract date and time from the PDF. Aborting.
NoneType: None
2024-09-08 16:39:14,888 - root - ERROR - Unable to extract date and time from the PDF. Aborting.
NoneType: None
2024-09-18 10:40:07,774 - __main__ - ERROR - Failed to download PDF from https://www.sbi.co.in/documents/16012/1400784/FOREX_CARD_RATES.pdf
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/requests/adapters.py", line 564, in send
resp = conn.urlopen(
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 897, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 897, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 897, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 887, in urlopen
retries = retries.increment(method, url, response=response, _pool=self)
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/urllib3/util/retry.py", line 594, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='www.sbi.co.in', port=443): Max retries exceeded with url: /documents/16012/1400784/FOREX_CARD_RATES.pdf (Caused by ResponseError('too many 503 error responses'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 191, in get_latest_pdf_from_sbi
response = download_pdf(url, session)
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 181, in download_pdf
return session.get(url, timeout=10)
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/requests/sessions.py", line 602, in get
return self.request("GET", url, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/requests/adapters.py", line 588, in send
raise RetryError(e, request=request)
requests.exceptions.RetryError: HTTPSConnectionPool(host='www.sbi.co.in', port=443): Max retries exceeded with url: /documents/16012/1400784/FOREX_CARD_RATES.pdf (Caused by ResponseError('too many 503 error responses'))
2024-09-23 16:42:43,135 - __main__ - ERROR - Failed to download PDF from https://www.sbi.co.in/documents/16012/1400784/FOREX_CARD_RATES.pdf
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 174, in _new_conn
conn = connection.create_connection(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/util/connection.py", line 72, in create_connection
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/socket.py", line 967, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno -2] Name or service not known
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 716, in urlopen
httplib_response = self._make_request(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 404, in _make_request
self._validate_conn(conn)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 1061, in _validate_conn
conn.connect()
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 363, in connect
self.sock = conn = self._new_conn()
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 186, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f6f8cd472e0>: Failed to establish a new connection: [Errno -2] Name or service not known
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/adapters.py", line 564, in send
resp = conn.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
[Previous line repeated 2 more times]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 802, in urlopen
retries = retries.increment(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/util/retry.py", line 594, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='sbi.co.indocuments', port=443): Max retries exceeded with url: /16012/1400784/FOREX_CARD_RATES.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f6f8cd472e0>: Failed to establish a new connection: [Errno -2] Name or service not known'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 221, in get_latest_pdf_from_sbi
response = download_pdf(url, session)
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 211, in download_pdf
return session.get(url, timeout=10)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 602, in get
return self.request("GET", url, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 724, in send
history = [resp for resp in gen]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 724, in <listcomp>
history = [resp for resp in gen]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 265, in resolve_redirects
resp = self.send(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/adapters.py", line 597, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='sbi.co.indocuments', port=443): Max retries exceeded with url: /16012/1400784/FOREX_CARD_RATES.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f6f8cd472e0>: Failed to establish a new connection: [Errno -2] Name or service not known'))
2024-09-24 10:42:58,625 - __main__ - ERROR - Failed to download PDF from https://www.sbi.co.in/documents/16012/1400784/FOREX_CARD_RATES.pdf
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 174, in _new_conn
conn = connection.create_connection(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/util/connection.py", line 72, in create_connection
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/socket.py", line 967, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno -2] Name or service not known
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 716, in urlopen
httplib_response = self._make_request(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 404, in _make_request
self._validate_conn(conn)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 1061, in _validate_conn
conn.connect()
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 363, in connect
self.sock = conn = self._new_conn()
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 186, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc306477490>: Failed to establish a new connection: [Errno -2] Name or service not known
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/adapters.py", line 564, in send
resp = conn.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
[Previous line repeated 2 more times]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 802, in urlopen
retries = retries.increment(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/util/retry.py", line 594, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='sbi.co.indocuments', port=443): Max retries exceeded with url: /16012/1400784/FOREX_CARD_RATES.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc306477490>: Failed to establish a new connection: [Errno -2] Name or service not known'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 221, in get_latest_pdf_from_sbi
response = download_pdf(url, session)
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 211, in download_pdf
return session.get(url, timeout=10)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 602, in get
return self.request("GET", url, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 724, in send
history = [resp for resp in gen]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 724, in <listcomp>
history = [resp for resp in gen]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 265, in resolve_redirects
resp = self.send(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/adapters.py", line 597, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='sbi.co.indocuments', port=443): Max retries exceeded with url: /16012/1400784/FOREX_CARD_RATES.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc306477490>: Failed to establish a new connection: [Errno -2] Name or service not known'))
2024-10-01 10:40:27,728 - __main__ - WARNING - Ambiguous date found: Date 01-10-2024. Using file creation date as tie-breaker.
2024-10-01 16:42:43,831 - __main__ - WARNING - Ambiguous date found: Date 01-10-2024. Using file creation date as tie-breaker.
2024-10-02 10:39:32,922 - __main__ - WARNING - Ambiguous date found: Date 01-10-2024. Using file creation date as tie-breaker.
2024-10-02 16:42:06,792 - __main__ - WARNING - Ambiguous date found: Date 01-10-2024. Using file creation date as tie-breaker.
2024-10-03 10:39:13,487 - __main__ - WARNING - Ambiguous date found: Date 03-10-2024. Using file creation date as tie-breaker.
2024-10-03 16:41:48,548 - __main__ - WARNING - Ambiguous date found: Date 03-10-2024. Using file creation date as tie-breaker.
2024-10-04 10:39:31,009 - __main__ - WARNING - Ambiguous date found: Date 04-10-2024. Using file creation date as tie-breaker.
2024-10-04 16:41:55,405 - __main__ - WARNING - Ambiguous date found: Date 04-10-2024. Using file creation date as tie-breaker.
2024-10-05 10:36:38,102 - __main__ - WARNING - Ambiguous date found: Date 05-10-2024. Using file creation date as tie-breaker.
2024-10-05 16:39:11,725 - __main__ - WARNING - Ambiguous date found: Date 05-10-2024. Using file creation date as tie-breaker.
2024-10-06 10:38:17,546 - __main__ - WARNING - Ambiguous date found: Date 05-10-2024. Using file creation date as tie-breaker.
2024-10-06 16:38:45,838 - __main__ - WARNING - Ambiguous date found: Date 05-10-2024. Using file creation date as tie-breaker.
2024-10-07 10:40:17,469 - __main__ - WARNING - Ambiguous date found: Date 07-10-2024. Using file creation date as tie-breaker.
2024-10-07 16:41:31,025 - __main__ - WARNING - Ambiguous date found: Date 07-10-2024. Using file creation date as tie-breaker.
2024-10-08 10:39:02,138 - __main__ - WARNING - Ambiguous date found: Date 08-10-2024. Using file creation date as tie-breaker.
2024-10-08 16:42:33,005 - __main__ - WARNING - Ambiguous date found: Date 08-10-2024. Using file creation date as tie-breaker.
2024-10-09 10:39:55,737 - __main__ - WARNING - Ambiguous date found: Date 09-10-2024. Using file creation date as tie-breaker.
2024-10-09 16:40:56,595 - __main__ - WARNING - Ambiguous date found: Date 09-10-2024. Using file creation date as tie-breaker.
2024-10-11 10:38:50,770 - __main__ - WARNING - Ambiguous date found: Date 11-10-2024. Using file creation date as tie-breaker.
2024-10-11 16:40:55,942 - __main__ - WARNING - Ambiguous date found: Date 11-10-2024. Using file creation date as tie-breaker.
2024-10-12 10:36:28,823 - __main__ - WARNING - Ambiguous date found: Date 11-10-2024. Using file creation date as tie-breaker.
2024-10-12 16:41:53,480 - __main__ - WARNING - Ambiguous date found: Date 11-10-2024. Using file creation date as tie-breaker.
2024-10-13 10:37:44,070 - __main__ - WARNING - Ambiguous date found: Date 11-10-2024. Using file creation date as tie-breaker.
2024-10-13 16:39:30,557 - __main__ - WARNING - Ambiguous date found: Date 11-10-2024. Using file creation date as tie-breaker.
2024-11-04 10:40:33,431 - __main__ - WARNING - Ambiguous date found: Date 04-11-2024. Using file creation date as tie-breaker.
2024-11-04 16:40:49,964 - __main__ - WARNING - Ambiguous date found: Date 04-11-2024. Using file creation date as tie-breaker.
2024-11-05 10:39:30,244 - __main__ - WARNING - Ambiguous date found: Date 05-11-2024. Using file creation date as tie-breaker.
2024-11-05 16:40:56,244 - __main__ - WARNING - Ambiguous date found: Date 05-11-2024. Using file creation date as tie-breaker.
2024-11-06 10:39:06,594 - __main__ - WARNING - Ambiguous date found: Date 06-11-2024. Using file creation date as tie-breaker.
2024-11-06 16:41:03,797 - __main__ - WARNING - Ambiguous date found: Date 06-11-2024. Using file creation date as tie-breaker.
2024-11-07 10:38:21,416 - __main__ - WARNING - Ambiguous date found: Date 07-11-2024. Using file creation date as tie-breaker.
2024-11-07 16:41:14,710 - __main__ - WARNING - Ambiguous date found: Date 07-11-2024. Using file creation date as tie-breaker.
2024-11-08 10:38:13,195 - __main__ - WARNING - Ambiguous date found: Date 08-11-2024. Using file creation date as tie-breaker.
2024-11-08 16:40:42,485 - __main__ - WARNING - Ambiguous date found: Date 08-11-2024. Using file creation date as tie-breaker.
2024-11-09 10:35:04,376 - __main__ - WARNING - Ambiguous date found: Date 08-11-2024. Using file creation date as tie-breaker.
2024-11-09 16:38:43,206 - __main__ - WARNING - Ambiguous date found: Date 08-11-2024. Using file creation date as tie-breaker.
2024-11-10 10:35:15,833 - __main__ - WARNING - Ambiguous date found: Date 08-11-2024. Using file creation date as tie-breaker.
2024-11-10 16:37:55,705 - __main__ - WARNING - Ambiguous date found: Date 08-11-2024. Using file creation date as tie-breaker.
2024-11-12 10:39:11,390 - __main__ - WARNING - Ambiguous date found: Date 12-11-2024. Using file creation date as tie-breaker.
2024-11-12 16:41:32,635 - __main__ - WARNING - Ambiguous date found: Date 12-11-2024. Using file creation date as tie-breaker.
2024-11-13 10:41:41,999 - __main__ - ERROR - Failed to download PDF from https://www.sbi.co.in/documents/16012/1400784/FOREX_CARD_RATES.pdf
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 174, in _new_conn
conn = connection.create_connection(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/util/connection.py", line 72, in create_connection
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/socket.py", line 967, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno -3] Temporary failure in name resolution
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 716, in urlopen
httplib_response = self._make_request(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 404, in _make_request
self._validate_conn(conn)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 1061, in _validate_conn
conn.connect()
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 363, in connect
self.sock = conn = self._new_conn()
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connection.py", line 186, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fd6fd78e890>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/adapters.py", line 564, in send
resp = conn.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 830, in urlopen
return self.urlopen(
[Previous line repeated 2 more times]
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/connectionpool.py", line 802, in urlopen
retries = retries.increment(
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/urllib3/util/retry.py", line 594, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='www.sbi.co.in', port=443): Max retries exceeded with url: /documents/16012/1400784/FOREX_CARD_RATES.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd6fd78e890>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 221, in get_latest_pdf_from_sbi
response = download_pdf(url, session)
File "/home/runner/work/sbi-fx-ratekeeper/sbi-fx-ratekeeper/main.py", line 211, in download_pdf
return session.get(url, timeout=10)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 602, in get
return self.request("GET", url, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
File "/opt/hostedtoolcache/Python/3.10.15/x64/lib/python3.10/site-packages/requests/adapters.py", line 597, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='www.sbi.co.in', port=443): Max retries exceeded with url: /documents/16012/1400784/FOREX_CARD_RATES.pdf (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd6fd78e890>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution'))