-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
atom.xml
10862 lines (9587 loc) · 443 KB
/
atom.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en">
<id>https://github.com/mahmoud/awesome-python-applications</id>
<title type="text">Awesome Python Applications</title>
<subtitle type="text">The newest additions to the Awesome Python Applications list.</subtitle>
<link rel="alternate" type="text/html" href="https://github.com/mahmoud/awesome-python-applications" />
<link rel="self" type="application/atom+xml" href="https://raw.githubusercontent.com/mahmoud/awesome-python-applications/master/atom.xml" />
<updated>2024-11-25T17:20:11Z</updated>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<rights type="html">CC-BY-SA unless otherwise noted</rights>
<generator uri="https://github.com/mahmoud/apatite">Apatite 19.0</generator>
<entry>
<id>https://github.com/paul-gauthier/aider</id>
<title>aider</title>
<link rel="alternate" type="text/html" href="https://github.com/paul-gauthier/aider" />
<published>2024-06-29T09:36:00Z</published>
<updated>2024-06-29T09:36:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/paul-gauthier/aider">aider</a></strong>: Console-based LLM pair programming tool, to edit code in your local git repository.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/paul-gauthier/aider'>Repo</a></li>
<li><a href='https://aider.chat/'>Home</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/napari/napari</id>
<title>napari</title>
<link rel="alternate" type="text/html" href="https://github.com/napari/napari" />
<published>2024-06-29T09:15:00Z</published>
<updated>2024-06-29T09:15:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/napari/napari">napari</a></strong>: A fast, interactive, multi-dimensional image viewer for annotation and analysis of large images.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/napari/napari'>Repo</a></li>
<li><a href='https://napari.org/'>Home</a></li>
<li><a href='https://numfocus.org/donate-to-napari'>Fund</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/makeplane/plane</id>
<title>Plane</title>
<link rel="alternate" type="text/html" href="https://github.com/makeplane/plane" />
<published>2024-06-29T09:11:00Z</published>
<updated>2024-06-29T09:11:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/makeplane/plane">Plane</a></strong>: Modern, self-hostable issue and product roadmap tracker. An alternative to JIRA, Linear, and Asana.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/makeplane/plane'>Repo</a></li>
<li><a href='https://plane.so/'>Home</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/ajslater/codex</id>
<title>Codex</title>
<link rel="alternate" type="text/html" href="https://github.com/ajslater/codex" />
<published>2024-06-29T08:59:00Z</published>
<updated>2024-06-29T08:59:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/ajslater/codex">Codex</a></strong>: Self-hostable comic archive browser and reader.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/ajslater/codex'>Repo</a></li>
<li><a href='https://codex.sl8r.net/r/0/1'>Demo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://gitlab.com/duplicity/duplicity</id>
<title>Duplicity</title>
<link rel="alternate" type="text/html" href="https://gitlab.com/duplicity/duplicity" />
<published>2024-01-30T10:42:00Z</published>
<updated>2024-01-30T10:42:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://gitlab.com/duplicity/duplicity">Duplicity</a></strong>: Encrypted bandwidth-efficient backup tool, using the rsync algorithm.</p>
<p>Links:</p>
<ul>
<li><a href='https://gitlab.com/duplicity/duplicity'>Repo</a></li>
<li><a href='https://duplicity.us/'>Home</a></li>
<li><a href='https://duplicity.us/docs.html'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/aimhubio/aim</id>
<title>Aim</title>
<link rel="alternate" type="text/html" href="https://github.com/aimhubio/aim" />
<published>2024-01-27T12:55:00Z</published>
<updated>2024-01-27T12:55:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/aimhubio/aim">Aim</a></strong>: Aim is a self-hostable machine learning experiment tracker designed to handle 10,000s of training runs.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/aimhubio/aim'>Repo</a></li>
<li><a href='https://aimstack.io/'>Home</a></li>
<li><a href='https://aimstack.io/blog'>Blog</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/idank/explainshell</id>
<title>explainshell.com</title>
<link rel="alternate" type="text/html" href="https://github.com/idank/explainshell" />
<published>2024-01-27T12:55:00Z</published>
<updated>2024-01-27T12:55:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/idank/explainshell">explainshell.com</a></strong>: A web-based tool to match command-line arguments to their man pages and help text.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/idank/explainshell'>Repo</a></li>
<li><a href='https://www.explainshell.com/'>Home</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/liberapay/liberapay.com</id>
<title>liberapay.com</title>
<link rel="alternate" type="text/html" href="https://github.com/liberapay/liberapay.com" />
<published>2024-01-27T12:49:00Z</published>
<updated>2024-01-27T12:49:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/liberapay/liberapay.com">liberapay.com</a></strong>: A recurrent donations platform, formerly known as gittip and gratipay.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/liberapay/liberapay.com'>Repo</a></li>
<li><a href='https://liberapay.com/'>Home</a></li>
<li><a href='https://en.wikipedia.org/wiki/Liberapay'>WP</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/mathesar-foundation/mathesar</id>
<title>Mathesar</title>
<link rel="alternate" type="text/html" href="https://github.com/mathesar-foundation/mathesar" />
<published>2024-01-27T12:43:00Z</published>
<updated>2024-01-27T12:43:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/mathesar-foundation/mathesar">Mathesar</a></strong>: Self-hostable web application which provides a spreadsheet-like interface to a PostgreSQL database, enabling users of all technical skill levels to design data models, enter data, and build reports.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/mathesar-foundation/mathesar'>Repo</a></li>
<li><a href='https://mathesar.org/?ref=awesome-python-applications'>Home</a></li>
<li><a href='https://demo.mathesar.org/'>Demo</a></li>
<li><a href='https://mathesar.org/sponsor.html'>Fund</a></li>
<li><a href='https://docs.mathesar.org/'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/Netflix/dispatch</id>
<title>Dispatch</title>
<link rel="alternate" type="text/html" href="https://github.com/Netflix/dispatch" />
<published>2024-01-27T12:37:00Z</published>
<updated>2024-01-27T12:37:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/Netflix/dispatch">Dispatch</a></strong>: Incident management service featuring integrations for notifications and task management. Used at Netflix.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/Netflix/dispatch'>Repo</a></li>
<li><a href='https://netflixtechblog.com/introducing-dispatch-da4b8a2a8072'>Blog</a></li>
<li><a href='https://netflix.github.io/dispatch'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/mealie-recipes/mealie</id>
<title>Mealie</title>
<link rel="alternate" type="text/html" href="https://github.com/mealie-recipes/mealie" />
<published>2024-01-27T12:31:00Z</published>
<updated>2024-01-27T12:31:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/mealie-recipes/mealie">Mealie</a></strong>: Self-hostable recipe management server with rich user interface and automatic backups.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/mealie-recipes/mealie'>Repo</a></li>
<li><a href='https://mealie.io/'>Home</a></li>
<li><a href='https://demo.mealie.io/login'>Demo</a></li>
<li><a href='https://github.com/sponsors/hay-kot'>Fund</a></li>
<li><a href='https://nightly.mealie.io/'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/fossasia/open-event-server</id>
<title>Open Event Server</title>
<link rel="alternate" type="text/html" href="https://github.com/fossasia/open-event-server" />
<published>2024-01-27T12:25:00Z</published>
<updated>2024-01-27T12:25:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/fossasia/open-event-server">Open Event Server</a></strong>: Enable event organizers to manage events from meetups to concerts to conferences, with support for multiple tracks and venues. Used by [FOSSASIA](https://fossasia.org/) and [eventyay](https://eventyay.com/).</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/fossasia/open-event-server'>Repo</a></li>
<li><a href='https://api.eventyay.com/'>Demo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/pdfarranger/pdfarranger</id>
<title>PDF Arranger</title>
<link rel="alternate" type="text/html" href="https://github.com/pdfarranger/pdfarranger" />
<published>2024-01-27T12:18:00Z</published>
<updated>2024-01-27T12:18:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/pdfarranger/pdfarranger">PDF Arranger</a></strong>: Merge and split PDF documents, as well as crop and rearrange pages.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/pdfarranger/pdfarranger'>Repo</a></li>
<li><a href='https://snapcraft.io/pdfarranger'>Snap</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/Tautulli/Tautulli</id>
<title>Tautulli</title>
<link rel="alternate" type="text/html" href="https://github.com/Tautulli/Tautulli" />
<published>2024-01-27T12:14:00Z</published>
<updated>2024-01-27T12:14:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/Tautulli/Tautulli">Tautulli</a></strong>: Web monitor for Plex Media Server.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/Tautulli/Tautulli'>Repo</a></li>
<li><a href='https://tautulli.com/'>Home</a></li>
<li><a href='https://www.patreon.com/Tautulli'>Fund</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/Yelp/detect-secrets</id>
<title>detect-secrets</title>
<link rel="alternate" type="text/html" href="https://github.com/Yelp/detect-secrets" />
<published>2023-03-30T18:10:00Z</published>
<updated>2023-03-30T18:10:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/Yelp/detect-secrets">detect-secrets</a></strong>: An enterprise-friendly CLI for auditing, detecting, and preventing secrets in code.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/Yelp/detect-secrets'>Repo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/pre-commit/pre-commit</id>
<title>pre-commit</title>
<link rel="alternate" type="text/html" href="https://github.com/pre-commit/pre-commit" />
<published>2023-03-30T15:52:00Z</published>
<updated>2023-03-30T15:52:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/pre-commit/pre-commit">pre-commit</a></strong>: A framework for managing and maintaining multi-language git hooks.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/pre-commit/pre-commit'>Repo</a></li>
<li><a href='https://pre-commit.com/'>Home</a></li>
<li><a href='https://pypi.org/project/pre-commit'>PyPI</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/stargatedaw/stargate</id>
<title>Stargate DAW</title>
<link rel="alternate" type="text/html" href="https://github.com/stargatedaw/stargate" />
<published>2023-03-27T23:03:00Z</published>
<updated>2023-03-27T23:03:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/stargatedaw/stargate">Stargate DAW</a></strong>: All-in-one Digital Audio Workstation (DAW) with a suite of instrument and effect plugins.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/stargatedaw/stargate'>Repo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://gitlab.com/fedstoa/moa</id>
<title>Moa Bridge</title>
<link rel="alternate" type="text/html" href="https://gitlab.com/fedstoa/moa" />
<published>2023-01-26T17:04:00Z</published>
<updated>2023-01-26T17:04:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://gitlab.com/fedstoa/moa">Moa Bridge</a></strong>: A service to cross post [Mastodon](https://github.com/mastodon/mastodon) toots to Twitter and Instagram.</p>
<p>Links:</p>
<ul>
<li><a href='https://gitlab.com/fedstoa/moa'>Repo</a></li>
<li><a href='https://moa.party/'>Home</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/ocrmypdf/ocrmypdf</id>
<title>OCRmyPDF</title>
<link rel="alternate" type="text/html" href="https://github.com/ocrmypdf/ocrmypdf" />
<published>2022-07-09T22:44:00Z</published>
<updated>2022-07-09T22:44:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/ocrmypdf/ocrmypdf">OCRmyPDF</a></strong>: Adds an OCR text layer to scanned PDF files, enabling text search and selection.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/ocrmypdf/ocrmypdf'>Repo</a></li>
<li><a href='https://opencollective.com/james-barlow'>Fund</a></li>
<li><a href='https://snapcraft.io/ocrmypdf'>Snap</a></li>
<li><a href='http://ocrmypdf.readthedocs.io/'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/PostHog/posthog</id>
<title>PostHog</title>
<link rel="alternate" type="text/html" href="https://github.com/PostHog/posthog" />
<published>2022-07-09T14:09:00Z</published>
<updated>2022-07-09T14:09:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/PostHog/posthog">PostHog</a></strong>: Self-hostable product analytics for tracking events, visualizing funnels, and much more.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/PostHog/posthog'>Repo</a></li>
<li><a href='https://posthog.com/'>Home</a></li>
<li><a href='https://posthog.com/docs'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/grafana/oncall</id>
<title>Grafana OnCall</title>
<link rel="alternate" type="text/html" href="https://github.com/grafana/oncall" />
<published>2022-07-09T14:03:00Z</published>
<updated>2022-07-09T14:03:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/grafana/oncall">Grafana OnCall</a></strong>: Developer-friendly incident response with brilliant Slack integration, with a PagerDuty migration path.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/grafana/oncall'>Repo</a></li>
<li><a href='https://grafana.com/docs/grafana-cloud/oncall/open-source'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/sqlfluff/sqlfluff</id>
<title>SQLFluff</title>
<link rel="alternate" type="text/html" href="https://github.com/sqlfluff/sqlfluff" />
<published>2021-10-10T22:07:00Z</published>
<updated>2021-10-10T22:07:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/sqlfluff/sqlfluff">SQLFluff</a></strong>: Dialect-flexible and configurable SQL linter, designed with ELT applications in mind, with support for templating and autofixing errors.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/sqlfluff/sqlfluff'>Repo</a></li>
<li><a href='https://www.sqlfluff.com/'>Home</a></li>
<li><a href='https://flattr.com/github/alanmcruickshank'>Fund</a></li>
<li><a href='https://pypi.org/project/sqlfluff'>PyPI</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/bookwyrm-social/bookwyrm</id>
<title>Bookwyrm</title>
<link rel="alternate" type="text/html" href="https://github.com/bookwyrm-social/bookwyrm" />
<published>2021-09-10T19:51:00Z</published>
<updated>2021-09-10T19:51:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/bookwyrm-social/bookwyrm">Bookwyrm</a></strong>: Social reading and reviewing, decentralized with ActivityPub.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/bookwyrm-social/bookwyrm'>Repo</a></li>
<li><a href='https://bookwyrm.social/'>Home</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://gitlab.com/bramw/baserow</id>
<title>Baserow</title>
<link rel="alternate" type="text/html" href="https://gitlab.com/bramw/baserow" />
<published>2021-04-13T22:17:00Z</published>
<updated>2021-04-13T22:17:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://gitlab.com/bramw/baserow">Baserow</a></strong>: Web-based no-code persistence platform, like a database meets a spreadsheet, with a REST API.</p>
<p>Links:</p>
<ul>
<li><a href='https://gitlab.com/bramw/baserow'>Repo</a></li>
<li><a href='https://baserow.io/'>Home</a></li>
<li><a href='https://github.com/bram2w/baserow'>gh</a></li>
<li><a href='https://baserow.io/docs'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/ajenti/ajenti</id>
<title>Ajenti</title>
<link rel="alternate" type="text/html" href="https://github.com/ajenti/ajenti" />
<published>2020-11-22T00:26:00Z</published>
<updated>2020-11-22T00:26:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/ajenti/ajenti">Ajenti</a></strong>: Web-base server admin panel for fast, extensible remote access, featuring a web terminal, text editor, file manager, and more.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/ajenti/ajenti'>Repo</a></li>
<li><a href='https://ajenti.org/'>Home</a></li>
<li><a href='https://pypi.org/project/ajenti-panel'>PyPI</a></li>
<li><a href='http://docs.ajenti.org/en/latest'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/docker/compose</id>
<title>Docker Compose</title>
<link rel="alternate" type="text/html" href="https://github.com/docker/compose" />
<published>2020-11-21T16:41:00Z</published>
<updated>2020-11-21T16:41:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/docker/compose">Docker Compose</a></strong>: Docker Compose is a tool for defining and running multi-container Docker applications.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/docker/compose'>Repo</a></li>
<li><a href='https://docs.docker.com/compose'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/spack/spack</id>
<title>Spack</title>
<link rel="alternate" type="text/html" href="https://github.com/spack/spack" />
<published>2020-10-11T00:06:00Z</published>
<updated>2020-10-11T00:06:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/spack/spack">Spack</a></strong>: Language-independent package manager for supercomputers, Mac, and Linux, designed for scientific computing.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/spack/spack'>Repo</a></li>
<li><a href='https://spack.io/'>Home</a></li>
<li><a href='https://spack.readthedocs.io/en/latest'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/galaxyproject/galaxy</id>
<title>Galaxy</title>
<link rel="alternate" type="text/html" href="https://github.com/galaxyproject/galaxy" />
<published>2020-10-10T23:41:00Z</published>
<updated>2020-10-10T23:41:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/galaxyproject/galaxy">Galaxy</a></strong>: Web-based platform for reproducible and transparent computational research, with a focus on bioinformatics.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/galaxyproject/galaxy'>Repo</a></li>
<li><a href='https://galaxyproject.org/'>Home</a></li>
<li><a href='https://galaxyproject.org/docs'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/buffer/thug</id>
<title>Thug</title>
<link rel="alternate" type="text/html" href="https://github.com/buffer/thug" />
<published>2020-08-24T12:02:00Z</published>
<updated>2020-08-24T12:02:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/buffer/thug">Thug</a></strong>: Low-interaction honeyclient designed to mimic the behavior of a web browser in order to detect and emulate malicious contents.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/buffer/thug'>Repo</a></li>
<li><a href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XTDF8AHJ28CXY'>Fund</a></li>
<li><a href='https://pypi.org/project/thug'>PyPI</a></li>
<li><a href='https://thug-honeyclient.readthedocs.io/en/latest'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/citronneur/rdpy</id>
<title>RDPY</title>
<link rel="alternate" type="text/html" href="https://github.com/citronneur/rdpy" />
<published>2020-08-24T11:37:00Z</published>
<updated>2020-08-24T11:37:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/citronneur/rdpy">RDPY</a></strong>: An implementation of the Microsoft Remote Desktop Protocol built on Twisted, including applications for client use, MITM proxy, and Honeypot server.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/citronneur/rdpy'>Repo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/spacesiren/spacesiren</id>
<title>SpaceSiren</title>
<link rel="alternate" type="text/html" href="https://github.com/spacesiren/spacesiren" />
<published>2020-08-24T11:24:00Z</published>
<updated>2020-08-24T11:24:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/spacesiren/spacesiren">SpaceSiren</a></strong>: Honeypot management and alert system for AWS tokens, with a fully serverless architecture.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/spacesiren/spacesiren'>Repo</a></li>
<li><a href='https://github.com/spacesiren/spacesiren/blob/master/docs/getting-started.md'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/jarun/buku</id>
<title>buku</title>
<link rel="alternate" type="text/html" href="https://github.com/jarun/buku" />
<published>2020-08-04T00:15:00Z</published>
<updated>2020-08-04T00:15:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/jarun/buku">buku</a></strong>: Browser-independent bookmark manager with CLI and web server frontends, with integrations for browsers, cloud-based bookmark managers, and emacs.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/jarun/buku'>Repo</a></li>
<li><a href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMLTQ76JSXJ4Q'>Fund</a></li>
<li><a href='https://github.com/jarun/buku/wiki'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/dbcli/mycli</id>
<title>mycli</title>
<link rel="alternate" type="text/html" href="https://github.com/dbcli/mycli" />
<published>2020-04-11T01:53:00Z</published>
<updated>2020-04-11T01:53:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/dbcli/mycli">mycli</a></strong>: Interactive MySQL client that does auto-completion and syntax highlighting.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/dbcli/mycli'>Repo</a></li>
<li><a href='https://www.mycli.net/'>Home</a></li>
<li><a href='https://pypi.python.org/pypi/mycli'>PyPI</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/freelawproject/courtlistener</id>
<title>CourtListener</title>
<link rel="alternate" type="text/html" href="https://github.com/freelawproject/courtlistener" />
<published>2020-04-04T23:59:00Z</published>
<updated>2020-04-04T23:59:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/freelawproject/courtlistener">CourtListener</a></strong>: Web application which provides a graph-based search interface and API with 900,000 minutes of oral argument recordings, more than eight thousand judges, and more than three million opinions. Also powers [RECAP search](https://www.courtlistener.com/recap/).</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/freelawproject/courtlistener'>Repo</a></li>
<li><a href='https://www.courtlistener.com/'>Home</a></li>
<li><a href='https://en.wikipedia.org/wiki/Free_Law_Project'>WP</a></li>
<li><a href='https://free.law/donate'>Fund</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/kevoreilly/CAPEv2</id>
<title>CAPEv2</title>
<link rel="alternate" type="text/html" href="https://github.com/kevoreilly/CAPEv2" />
<published>2020-03-17T01:20:00Z</published>
<updated>2020-03-17T01:20:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/kevoreilly/CAPEv2">CAPEv2</a></strong>: Web application designed to automate malware analysis, with a goal of extracting payloads and configuration from uploaded artifacts.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/kevoreilly/CAPEv2'>Repo</a></li>
<li><a href='https://www.capesandbox.com/'>Demo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/ChrisKnott/Algojammer</id>
<title>Algojammer</title>
<link rel="alternate" type="text/html" href="https://github.com/ChrisKnott/Algojammer" />
<published>2020-01-28T09:50:00Z</published>
<updated>2020-01-28T09:50:00Z</updated>
<category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/ChrisKnott/Algojammer">Algojammer</a></strong>: An experimental, proof-of-concept IDE to assist with algorithm-writing in a competition setting.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/ChrisKnott/Algojammer'>Repo</a></li>
<li><a href='https://www.youtube.com/watch?v=9XPE4uT0AdE'>Demo</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/lanmaster53/recon-ng</id>
<title>Recon-ng</title>
<link rel="alternate" type="text/html" href="https://github.com/lanmaster53/recon-ng" />
<published>2020-01-13T18:22:00Z</published>
<updated>2020-01-13T18:22:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/lanmaster53/recon-ng">Recon-ng</a></strong>: Recon-ng is a full-featured reconnaissance framework providing a powerful environment to conduct open source web-based reconnaissance quickly and thoroughly.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/lanmaster53/recon-ng'>Repo</a></li>
<li><a href='https://github.com/lanmaster53/recon-ng'>Home</a></li>
<li><a href='https://github.com/lanmaster53/recon-ng/wiki'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/CTFd/CTFd</id>
<title>CTFd</title>
<link rel="alternate" type="text/html" href="https://github.com/CTFd/CTFd" />
<published>2020-01-12T03:28:00Z</published>
<updated>2020-01-12T03:28:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://github.com/CTFd/CTFd">CTFd</a></strong>: CTFd is a Capture The Flag framework focusing on ease of use and customizability. It comes with everything you need to run a CTF and it's easy to customize with plugins and themes.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/CTFd/CTFd'>Repo</a></li>
<li><a href='https://ctfd.io/'>Home</a></li>
<li><a href='https://github.com/CTFd/CTFd/wiki'>Docs</a></li>
</ul>
</div>
</content>
<author>
<name>Awesome Python Applications contributors</name>
<uri>https://github.com/mahmoud/awesome-python-applications</uri>
</author>
</entry>
<entry>
<id>https://github.com/bugy/script-server</id>
<title>Script Server</title>
<link rel="alternate" type="text/html" href="https://github.com/bugy/script-server" />
<published>2020-01-07T22:48:00Z</published>
<updated>2020-01-07T22:48:00Z</updated>