-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_acquisition.log
3558 lines (3408 loc) · 445 KB
/
data_acquisition.log
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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-08-03 18:50:16.491 | INFO | agents.data_acquisition_agent:run:137 - Starting Data Acquisition...
2024-08-03 18:50:16.491 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Tokenization...
2024-08-03 18:50:17.717 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for DLT...
2024-08-03 18:50:19.137 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for RWA...
2024-08-03 18:50:20.536 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Nature Based Credits...
2024-08-03 18:50:21.725 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Biodiversity...
2024-08-03 18:50:22.908 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for GreenBiz...
2024-08-03 18:50:24.267 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Green Earth...
2024-08-03 18:50:26.072 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Sustainable Brands...
2024-08-03 18:50:29.216 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Carbon Credits...
2024-08-03 18:50:31.613 | ERROR | agents.data_acquisition_agent:fetch_from_web:52 - Error fetching web page from Carbon Credits: 403 Client Error: Forbidden for url: https://carboncredits.com/
2024-08-03 18:50:31.614 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Triple Pundit...
2024-08-03 18:50:32.795 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for ESG Today...
2024-08-03 18:50:33.773 | ERROR | agents.data_acquisition_agent:fetch_from_web:52 - Error fetching web page from ESG Today: 403 Client Error: Forbidden for url: https://www.esgtoday.com/
2024-08-03 18:50:33.773 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for CoinDesk...
2024-08-03 18:50:36.650 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for Forbes...
2024-08-03 18:50:37.967 | ERROR | agents.data_acquisition_agent:fetch_full_article:121 - Error fetching full article from https://www.forbes.com/sites/segunolakoyenikan/2024/08/03/market-lessons-measuring-debt---with-16-cash-rich-companies/: Article `download()` failed with 403 Client Error: Max restarts limit reached for url: https://www.forbes.com/sites/segunolakoyenikan/2024/08/03/market-lessons-measuring-debt---with-16-cash-rich-companies/ on URL https://www.forbes.com/sites/segunolakoyenikan/2024/08/03/market-lessons-measuring-debt---with-16-cash-rich-companies/
2024-08-03 18:50:37.967 | INFO | agents.data_acquisition_agent:process_rss_entry:80 - Added new RSS article: Market Lessons: Measuring Debt---With 16 Cash-Rich Companies
2024-08-03 18:50:38.076 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for BusinessWire...
2024-08-03 18:50:38.904 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:23 - Fetching articles for PRWeb...
2024-08-03 18:50:42.540 | INFO | agents.data_acquisition_agent:run:144 - Data Acquisition completed.
2024-08-03 18:50:42.540 | INFO | __main__:main:10 - Waiting for 15 minutes before next run...
2024-08-03 18:54:45.371 | INFO | __main__:main:13 - Data Acquisition Agent stopped by user.
2024-08-03 20:34:09.850 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 20:34:09.853 | INFO | agents.data_acquisition_agent:initialize:148 - Data Acquisition Agent initialized.
2024-08-03 20:34:09.854 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for GreenBiz
2024-08-03 20:34:10.820 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:34:10.856 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:34:11.412 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 20:34:11.427 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 20:34:13.430 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Green Earth
2024-08-03 20:34:14.374 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:34:14.381 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:34:14.894 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.green.earth
2024-08-03 20:34:14.895 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.green.earth
2024-08-03 20:34:16.898 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Sustainable Brands
2024-08-03 20:34:17.682 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:34:17.706 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:34:19.642 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 20:34:19.643 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 20:34:21.644 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Carbon Credits
2024-08-03 20:34:22.798 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:34:22.819 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:34:25.597 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 20:34:25.598 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://carboncredits.com/
2024-08-03 20:34:27.600 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Triple Pundit
2024-08-03 20:34:28.159 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:34:28.170 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:34:28.524 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 20:34:28.525 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 20:34:30.526 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for ESG Today
2024-08-03 20:34:31.136 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:34:31.144 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:34:32.544 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 20:34:32.544 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 20:34:34.559 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for CoinDesk
2024-08-03 20:34:35.434 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:34:35.448 | ERROR | agents.data_acquisition_agent:fetch_from_rss:58 - Error processing RSS feed https://rss.app/feeds/YqqGCKRoUgtzQxse.xml: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?)]
[parameters: ('Crypto Exchange Bybit Withdraws From France in Response to Regulations', 'https://www.coindesk.com/policy/2024/08/02/crypto-exchange-bybit-withdraws-from-france-in-response-to-regulations/?utm_medium=referral&utm_source=rss&utm_campaign=headlines', 'CoinDesk', '2024-08-02 12:41:48.000000', '<div><img src="https://www.coindesk.com/resizer/zH9Dn8dE5xTbTgWEvz6veBxp6qY=/800x600/cloudfront-us-east-1.images.arcpublishing.com/coindesk/KMZVIGAVP ... (68 characters truncated) ... n Bybit\'s primary objective to operate our business in compliance with all relevant rules and regulations, the company said in its post.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:34:35.449 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 1 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:34:39.054 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 20:34:39.054 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 20:34:41.070 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Forbes
2024-08-03 20:34:41.944 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:34:41.975 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:34:44.977 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 20:34:44.977 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.forbes.com/
2024-08-03 20:34:46.989 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for BusinessWire
2024-08-03 20:34:57.431 | ERROR | agents.data_acquisition_agent:fetch_from_web:79 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 20:34:57.433 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 20:34:59.435 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for PRWeb
2024-08-03 20:35:00.272 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:35:00.303 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:35:02.725 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:35:02.727 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:35:04.729 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Tokenization
2024-08-03 20:35:05.504 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:35:05.505 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:35:07.506 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for DLT
2024-08-03 20:35:08.319 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:35:08.320 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:35:10.321 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for RWA
2024-08-03 20:35:12.272 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:35:12.273 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:35:14.275 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Nature Based Credits
2024-08-03 20:35:14.944 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:35:14.944 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:35:16.961 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Biodiversity
2024-08-03 20:35:18.136 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:35:18.137 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:35:20.139 | INFO | agents.data_acquisition_agent:save_scraped_data:142 - Saved scraped data to scraped_articles.json
2024-08-03 20:35:20.139 | INFO | agents.data_acquisition_agent:run:27 - Run completed. Fetched 1 articles in 70.29 seconds.
2024-08-03 20:35:20.139 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 20:35:20.139 | INFO | __main__:run_agent:12 - Starting Content Analysis Agent...
2024-08-03 20:35:20.139 | INFO | agents.content_analysis_agent:initialize:22 - Initializing Content Analysis Agent...
2024-08-03 20:35:20.139 | INFO | agents.content_analysis_agent:initialize:25 - Content Analysis Agent initialized.
2024-08-03 20:35:20.139 | INFO | agents.content_analysis_agent:run:28 - Starting content analysis...
2024-08-03 20:35:20.147 | ERROR | agents.content_analysis_agent:generate_summary:81 - Error generating summary:
You tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API.
You can run `openai migrate` to automatically upgrade your codebase to use the 1.0.0 interface.
Alternatively, you can pin your installation to the old version, e.g. `pip install openai==0.28`
A detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742
2024-08-03 20:35:20.147 | ERROR | agents.content_analysis_agent:extract_keywords:100 - Error extracting keywords:
You tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API.
You can run `openai migrate` to automatically upgrade your codebase to use the 1.0.0 interface.
Alternatively, you can pin your installation to the old version, e.g. `pip install openai==0.28`
A detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742
2024-08-03 20:35:20.147 | INFO | agents.content_analysis_agent:process_article:62 - Processed article: Crypto Exchange Bybit Withdraws From France in Response to Regulations
2024-08-03 20:35:20.147 | INFO | agents.content_analysis_agent:save_summarized_articles:107 - Saved summarized articles to summarized_articles.json
2024-08-03 20:35:20.147 | INFO | agents.content_analysis_agent:run:33 - Completed content analysis for 1 articles.
2024-08-03 20:35:20.147 | INFO | agents.content_analysis_agent:cleanup:112 - Content Analysis Agent cleanup completed.
2024-08-03 20:35:20.147 | INFO | __main__:run_agent:16 - Content Analysis Agent completed successfully.
2024-08-03 20:35:20.163 | INFO | __main__:run_agent:12 - Starting Reporting Agent...
2024-08-03 20:35:20.163 | INFO | agents.reporting_agent:initialize:104 - Reporting Agent initialized.
2024-08-03 20:35:20.163 | INFO | agents.reporting_agent:run:14 - Starting report generation...
2024-08-03 20:35:20.163 | INFO | agents.reporting_agent:save_report:77 - Saved articles_report to reports\articles_report_20240803_203520.json
2024-08-03 20:35:20.163 | INFO | agents.reporting_agent:run:16 - Report generation completed.
2024-08-03 20:35:20.179 | INFO | agents.reporting_agent:cleanup:107 - Reporting Agent cleanup completed.
2024-08-03 20:35:20.179 | INFO | __main__:run_agent:16 - Reporting Agent completed successfully.
2024-08-03 20:35:20.179 | INFO | __main__:main:36 - All agents completed. Waiting for 15.0 minutes before next run...
2024-08-03 20:36:59.144 | INFO | __main__:main:40 - Process interrupted by user. Exiting...
2024-08-03 20:40:41.958 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 20:40:41.959 | INFO | agents.data_acquisition_agent:initialize:151 - Data Acquisition Agent initialized.
2024-08-03 20:40:41.960 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for GreenBiz
2024-08-03 20:40:42.723 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:40:42.755 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:40:43.269 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 20:40:43.269 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 20:40:45.271 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Green Earth
2024-08-03 20:40:46.297 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:40:46.304 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:40:47.223 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.green.earth
2024-08-03 20:40:47.224 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.green.earth
2024-08-03 20:40:49.226 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Sustainable Brands
2024-08-03 20:40:50.540 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:40:50.561 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:40:52.448 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 20:40:52.449 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 20:40:54.452 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Carbon Credits
2024-08-03 20:40:55.292 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:40:55.318 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:40:58.090 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 20:40:58.091 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://carboncredits.com/
2024-08-03 20:41:00.093 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Triple Pundit
2024-08-03 20:41:00.630 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:41:00.643 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:41:01.215 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 20:41:01.216 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 20:41:03.218 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for ESG Today
2024-08-03 20:41:03.622 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:41:03.649 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:41:05.241 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 20:41:05.243 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 20:41:07.245 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for CoinDesk
2024-08-03 20:41:08.470 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:41:08.485 | ERROR | agents.data_acquisition_agent:fetch_from_rss:58 - Error processing RSS feed https://rss.app/feeds/YqqGCKRoUgtzQxse.xml: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?)]
[parameters: ('Crypto Exchange Bybit Withdraws From France in Response to Regulations', 'https://www.coindesk.com/policy/2024/08/02/crypto-exchange-bybit-withdraws-from-france-in-response-to-regulations/?utm_medium=referral&utm_source=rss&utm_campaign=headlines', 'CoinDesk', '2024-08-02 12:41:48.000000', '<div><img src="https://www.coindesk.com/resizer/zH9Dn8dE5xTbTgWEvz6veBxp6qY=/800x600/cloudfront-us-east-1.images.arcpublishing.com/coindesk/KMZVIGAVP ... (68 characters truncated) ... n Bybit\'s primary objective to operate our business in compliance with all relevant rules and regulations, the company said in its post.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:41:08.487 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 1 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:41:10.904 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 20:41:10.906 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 20:41:12.909 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Forbes
2024-08-03 20:41:14.350 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:41:14.381 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:41:14.522 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 20:41:14.522 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.forbes.com/
2024-08-03 20:41:16.533 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for BusinessWire
2024-08-03 20:41:26.980 | ERROR | agents.data_acquisition_agent:fetch_from_web:79 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 20:41:26.982 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 20:41:28.984 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for PRWeb
2024-08-03 20:41:29.676 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:41:29.700 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:41:33.822 | INFO | agents.data_acquisition_agent:fetch_from_web:70 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:41:33.822 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:41:35.830 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Tokenization
2024-08-03 20:41:37.019 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:41:37.020 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:41:39.022 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for DLT
2024-08-03 20:41:40.979 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:41:40.979 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:41:42.981 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for RWA
2024-08-03 20:41:44.452 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:41:44.456 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:41:46.458 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Nature Based Credits
2024-08-03 20:41:47.232 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:41:47.232 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:41:49.244 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:33 - Fetching articles for Biodiversity
2024-08-03 20:41:50.667 | INFO | agents.data_acquisition_agent:fetch_from_rss:49 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:41:50.668 | INFO | agents.data_acquisition_agent:fetch_from_rss:60 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:41:52.683 | INFO | agents.data_acquisition_agent:save_scraped_data:143 - Saved 1 articles to scraped_articles.json
2024-08-03 20:41:52.684 | INFO | agents.data_acquisition_agent:run:27 - Run completed. Fetched 1 articles in 70.72 seconds.
2024-08-03 20:41:52.685 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 20:41:52.725 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 20:41:52.726 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-03 20:50:13.303 | INFO | agents.data_acquisition_agent:load_existing_articles:32 - all_articles.json not found. Starting with empty list.
2024-08-03 20:50:13.303 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 20:50:13.303 | INFO | agents.data_acquisition_agent:initialize:162 - Data Acquisition Agent initialized.
2024-08-03 20:50:13.303 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-03 20:50:14.489 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:50:14.520 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:50:15.069 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 20:50:15.070 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 20:50:17.072 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-03 20:50:17.585 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:50:17.593 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:50:18.597 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-03 20:50:18.598 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-03 20:50:20.600 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-03 20:50:21.867 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:50:21.898 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:50:23.715 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 20:50:23.716 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 20:50:25.718 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-03 20:50:26.878 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:50:26.899 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:50:29.740 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 20:50:29.740 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-03 20:50:31.750 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-03 20:50:32.294 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:50:32.306 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:50:32.575 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 20:50:32.577 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 20:50:34.579 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-03 20:50:35.558 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:50:35.568 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:50:37.143 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 20:50:37.144 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 20:50:39.145 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-03 20:50:40.399 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:50:40.414 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/YqqGCKRoUgtzQxse.xml: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?)]
[parameters: ('Crypto Exchange Bybit Withdraws From France in Response to Regulations', 'https://www.coindesk.com/policy/2024/08/02/crypto-exchange-bybit-withdraws-from-france-in-response-to-regulations/?utm_medium=referral&utm_source=rss&utm_campaign=headlines', 'CoinDesk', '2024-08-02 12:41:48.000000', '<div><img src="https://www.coindesk.com/resizer/zH9Dn8dE5xTbTgWEvz6veBxp6qY=/800x600/cloudfront-us-east-1.images.arcpublishing.com/coindesk/KMZVIGAVP ... (68 characters truncated) ... n Bybit\'s primary objective to operate our business in compliance with all relevant rules and regulations, the company said in its post.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:50:40.414 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 1 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:50:41.137 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 20:50:41.137 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 20:50:43.144 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-03 20:50:44.052 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:50:44.068 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/AlOYwfMt50xeeAGX.xml: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?)]
[parameters: ('Olympics Chief Again Defends Imane Khelif—And Blasts ‘Cultural War’—As Boxer Prepares For Next Fight', 'https://www.forbes.com/sites/antoniopequenoiv/2024/08/03/olympics-chief-again-defends-imane-khelif-and-blasts-cultural-war-as-boxer-prepares-for-next-fight/', 'Forbes', '2024-08-03 15:08:27.000000', '<div><img src="https://imageio.forbes.com/specials-images/imageserve/66ae473af7781e18cfacb7e3/0x0.jpg?format=jpg&crop=3176,2119,x0,y0,safe&he ... (19 characters truncated) ... 1200&fit=bounds" style="width: 100%;" /><div>Khelif will earn a spot in the women’s 145-pound boxing semifinals if she wins Saturday.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:50:44.068 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 1 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:50:47.615 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 20:50:47.615 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-03 20:50:49.621 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-03 20:51:00.069 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 20:51:00.069 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 20:51:02.073 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-03 20:51:02.857 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:51:02.883 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:51:05.254 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:51:05.255 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:51:07.258 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-03 20:51:09.261 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:51:09.262 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:51:11.264 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-03 20:51:12.478 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:51:12.479 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:51:14.481 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-03 20:51:15.686 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:51:15.687 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:51:17.688 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-03 20:51:18.908 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:51:18.909 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:51:20.910 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-03 20:51:22.382 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:51:22.382 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:51:24.394 | INFO | agents.data_acquisition_agent:save_all_articles:156 - Saved 2 articles to all_articles.json
2024-08-03 20:51:24.395 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 2 new articles in 71.09 seconds.
2024-08-03 20:51:24.396 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 20:51:24.401 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 20:51:24.402 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-03 20:54:30.147 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 20:54:30.148 | INFO | agents.data_acquisition_agent:initialize:162 - Data Acquisition Agent initialized.
2024-08-03 20:54:30.149 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-03 20:54:31.350 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:54:31.375 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:54:31.697 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 20:54:31.698 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 20:54:33.700 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-03 20:54:34.613 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:54:34.618 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:54:35.974 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-03 20:54:35.974 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-03 20:54:37.990 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-03 20:54:39.171 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:54:39.198 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:54:41.022 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 20:54:41.022 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 20:54:43.025 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-03 20:54:43.693 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:54:43.724 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:54:48.919 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 20:54:48.919 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-03 20:54:50.958 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-03 20:54:51.543 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:54:51.574 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:54:52.118 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 20:54:52.119 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 20:54:54.122 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-03 20:54:55.027 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:54:55.040 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:54:56.475 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 20:54:56.475 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 20:54:58.478 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-03 20:54:59.270 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:54:59.293 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:55:04.919 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 20:55:04.921 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 20:55:06.923 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-03 20:55:07.765 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:55:07.795 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:55:07.884 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 20:55:07.886 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-03 20:55:09.888 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-03 20:55:20.315 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 20:55:20.316 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 20:55:22.318 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-03 20:55:23.138 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:55:23.189 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:55:27.257 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:55:27.257 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:55:29.268 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-03 20:55:30.731 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:55:30.732 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:55:32.734 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-03 20:55:33.997 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:55:33.997 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:55:36.001 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-03 20:55:36.718 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:55:36.718 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:55:38.729 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-03 20:55:40.169 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:55:40.169 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:55:42.183 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-03 20:55:43.652 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:55:43.653 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:55:45.654 | INFO | agents.data_acquisition_agent:save_all_articles:156 - Saved 2 articles to all_articles.json
2024-08-03 20:55:45.654 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 0 new articles in 75.51 seconds.
2024-08-03 20:55:45.654 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 20:55:45.659 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 20:55:45.659 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-03 20:56:15.803 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 20:56:15.803 | INFO | agents.data_acquisition_agent:initialize:161 - Data Acquisition Agent initialized.
2024-08-03 20:56:15.803 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-03 20:56:16.538 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:56:16.554 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('These fashion brands fail at emissions disclosures, industry watchdog finds', 'https://trellis.net/article/fashion-brands-fail-at-emissions-disclosures-industry-watchdog/', 'GreenBiz', '2024-08-01 12:01:00.000000', '<div><img src="https://trellis.net/wp-content/uploads/2024/07/saks_fifth_avenuev2.jpg" style="width: 100%;" /><div>Nearly a quarter of the biggest fashion businesses decline to share any information about decarbonization efforts. Check out who\'s staying mum.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:16.554 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 50 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 20:56:16.976 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 20:56:16.976 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 20:56:18.981 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-03 20:56:19.907 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:56:19.910 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/bovDvfqaIz2KoDdw.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('DGB Group', 'https://www.green.earth/projects/updates', 'Green Earth', '2024-08-02 12:00:00.000000', '<div><img src="https://www.green.earth/hubfs/updates%20from%20the%20projects.png" style="width: 100%;" /><div>Explore our project updates at DGB Grou ... (36 characters truncated) ... ocal communities through sustainable agriculture, reforestation, and cookstove projects. Join us in our mission for a sustainable future.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:19.911 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 10 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 20:56:21.243 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-03 20:56:21.245 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-03 20:56:23.247 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-03 20:56:23.990 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:56:23.990 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Sustainable Sailing Puts Its Sail-Recycling Process to Sweet, New Use', 'https://sustainablebrands.com/read/chemistry-materials-packaging/sustainable-sailing-recycling-sweet-use', 'Sustainable Brands', '2024-08-02 22:31:58.000000', '<div><img src="https://sb-web-assets.s3.amazonaws.com/production/50853/conversions/production-asset-thumb--sustainable-sailing-puts-its-sail-recyclin ... (131 characters truncated) ... tnering with the University of Edinburgh to use waste sails\nin the creation of high-value chemicals used in everyday products — even,...</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:24.006 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 50 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 20:56:27.047 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 20:56:27.049 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 20:56:29.050 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-03 20:56:29.740 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:56:29.755 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Is Apple Leading the Way in Tech and Sustainability? Q3 Results Beat Expectations', 'https://carboncredits.com/is-apple-leading-the-way-in-tech-and-sustainability-carbon-footprint-reduction-q3-results-beat-expectations/', 'Carbon Credits', '2024-08-02 17:06:46.000000', '<div><img src="https://carboncredits.b-cdn.net/wp-content/uploads/2024/08/iphone-1680360_1280-e1722610921940.jpg" style="width: 100%;" /><div>The top rated website for carbon credits, carbon markets, carbon offsets, carbon pricing, carbon news, esg investing, netzero and more.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:29.755 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 50 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 20:56:33.106 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 20:56:33.108 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-03 20:56:35.110 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-03 20:56:35.568 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:56:35.584 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/uZLwiQhErv8b4yEK.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Women Run Less Than 25% of Nonprofits: How Organizations Can Change That', 'https://www.triplepundit.com/story/2024/Nonprofits-leadership-gender-gap/807641', 'Triple Pundit', '2024-08-02 09:15:28.000000', '<div><img src="https://back.3blcdn.com/sites/default/files/styles/ratio_3_2/public/triplepundit/wide/Nonprofit%20Leadership%20Gender%20Gap.jpg?h=0367 ... (221 characters truncated) ... arches and transitions, DHR Global\'s Sara Garlick Lundberg shares how organizations can address the implicit biases preventing progress.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:35.584 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 23 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 20:56:35.819 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 20:56:35.819 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 20:56:37.833 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-03 20:56:38.264 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:56:38.268 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/K2enb0duBnv1BgXn.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Energy Transition Archives', 'https://www.esgtoday.com/category/esg-news/energy-transition/', 'ESG Today', '2024-07-26 13:48:46.000000', 'ESG investing news, analysis, research and information', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:38.269 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 19 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 20:56:39.710 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 20:56:39.711 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 20:56:41.713 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-03 20:56:43.029 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:56:43.029 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/YqqGCKRoUgtzQxse.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('On-Device Proofs Solve DePIN Verification Challenges', 'https://www.coindesk.com/opinion/2024/08/02/on-device-proofs-solve-depin-verification-challenges/', 'CoinDesk', '2024-08-02 21:27:54.000000', '<div><img src="https://www.coindesk.com/resizer/xmPPJaT5aZKsPs6qH0P7fJROIjQ=/1200x600/center/top/cloudfront-us-east-1.images.arcpublishing.com/coinde ... (170 characters truncated) ... e, performance, and location data while maintaining decentralization and privacy, argue NovaNet cofounders Wyatt Benno and Houman Shadab.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:43.029 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 49 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 20:56:44.404 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 20:56:44.405 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 20:56:46.406 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-03 20:56:47.116 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:56:47.122 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/AlOYwfMt50xeeAGX.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Market Lessons: Measuring Debt---With 16 Cash-Rich Companies', 'https://www.forbes.com/sites/segunolakoyenikan/2024/08/03/market-lessons-measuring-debt---with-16-cash-rich-companies/', 'Forbes', '2024-08-03 10:30:00.000000', '<div><img src="https://imageio.forbes.com/specials-images/imageserve/66abd26e0c78bfc47dfe3010/0x0.jpg?format=jpg&crop=1920,1080,x0,y0,safe&he ... (5 characters truncated) ... 600&width=1200&fit=bounds" style="width: 100%;" /><div>Debt to equity doesn’t mean much. What counts is debt to enterprise value.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:56:47.123 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 49 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 20:56:47.789 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 20:56:47.790 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-03 20:56:49.791 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-03 20:57:00.322 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 20:57:00.323 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 20:57:02.324 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-03 20:57:03.042 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:57:03.048 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/4zjgvZfHGaKwST6D.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('The Avalon Management Group Welcomes New Regional Vice President Leanne Beck, and Announces Opening of New Regional Office in Rancho Bernardo, CA.', 'https://www.prweb.com/releases/the-avalon-management-group-welcomes-new-regional-vice-president-leanne-beck-and-announces-opening-of-new-regional-office-in-rancho-bernardo-ca-302213257.html', 'PRWeb', '2024-08-03 11:30:00.000000', '<div><img src="https://mma.prnewswire.com/media/2474268/AvalonNewOffice.jpg?p=twitter" style="width: 100%;" /><div>/PRNewswire-PRWeb/ -- The Avalon Management Group, a leading property management firm headquartered in Canyon Lake, California, is excited to welcome Leanne...</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-03 20:57:03.049 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 50 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 20:57:05.785 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:57:05.787 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 20:57:07.789 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-03 20:57:08.475 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:57:08.475 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 20:57:10.491 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-03 20:57:11.176 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:57:11.177 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 20:57:13.178 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-03 20:57:14.600 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:57:14.601 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 20:57:16.602 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-03 20:57:17.826 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:57:17.827 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 20:57:19.827 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-03 20:57:20.491 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:57:20.491 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 20:57:22.519 | INFO | agents.data_acquisition_agent:save_all_articles:155 - Saved 352 articles to all_articles.json
2024-08-03 20:57:22.520 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 350 new articles in 66.72 seconds.
2024-08-03 20:57:22.521 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 20:57:22.523 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 20:57:22.525 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-03 21:02:22.526 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 21:02:22.526 | INFO | agents.data_acquisition_agent:initialize:161 - Data Acquisition Agent initialized.
2024-08-03 21:02:22.526 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-03 21:02:23.326 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 21:02:23.326 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 21:02:23.874 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 21:02:23.874 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 21:02:25.878 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-03 21:02:26.893 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 21:02:26.893 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 21:02:27.835 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-03 21:02:27.835 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-03 21:02:29.842 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-03 21:02:31.194 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 21:02:31.194 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 21:02:33.184 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 21:02:33.184 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 21:02:35.191 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-03 21:02:35.985 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 21:02:35.985 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 21:02:38.969 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 21:02:38.969 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-03 21:02:40.980 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-03 21:02:41.536 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 21:02:41.536 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 21:02:41.770 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 21:02:41.770 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 21:02:43.781 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-03 21:02:44.313 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 21:02:44.313 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 21:02:45.800 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 21:02:45.800 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 21:02:47.813 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-03 21:02:48.601 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 21:02:48.601 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 21:02:52.597 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 21:02:52.597 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 21:02:54.609 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-03 21:02:55.906 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 21:02:55.906 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 21:02:56.642 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 21:02:56.642 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-03 21:02:58.653 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-03 21:03:09.092 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 21:03:09.093 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 21:03:11.095 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-03 21:03:11.859 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 21:03:11.875 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 21:03:13.780 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 21:03:13.780 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 21:03:15.783 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-03 21:03:16.549 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 21:03:16.549 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 21:03:18.555 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-03 21:03:19.328 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 21:03:19.328 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 21:03:21.339 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-03 21:03:23.537 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 21:03:23.537 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 21:03:25.547 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-03 21:03:26.746 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 21:03:26.746 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 21:03:28.758 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-03 21:03:29.996 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 21:03:29.998 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 21:03:32.012 | INFO | agents.data_acquisition_agent:save_all_articles:155 - Saved 352 articles to all_articles.json
2024-08-03 21:03:32.012 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 0 new articles in 69.49 seconds.
2024-08-03 21:03:32.012 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 21:03:32.012 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 21:03:32.012 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-03 21:08:32.025 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 21:08:32.032 | INFO | agents.data_acquisition_agent:initialize:161 - Data Acquisition Agent initialized.
2024-08-03 21:08:32.032 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-03 21:08:33.467 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 21:08:33.467 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 21:08:33.999 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 21:08:33.999 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 21:08:36.004 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-03 21:08:37.194 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 21:08:37.194 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 21:08:38.212 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-03 21:08:38.212 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-03 21:08:40.228 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-03 21:08:41.094 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 21:08:41.094 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 21:08:42.971 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 21:08:42.971 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 21:08:44.987 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-03 21:08:45.982 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 21:08:45.982 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 21:08:49.108 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 21:08:49.108 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-03 21:08:51.118 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-03 21:08:51.786 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 21:08:51.786 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 21:08:52.506 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 21:08:52.506 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 21:08:54.511 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-03 21:08:55.031 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 21:08:55.031 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 21:08:56.565 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 21:08:56.581 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 21:08:58.584 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-03 21:09:00.048 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 21:09:00.048 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 21:09:02.129 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 21:09:02.129 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 21:09:04.134 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-03 21:09:05.140 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 21:09:05.140 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 21:09:05.859 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 21:09:05.859 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-03 21:09:07.870 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-03 21:09:18.208 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 21:09:18.208 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 21:09:20.212 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-03 21:09:21.071 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 21:09:21.087 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 21:09:24.214 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 21:09:24.214 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 21:09:26.225 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-03 21:09:27.220 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 21:09:27.220 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 21:09:29.235 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-03 21:09:30.189 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 21:09:30.189 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 21:09:32.200 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-03 21:09:33.191 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 21:09:33.191 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 21:09:35.208 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-03 21:09:36.757 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 21:09:36.757 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 21:09:38.771 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-03 21:09:40.170 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 21:09:40.170 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 21:09:42.189 | INFO | agents.data_acquisition_agent:save_all_articles:155 - Saved 352 articles to all_articles.json
2024-08-03 21:09:42.189 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 0 new articles in 70.16 seconds.
2024-08-03 21:09:42.189 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 21:09:42.189 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 21:09:42.189 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-03 21:14:42.198 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-03 21:14:42.198 | INFO | agents.data_acquisition_agent:initialize:161 - Data Acquisition Agent initialized.
2024-08-03 21:14:42.206 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-03 21:14:43.411 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 21:14:43.413 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-03 21:14:43.888 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-03 21:14:43.888 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-03 21:14:45.894 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-03 21:14:46.784 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 21:14:46.784 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-03 21:14:49.688 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-03 21:14:49.704 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-03 21:14:51.706 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-03 21:14:52.990 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 21:14:52.990 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-03 21:14:54.898 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-03 21:14:54.898 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-03 21:14:56.914 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-03 21:14:58.044 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 21:14:58.044 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-03 21:15:00.904 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-03 21:15:00.904 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-03 21:15:02.911 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-03 21:15:03.854 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 21:15:03.854 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-03 21:15:04.104 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-03 21:15:04.104 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-03 21:15:06.114 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-03 21:15:07.122 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 21:15:07.138 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-03 21:15:08.716 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-03 21:15:08.716 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-03 21:15:10.718 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-03 21:15:11.968 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 21:15:11.968 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-03 21:15:13.499 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-03 21:15:13.499 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-03 21:15:15.513 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-03 21:15:16.313 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 21:15:16.313 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-03 21:15:16.407 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-03 21:15:16.407 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-03 21:15:18.416 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-03 21:15:28.886 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-03 21:15:28.886 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-03 21:15:30.890 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-03 21:15:31.641 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 21:15:31.641 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-03 21:15:34.716 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 21:15:34.716 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-03 21:15:36.732 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-03 21:15:37.926 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 21:15:37.927 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-03 21:15:39.929 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-03 21:15:40.656 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 21:15:40.656 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-03 21:15:42.671 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-03 21:15:43.384 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 21:15:43.384 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-03 21:15:45.396 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-03 21:15:46.081 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 21:15:46.081 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-03 21:15:48.088 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-03 21:15:48.749 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 21:15:48.749 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-03 21:15:50.769 | INFO | agents.data_acquisition_agent:save_all_articles:155 - Saved 352 articles to all_articles.json
2024-08-03 21:15:50.769 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 0 new articles in 68.56 seconds.
2024-08-03 21:15:50.769 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-03 21:15:50.769 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-03 21:15:50.769 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-05 11:03:29.894 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-05 11:03:29.897 | INFO | agents.data_acquisition_agent:initialize:161 - Data Acquisition Agent initialized.
2024-08-05 11:03:29.899 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-05 11:03:30.835 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-05 11:03:30.840 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-05 11:03:31.415 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-05 11:03:31.417 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-05 11:03:33.422 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-05 11:03:34.170 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-05 11:03:34.173 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-05 11:03:32.705 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-05 11:03:32.707 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-05 11:03:34.710 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-05 11:03:36.161 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-05 11:03:36.161 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-05 11:03:38.907 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-05 11:03:38.909 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-05 11:03:40.912 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-05 11:03:42.126 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-05 11:03:42.142 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-05 11:03:45.544 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-05 11:03:45.546 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-05 11:03:47.550 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-05 11:03:48.636 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-05 11:03:48.644 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-05 11:03:49.119 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-05 11:03:49.119 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-05 11:03:51.128 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-05 11:03:51.733 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-05 11:03:51.736 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-05 11:03:53.471 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-05 11:03:53.471 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-05 11:03:55.482 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-05 11:03:56.831 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-05 11:03:56.839 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/YqqGCKRoUgtzQxse.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Ether Slides 20% as Trading Firm Moves $46M in ETH', 'https://www.coindesk.com/markets/2024/08/05/ether-slides-20-as-trading-firm-moves-46m-in-eth/?utm_medium=referral&utm_source=rss&utm_campaign=headlines', 'CoinDesk', '2024-08-05 05:02:41.000000', '<div><img src="https://www.coindesk.com/resizer/00b46AqQIuNTxOcVSzy5bzdNFjw=/800x600/cloudfront-us-east-1.images.arcpublishing.com/coindesk/27ZD7FXLO ... (33 characters truncated) ... th: 100%;" /><div>A wallet supposedly associated with Jump Trading moved 17,576 ETH to centralized exchanges, according to Spot On Chain.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-05 11:03:56.841 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 8 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-05 11:03:58.238 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-05 11:03:58.240 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-05 11:04:00.242 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-05 11:04:01.656 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-05 11:04:01.664 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/AlOYwfMt50xeeAGX.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('U.S. Runner Noah Lyles Wins 100 Meter Olympic Gold—By Just 0.005 Seconds', 'https://www.forbes.com/sites/mollybohannon/2024/08/04/us-runner-noah-lyles-wins-100-meter-olympic-gold-by-just-0005-seconds/', 'Forbes', '2024-08-04 20:25:53.000000', '<div><img src="https://imageio.forbes.com/specials-images/imageserve/66afe3b5b69f0094a4e876ae/0x0.jpg?format=jpg&height=600&width=1200&fit=bounds" style="width: 100%;" /><div>Noah Lyles became the first American man in 20 years to win gold in the 100 meter sprint on Sunday.</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-05 11:04:01.664 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 10 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-05 11:04:01.781 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-05 11:04:01.781 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-05 11:04:03.787 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-05 11:04:14.503 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-05 11:04:14.505 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-05 11:04:16.508 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-05 11:04:17.748 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-05 11:04:17.764 | ERROR | agents.data_acquisition_agent:fetch_from_rss:71 - Error processing RSS feed https://rss.app/feeds/4zjgvZfHGaKwST6D.xml: (sqlite3.OperationalError) table articles has no column named summary
[SQL: INSERT INTO articles (title, url, source, published_date, content, summary, keywords, processed) VALUES (?, ?, ?, ?, ?, ?, ?, ?) RETURNING id]
[parameters: ('Founder of One of the Most Successful Multi-Specialty Orthopaedic Medical Practices in America Shares his Secrets to Success', 'https://www.prweb.com/releases/founder-of-one-of-the-most-successful-multi-specialty-orthopaedic-medical-practices-in-america-shares-his-secrets-to-success-302202463.html', 'PRWeb', '2024-08-05 04:00:00.000000', '<div><img src="https://mma.prnewswire.com/media/2465444/857800HighRes.jpg?p=twitter" style="width: 100%;" /><div>/PRNewswire-PRWeb/ -- Over the course of his 25-year career, Robert A. Kayal, MD, FAAOS, FAAHKS has grown his orthopaedic practice from a small practice to a...</div></div>', None, None, 0)]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2024-08-05 11:04:17.764 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 16 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-05 11:04:25.513 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-05 11:04:25.514 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-05 11:04:27.518 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-05 11:04:28.834 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-05 11:04:28.837 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-05 11:04:30.839 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-05 11:04:32.632 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-05 11:04:32.634 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-05 11:04:34.637 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-05 11:04:36.001 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-05 11:04:36.003 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-05 11:04:38.005 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-05 11:04:39.382 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-05 11:04:39.384 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-05 11:04:41.386 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-05 11:04:43.393 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-05 11:04:43.395 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-05 11:04:45.434 | INFO | agents.data_acquisition_agent:save_all_articles:155 - Saved 386 articles to all_articles.json
2024-08-05 11:04:45.436 | INFO | agents.data_acquisition_agent:run:40 - Run completed. Fetched 34 new articles in 75.54 seconds.
2024-08-05 11:04:45.439 | INFO | __main__:run_agent:16 - Data Acquisition Agent completed successfully.
2024-08-05 11:04:45.447 | ERROR | __main__:main:43 - An error occurred:
**********************************************************************
Resource [93mstopwords[0m not found.
Please use the NLTK Downloader to obtain the resource:
[31m>>> import nltk
>>> nltk.download('stopwords')
[0m
For more information see: https://www.nltk.org/data.html
Attempted to load [93mcorpora/stopwords[0m
Searched in:
- 'C:\\Users\\SreeshaB/nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\share\\nltk_data'
- 'C:\\Users\\SreeshaB\\Desktop\\news agentic flow\\.venv\\lib\\nltk_data'
- 'C:\\Users\\SreeshaB\\AppData\\Roaming\\nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
**********************************************************************
2024-08-05 11:04:45.451 | INFO | __main__:main:44 - Retrying in 5.0 minutes...
2024-08-05 11:09:45.461 | INFO | __main__:run_agent:12 - Starting Data Acquisition Agent...
2024-08-05 11:09:45.463 | INFO | agents.data_acquisition_agent:initialize:161 - Data Acquisition Agent initialized.
2024-08-05 11:09:45.465 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for GreenBiz
2024-08-05 11:09:46.448 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-05 11:09:46.452 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/PfSPW1PZmIDrjC8u.xml
2024-08-05 11:09:47.011 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.greenbiz.com/
2024-08-05 11:09:47.013 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.greenbiz.com/
2024-08-05 11:09:49.017 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Green Earth
2024-08-05 11:09:49.907 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 10 entries from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-05 11:09:49.910 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/bovDvfqaIz2KoDdw.xml
2024-08-05 11:09:51.007 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.green.earth
2024-08-05 11:09:51.009 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.green.earth
2024-08-05 11:09:53.011 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Sustainable Brands
2024-08-05 11:09:53.886 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-05 11:09:53.891 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/qKjOEYXW4oEP6xYP.xml
2024-08-05 11:09:57.520 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://sustainablebrands.com/
2024-08-05 11:09:57.522 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://sustainablebrands.com/
2024-08-05 11:09:59.525 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Carbon Credits
2024-08-05 11:10:00.474 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-05 11:10:00.479 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/56HKOZAvi3Ym1tm7.xml
2024-08-05 11:10:04.633 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://carboncredits.com/
2024-08-05 11:10:04.636 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://carboncredits.com/
2024-08-05 11:10:06.640 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Triple Pundit
2024-08-05 11:10:07.210 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 23 entries from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-05 11:10:07.213 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/uZLwiQhErv8b4yEK.xml
2024-08-05 11:10:07.542 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.triplepundit.com/
2024-08-05 11:10:07.545 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.triplepundit.com/
2024-08-05 11:10:09.548 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for ESG Today
2024-08-05 11:10:10.049 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 19 entries from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-05 11:10:10.052 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/K2enb0duBnv1BgXn.xml
2024-08-05 11:10:11.809 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.esgtoday.com/
2024-08-05 11:10:11.811 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.esgtoday.com/
2024-08-05 11:10:13.814 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for CoinDesk
2024-08-05 11:10:14.602 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-05 11:10:14.608 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/YqqGCKRoUgtzQxse.xml
2024-08-05 11:10:17.525 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.coindesk.com/
2024-08-05 11:10:17.527 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.coindesk.com/
2024-08-05 11:10:19.531 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Forbes
2024-08-05 11:10:20.444 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-05 11:10:20.449 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/AlOYwfMt50xeeAGX.xml
2024-08-05 11:10:20.713 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.forbes.com/
2024-08-05 11:10:20.715 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.forbes.com/
2024-08-05 11:10:22.719 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for BusinessWire
2024-08-05 11:10:33.107 | ERROR | agents.data_acquisition_agent:fetch_from_web:92 - Network error fetching https://www.businesswire.com/portal/site/home/news/: HTTPSConnectionPool(host='www.businesswire.com', port=443): Read timed out. (read timeout=10)
2024-08-05 11:10:33.109 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.businesswire.com/portal/site/home/news/
2024-08-05 11:10:35.112 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for PRWeb
2024-08-05 11:10:35.901 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 50 entries from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-05 11:10:35.907 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/feeds/4zjgvZfHGaKwST6D.xml
2024-08-05 11:10:38.726 | INFO | agents.data_acquisition_agent:fetch_from_web:83 - Extracted 0 articles from https://www.prweb.com/releases/news-releases-list/
2024-08-05 11:10:38.728 | INFO | agents.data_acquisition_agent:fetch_from_web:96 - Added 0 new articles from https://www.prweb.com/releases/news-releases-list/
2024-08-05 11:10:40.731 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Tokenization
2024-08-05 11:10:42.101 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-05 11:10:42.103 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Tokenization®ion=US&lang=en
2024-08-05 11:10:44.106 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for DLT
2024-08-05 11:10:44.970 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-05 11:10:44.973 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=DLT®ion=US&lang=en
2024-08-05 11:10:46.975 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for RWA
2024-08-05 11:10:49.165 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-05 11:10:49.168 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=RWA®ion=US&lang=en
2024-08-05 11:10:51.170 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Nature Based Credits
2024-08-05 11:10:52.034 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-05 11:10:52.037 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Nature%20Based%20Credits®ion=US&lang=en
2024-08-05 11:10:54.039 | INFO | agents.data_acquisition_agent:fetch_and_store_articles:46 - Fetching articles for Biodiversity
2024-08-05 11:10:55.413 | INFO | agents.data_acquisition_agent:fetch_from_rss:62 - Fetched 0 entries from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-05 11:10:55.415 | INFO | agents.data_acquisition_agent:fetch_from_rss:73 - Added 0 new articles from https://rss.app/rss-feed?keyword=Biodiversity®ion=US&lang=en
2024-08-05 11:10:57.445 | INFO | agents.data_acquisition_agent:save_all_articles:155 - Saved 386 articles to all_articles.json