forked from mahmoud/awesome-python-applications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
9314 lines (8216 loc) · 378 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>2019-10-10T20:07:00Z</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/jhpyle/docassemble</id>
<title>Docassemble</title>
<link rel="alternate" type="text/html" href="https://github.com/jhpyle/docassemble" />
<published>2019-10-10T13:06:00Z</published>
<updated>2019-10-10T13:06: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/jhpyle/docassemble">Docassemble</a></strong>: Platform for creating mobile-friendly web-based interviews, collecting responses, and much more.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/jhpyle/docassemble'>Repo</a></li>
<li><a href='https://docassemble.org/'>Home</a></li>
<li><a href='https://docassemble.org/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/grow/grow</id>
<title>Grow</title>
<link rel="alternate" type="text/html" href="https://github.com/grow/grow" />
<published>2019-10-10T12:59:00Z</published>
<updated>2019-10-10T12:59: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/grow/grow">Grow</a></strong>: Static site generator optimized for building interactive, localized microsites, with a focus on workflow and maintainability.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/grow/grow'>Repo</a></li>
<li><a href='https://grow.io/'>Home</a></li>
<li><a href='https://pypi.org/project/grow'>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://gitlab.com/remram44/taguette</id>
<title>Taguette</title>
<link rel="alternate" type="text/html" href="https://gitlab.com/remram44/taguette" />
<published>2019-10-10T12:43:00Z</published>
<updated>2019-10-10T12:43:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://gitlab.com/remram44/taguette">Taguette</a></strong>: Web-based qualitative research tool supporting importing, tagging, highlighting, and exporting many document formats.</p>
<p>Links:</p>
<ul>
<li><a href='https://gitlab.com/remram44/taguette'>Repo</a></li>
<li><a href='https://www.taguette.org/'>Home</a></li>
<li><a href='https://github.com/remram44/taguette'>gh</a></li>
<li><a href='https://pypi.org/project/taguette'>PyPI</a></li>
<li><a href='https://www.taguette.org/getting-started.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://gitlab.gnome.org/Infrastructure/extensions-web</id>
<title>SweetTooth Web</title>
<link rel="alternate" type="text/html" href="https://gitlab.gnome.org/Infrastructure/extensions-web" />
<published>2019-10-10T12:29:00Z</published>
<updated>2019-10-10T12:29:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://gitlab.gnome.org/Infrastructure/extensions-web">SweetTooth Web</a></strong>: The web store for extensions to the [GNOME](https://en.wikipedia.org/wiki/GNOME) desktop environment, supporting adding and updating extensions directly from the browser.</p>
<p>Links:</p>
<ul>
<li><a href='https://gitlab.gnome.org/Infrastructure/extensions-web'>Repo</a></li>
<li><a href='https://extensions.gnome.org/'>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/conan-io/conan</id>
<title>Conan</title>
<link rel="alternate" type="text/html" href="https://github.com/conan-io/conan" />
<published>2019-10-10T10:00:00Z</published>
<updated>2019-10-10T10:00: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/conan-io/conan">Conan</a></strong>: Decentralized package manager for binary package management, targeted at C/C++ developers.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/conan-io/conan'>Repo</a></li>
<li><a href='https://conan.io/'>Home</a></li>
<li><a href='https://docs.conan.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/bfontaine/term2048</id>
<title>term2048</title>
<link rel="alternate" type="text/html" href="https://github.com/bfontaine/term2048" />
<published>2019-10-01T22:06:00Z</published>
<updated>2019-10-01T22: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/bfontaine/term2048">term2048</a></strong>: TUI version of [2048](http://gabrielecirulli.github.io/2048/).</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/bfontaine/term2048'>Repo</a></li>
<li><a href='https://pypi.python.org/pypi/term2048'>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/otsaloma/nfoview</id>
<title>NFO Viewer</title>
<link rel="alternate" type="text/html" href="https://github.com/otsaloma/nfoview" />
<published>2019-10-01T21:58:00Z</published>
<updated>2019-10-01T21:58: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/otsaloma/nfoview">NFO Viewer</a></strong>: A simple viewer for NFO files and the ASCII art therein, with preset fonts, encodings, automatic window sizing, and clickable hyperlinks.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/otsaloma/nfoview'>Repo</a></li>
<li><a href='https://otsaloma.io/nfoview'>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/HenriWahl/Nagstamon</id>
<title>Nagstamon</title>
<link rel="alternate" type="text/html" href="https://github.com/HenriWahl/Nagstamon" />
<published>2019-10-01T21:51:00Z</published>
<updated>2019-10-01T21:51: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/HenriWahl/Nagstamon">Nagstamon</a></strong>: Status monitor for the desktop, with support for Nagios, Icinga, Opsview, and more.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/HenriWahl/Nagstamon'>Repo</a></li>
<li><a href='https://nagstamon.ifw-dresden.de/'>Home</a></li>
<li><a href='https://nagstamon.ifw-dresden.de/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/cython/cython</id>
<title>Cython</title>
<link rel="alternate" type="text/html" href="https://github.com/cython/cython" />
<published>2019-10-01T21:48:00Z</published>
<updated>2019-10-01T21:48: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/cython/cython">Cython</a></strong>: Language and compiler designed for high-performance Python and C interoperability.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/cython/cython'>Repo</a></li>
<li><a href='https://cython.org/'>Home</a></li>
<li><a href='https://pypi.org/project/cython'>PyPI</a></li>
<li><a href='http://docs.cython.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/Backblaze/B2_Command_Line_Tool</id>
<title>B2</title>
<link rel="alternate" type="text/html" href="https://github.com/Backblaze/B2_Command_Line_Tool" />
<published>2019-10-01T21:44:00Z</published>
<updated>2019-10-01T21:44: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/Backblaze/B2_Command_Line_Tool">B2</a></strong>: Command-line tool that gives easy access to all of the capabilities of Backblaze's [B2 Cloud Storage](https://www.backblaze.com/b2/cloud-storage.html).</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/Backblaze/B2_Command_Line_Tool'>Repo</a></li>
<li><a href='https://pypi.python.org/pypi/b2'>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/snapcore/snapcraft</id>
<title>Snapcraft</title>
<link rel="alternate" type="text/html" href="https://github.com/snapcore/snapcraft" />
<published>2019-10-01T21:40:00Z</published>
<updated>2019-10-01T21:40: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/snapcore/snapcraft">Snapcraft</a></strong>: A command-line tool to package, distribute, and update apps for Linux and IoT using containerization, developed by Canonical.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/snapcore/snapcraft'>Repo</a></li>
<li><a href='https://snapcraft.io/'>Home</a></li>
<li><a href='https://snapcraft.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/borgbase/vorta</id>
<title>Vorta</title>
<link rel="alternate" type="text/html" href="https://github.com/borgbase/vorta" />
<published>2019-10-01T21:35:00Z</published>
<updated>2019-10-01T21:35: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/borgbase/vorta">Vorta</a></strong>: GUI backup client built on top of [BorgBackup](https://borgbackup.readthedocs.io/).</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/borgbase/vorta'>Repo</a></li>
<li><a href='https://vorta.borgbase.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://launchpad.net/launchpad</id>
<title>Launchpad</title>
<link rel="alternate" type="text/html" href="https://launchpad.net/launchpad" />
<published>2019-10-01T21:32:00Z</published>
<updated>2019-10-01T21:32:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://launchpad.net/launchpad">Launchpad</a></strong>: Software forge designed and run by Canonical, with support for Git and [Bazaar](https://en.wikipedia.org/wiki/GNU_Bazaar).</p>
<p>Links:</p>
<ul>
<li><a href='https://launchpad.net/launchpad'>Repo</a></li>
<li><a href='https://launchpad.net/'>Home</a></li>
<li><a href='https://en.wikipedia.org/wiki/Launchpad_%28website%29'>WP</a></li>
<li><a href='https://dev.launchpad.net/'>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/platformio/platformio-core</id>
<title>PlatformIO Core</title>
<link rel="alternate" type="text/html" href="https://github.com/platformio/platformio-core" />
<published>2019-10-01T21:22:00Z</published>
<updated>2019-10-01T21:22: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/platformio/platformio-core">PlatformIO Core</a></strong>: Multiplatform CLI build system and library manager for IoT development.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/platformio/platformio-core'>Repo</a></li>
<li><a href='https://platformio.org/'>Home</a></li>
<li><a href='https://platformio.org/donate?utm_source=github&utm_medium=core'>Fund</a></li>
<li><a href='https://pypi.org/project/platformio'>PyPI</a></li>
<li><a href='https://docs.platformio.org/en/latest?utm_source=github&utm_medium=core'>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/retext-project/retext</id>
<title>ReText</title>
<link rel="alternate" type="text/html" href="https://github.com/retext-project/retext" />
<published>2019-10-01T21:08:00Z</published>
<updated>2019-10-01T21:08: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/retext-project/retext">ReText</a></strong>: Simple but powerful editor for Markdown and reStructuredText markup languages.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/retext-project/retext'>Repo</a></li>
<li><a href='https://pypi.org/project/ReText'>PyPI</a></li>
<li><a href='https://github.com/retext-project/retext/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/s3ql/s3ql</id>
<title>s3ql</title>
<link rel="alternate" type="text/html" href="https://github.com/s3ql/s3ql" />
<published>2019-10-01T21:04:00Z</published>
<updated>2019-10-01T21:04: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/s3ql/s3ql">s3ql</a></strong>: A standards-conforming, full-featured UNIX filesystem for cloud-based storage services (S3, Google Storage, OpenStack), supporting compression, encryption, deduplication, snapshotting, and more.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/s3ql/s3ql'>Repo</a></li>
<li><a href='http://www.rath.org/s3ql-docs/index.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/sdg-mit/gitless</id>
<title>Gitless</title>
<link rel="alternate" type="text/html" href="https://github.com/sdg-mit/gitless" />
<published>2019-10-01T20:58:00Z</published>
<updated>2019-10-01T20:58: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/sdg-mit/gitless">Gitless</a></strong>: Simple version control system built on top of Git.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/sdg-mit/gitless'>Repo</a></li>
<li><a href='https://gitless.com/'>Home</a></li>
<li><a href='https://pypi.org/project/gitless'>PyPI</a></li>
<li><a href='https://gitless.com/#documentation'>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/overhangio/tutor</id>
<title>Tutor</title>
<link rel="alternate" type="text/html" href="https://github.com/overhangio/tutor" />
<published>2019-10-01T20:36:00Z</published>
<updated>2019-10-01T20:36: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/overhangio/tutor">Tutor</a></strong>: Docker-based Open edX distribution, both for production and local development, with a goal of easing deployment, customization, upgrading, and scaling.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/overhangio/tutor'>Repo</a></li>
<li><a href='https://docs.tutor.overhang.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/gridsync/gridsync</id>
<title>Gridsync</title>
<link rel="alternate" type="text/html" href="https://github.com/gridsync/gridsync" />
<published>2019-10-01T20:33:00Z</published>
<updated>2019-10-01T20:33: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/gridsync/gridsync">Gridsync</a></strong>: Cross-platform GUI built to synchronize local directories with Tahoe-LAFS storage grids.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/gridsync/gridsync'>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/arsenetar/dupeguru</id>
<title>dupeGuru</title>
<link rel="alternate" type="text/html" href="https://github.com/arsenetar/dupeguru" />
<published>2019-10-01T20:18:00Z</published>
<updated>2019-10-01T20: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/arsenetar/dupeguru">dupeGuru</a></strong>: Cross-platform GUI tool to find duplicate files.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/arsenetar/dupeguru'>Repo</a></li>
<li><a href='https://dupeguru.voltaicideas.net/'>Home</a></li>
<li><a href='https://dupeguru.voltaicideas.net/help/en'>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/delmic/odemis</id>
<title>odemis</title>
<link rel="alternate" type="text/html" href="https://github.com/delmic/odemis" />
<published>2019-10-01T18:55:00Z</published>
<updated>2019-10-01T18:55: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/delmic/odemis">odemis</a></strong>: Desktop imaging workflow software for Delmic microscopes, supporting autofocus, coordinate history, and OME-TIFF and HDF5 export.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/delmic/odemis'>Repo</a></li>
<li><a href='https://www.delmic.com/microscopy-software-odemis'>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/chanzuckerberg/cellxgene</id>
<title>cellxgene</title>
<link rel="alternate" type="text/html" href="https://github.com/chanzuckerberg/cellxgene" />
<published>2019-10-01T18:39:00Z</published>
<updated>2019-10-01T18:39: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/chanzuckerberg/cellxgene">cellxgene</a></strong>: Web-based interactive explorer for single-cell transcriptomics data.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/chanzuckerberg/cellxgene'>Repo</a></li>
<li><a href='https://chanzuckerberg.github.io/cellxgene'>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/usnistgov/mosaic</id>
<title>Mosaic</title>
<link rel="alternate" type="text/html" href="https://github.com/usnistgov/mosaic" />
<published>2019-10-01T18:32:00Z</published>
<updated>2019-10-01T18:32: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/usnistgov/mosaic">Mosaic</a></strong>: Desktop-based single molecule analysis toolbox that automatically decodes multi-state nanopore data.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/usnistgov/mosaic'>Repo</a></li>
<li><a href='https://pages.nist.gov/mosaic'>Home</a></li>
<li><a href='https://pages.nist.gov/mosaic/html/index.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/ctxis/CAPE</id>
<title>CAPE</title>
<link rel="alternate" type="text/html" href="https://github.com/ctxis/CAPE" />
<published>2019-10-01T18:01:00Z</published>
<updated>2019-10-01T18:01: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/ctxis/CAPE">CAPE</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/ctxis/CAPE'>Repo</a></li>
<li><a href='https://cape.contextis.com/submit'>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/malwaredllc/byob</id>
<title>BYOB (Build Your Own Botnet)</title>
<link rel="alternate" type="text/html" href="https://github.com/malwaredllc/byob" />
<published>2019-10-01T17:51:00Z</published>
<updated>2019-10-01T17:51: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/malwaredllc/byob">BYOB (Build Your Own Botnet)</a></strong>: Client-server framework (RAT and C2 server) for security researchers to build and operate basic botnets.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/malwaredllc/byob'>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/google/grr</id>
<title>GRR Rapid Response</title>
<link rel="alternate" type="text/html" href="https://github.com/google/grr" />
<published>2019-10-01T14:50:00Z</published>
<updated>2019-10-01T14:50: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/google/grr">GRR Rapid Response</a></strong>: Server-agent system focused on remote live forensics for quick, browser-based triage and analysis of attacks on fleets of machines, with agent support for Linux, Windows, and OS X.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/google/grr'>Repo</a></li>
<li><a href='https://grr-doc.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/BasioMeusPuga/Lector</id>
<title>Lector</title>
<link rel="alternate" type="text/html" href="https://github.com/BasioMeusPuga/Lector" />
<published>2019-10-01T14:41:00Z</published>
<updated>2019-10-01T14: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/BasioMeusPuga/Lector">Lector</a></strong>: Desktop ebook reader and browser, with support for many formats, including comic book archives.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/BasioMeusPuga/Lector'>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/evilhero/mylar</id>
<title>Mylar</title>
<link rel="alternate" type="text/html" href="https://github.com/evilhero/mylar" />
<published>2019-10-01T14:39:00Z</published>
<updated>2019-10-01T14:39: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/evilhero/mylar">Mylar</a></strong>: A web-based automated comic book downloader (cbr/cbz) for use with SABnzbd, NZBGet, and torrents.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/evilhero/mylar'>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/mstuttgart/pynocchio</id>
<title>Pynocchio</title>
<link rel="alternate" type="text/html" href="https://github.com/mstuttgart/pynocchio" />
<published>2019-10-01T14:33:00Z</published>
<updated>2019-10-01T14:33: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/mstuttgart/pynocchio">Pynocchio</a></strong>: Minimalist comic reader, supporting many common image and archive formats.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/mstuttgart/pynocchio'>Repo</a></li>
<li><a href='https://mstuttgart.github.io/pynocchio'>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/jendrikseipp/rednotebook</id>
<title>RedNotebook</title>
<link rel="alternate" type="text/html" href="https://github.com/jendrikseipp/rednotebook" />
<published>2019-10-01T10:04:00Z</published>
<updated>2019-10-01T10:04: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/jendrikseipp/rednotebook">RedNotebook</a></strong>: Desktop journal designed for rich text, media, and template-based entries, which can be tagged and searched, as well as exported to plain text, HTML, Latex, or PDF.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/jendrikseipp/rednotebook'>Repo</a></li>
<li><a href='https://rednotebook.sourceforge.io/downloads.html'>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/hubblestack/hubble</id>
<title>Hubble</title>
<link rel="alternate" type="text/html" href="https://github.com/hubblestack/hubble" />
<published>2019-10-01T09:58:00Z</published>
<updated>2019-10-01T09:58: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/hubblestack/hubble">Hubble</a></strong>: Modular security compliance client, providing on-demand profile-based auditing, alerting, and reporting. Originally designed for Adobe.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/hubblestack/hubble'>Repo</a></li>
<li><a href='https://hubblestack.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/pyfa-org/Pyfa</id>
<title>Pyfa</title>
<link rel="alternate" type="text/html" href="https://github.com/pyfa-org/Pyfa" />
<published>2019-09-30T19:31:00Z</published>
<updated>2019-09-30T19: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/pyfa-org/Pyfa">Pyfa</a></strong>: Python Fitting Assistant, cross-platform experimentation tool for [EVE Online](https://en.wikipedia.org/wiki/Eve_Online) ship fittings.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/pyfa-org/Pyfa'>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/cs01/gdbgui</id>
<title>gdbgui</title>
<link rel="alternate" type="text/html" href="https://github.com/cs01/gdbgui" />
<published>2019-09-30T19:24:00Z</published>
<updated>2019-09-30T19:24: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/cs01/gdbgui">gdbgui</a></strong>: Browser-based frontend for [gdb](https://en.wikipedia.org/wiki/GNU_Debugger).</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/cs01/gdbgui'>Repo</a></li>
<li><a href='https://gdbgui.com/'>Home</a></li>
<li><a href='https://pypi.org/project/gdbgui'>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/remyroy/CDDA-Game-Launcher</id>
<title>Cataclysm: Dark Days Ahead (Launcher)</title>
<link rel="alternate" type="text/html" href="https://github.com/remyroy/CDDA-Game-Launcher" />
<published>2019-09-30T18:57:00Z</published>
<updated>2019-09-30T18:57: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/remyroy/CDDA-Game-Launcher">Cataclysm: Dark Days Ahead (Launcher)</a></strong>: Launcher for popular FOSS game [CDDA](https://cataclysmdda.org/), which supports automatic updates and mod management.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/remyroy/CDDA-Game-Launcher'>Repo</a></li>
<li><a href='https://cataclysmdda.org/'>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/guardicore/monkey</id>
<title>Infection Monkey</title>
<link rel="alternate" type="text/html" href="https://github.com/guardicore/monkey" />
<published>2019-09-30T18:53:00Z</published>
<updated>2019-09-30T18:53: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/guardicore/monkey">Infection Monkey</a></strong>: Web-based tool for testing a datacenter's resiliency to perimeter breaches and internal server infection.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/guardicore/monkey'>Repo</a></li>
<li><a href='https://www.guardicore.com/infectionmonkey'>Home</a></li>
<li><a href='https://github.com/guardicore/monkey/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/artisan-roaster-scope/artisan</id>
<title>Artisan</title>
<link rel="alternate" type="text/html" href="https://github.com/artisan-roaster-scope/artisan" />
<published>2019-09-30T18:50:00Z</published>
<updated>2019-09-30T18:50: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/artisan-roaster-scope/artisan">Artisan</a></strong>: Desktop visual scope for coffee roasters, which helps coffee roasters record, analyze, and control roast profiles.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/artisan-roaster-scope/artisan'>Repo</a></li>
<li><a href='https://artisan-scope.org/'>Home</a></li>
<li><a href='https://artisan-scope.org/docs/quick-start-guide'>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/spl0k/supysonic</id>
<title>Supysonic</title>
<link rel="alternate" type="text/html" href="https://github.com/spl0k/supysonic" />
<published>2019-09-30T18:41:00Z</published>
<updated>2019-09-30T18: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/spl0k/supysonic">Supysonic</a></strong>: Implementation of the [Subsonic server API](http://www.subsonic.org/), with support for browsing, streaming, transcoding, scrobbling, and more.</p>
<p>Links:</p>
<ul>
<li><a href='https://github.com/spl0k/supysonic'>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://salsa.debian.org/qa/distro-tracker</id>
<title>distro-tracker</title>
<link rel="alternate" type="text/html" href="https://salsa.debian.org/qa/distro-tracker" />
<published>2019-09-30T18:35:00Z</published>
<updated>2019-09-30T18:35:00Z</updated>
<category term="audio"/><category term="audio"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><strong><a href="https://salsa.debian.org/qa/distro-tracker">distro-tracker</a></strong>: Web application designed to follow the evolution of a Debian-based distribution with email updates and a comprehensive web interface. Powers the [Debian Package Tracker](https://tracker.debian.org/).</p>
<p>Links:</p>
<ul>
<li><a href='https://salsa.debian.org/qa/distro-tracker'>Repo</a></li>
<li><a href='https://tracker.debian.org/'>Demo</a></li>
<li><a href='https://qa.pages.debian.net/distro-tracker'>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://salsa.debian.org/ftp-team/dak</id>
<title>dak</title>
<link rel="alternate" type="text/html" href="https://salsa.debian.org/ftp-team/dak" />
<published>2019-09-30T10:20:00Z</published>
<updated>2019-09-30T10: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://salsa.debian.org/ftp-team/dak">dak</a></strong>: Collection of programs used to maintain the Debian project's email archives.</p>
<p>Links:</p>
<ul>
<li><a href='https://salsa.debian.org/ftp-team/dak'>Repo</a></li>
</ul>
</div>