summaryrefslogtreecommitdiff
path: root/misc/calibre/PLIST
blob: d36396b5fce312d39905c95eb55c258739b9bc20 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:07:19 joerg Exp $
bin/any2epub
bin/any2lit
bin/any2lrf
bin/calibre
bin/calibre-customize
bin/calibre-debug
bin/calibre-fontconfig
bin/calibre-parallel
bin/calibre-server
bin/calibre_postinstall
bin/calibredb
bin/comic2epub
bin/comic2lrf
bin/comic2pdf
bin/ebook-viewer
bin/epub-meta
bin/epub2lrf
bin/fb2-meta
bin/fb22lrf
bin/feeds2disk
bin/feeds2epub
bin/feeds2lrf
bin/html2epub
bin/html2lrf
bin/html2oeb
bin/imp-meta
bin/isbndb
bin/librarything
bin/lit-meta
bin/lit2lrf
bin/lit2oeb
bin/lrf-meta
bin/lrf2html
bin/lrf2lrs
bin/lrfviewer
bin/lrs2lrf
bin/markdown-calibre
bin/mobi2lrf
bin/mobi2oeb
bin/odt-meta
bin/odt2oeb
bin/oeb2lit
bin/opf-meta
bin/pdf-meta
bin/pdf2lrf
bin/pdfreflow
bin/pdftrim
bin/prs500
bin/rb-meta
bin/rtf-meta
bin/rtf2lrf
bin/txt2lrf
bin/web2disk
bin/web2lrf
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/calibre/__init__.py
${PYSITELIB}/calibre/__init__.pyc
${PYSITELIB}/calibre/__init__.pyo
${PYSITELIB}/calibre/constants.py
${PYSITELIB}/calibre/constants.pyc
${PYSITELIB}/calibre/constants.pyo
${PYSITELIB}/calibre/customize/__init__.py
${PYSITELIB}/calibre/customize/__init__.pyc
${PYSITELIB}/calibre/customize/__init__.pyo
${PYSITELIB}/calibre/customize/builtins.py
${PYSITELIB}/calibre/customize/builtins.pyc
${PYSITELIB}/calibre/customize/builtins.pyo
${PYSITELIB}/calibre/customize/ui.py
${PYSITELIB}/calibre/customize/ui.pyc
${PYSITELIB}/calibre/customize/ui.pyo
${PYSITELIB}/calibre/debug.py
${PYSITELIB}/calibre/debug.pyc
${PYSITELIB}/calibre/debug.pyo
${PYSITELIB}/calibre/devices/__init__.py
${PYSITELIB}/calibre/devices/__init__.pyc
${PYSITELIB}/calibre/devices/__init__.pyo
${PYSITELIB}/calibre/devices/cybookg3/__init__.py
${PYSITELIB}/calibre/devices/cybookg3/__init__.pyc
${PYSITELIB}/calibre/devices/cybookg3/__init__.pyo
${PYSITELIB}/calibre/devices/cybookg3/driver.py
${PYSITELIB}/calibre/devices/cybookg3/driver.pyc
${PYSITELIB}/calibre/devices/cybookg3/driver.pyo
${PYSITELIB}/calibre/devices/errors.py
${PYSITELIB}/calibre/devices/errors.pyc
${PYSITELIB}/calibre/devices/errors.pyo
${PYSITELIB}/calibre/devices/interface.py
${PYSITELIB}/calibre/devices/interface.pyc
${PYSITELIB}/calibre/devices/interface.pyo
${PYSITELIB}/calibre/devices/kindle/__init__.py
${PYSITELIB}/calibre/devices/kindle/__init__.pyc
${PYSITELIB}/calibre/devices/kindle/__init__.pyo
${PYSITELIB}/calibre/devices/kindle/driver.py
${PYSITELIB}/calibre/devices/kindle/driver.pyc
${PYSITELIB}/calibre/devices/kindle/driver.pyo
${PYSITELIB}/calibre/devices/libusb.py
${PYSITELIB}/calibre/devices/libusb.pyc
${PYSITELIB}/calibre/devices/libusb.pyo
${PYSITELIB}/calibre/devices/manager.py
${PYSITELIB}/calibre/devices/manager.pyc
${PYSITELIB}/calibre/devices/manager.pyo
${PYSITELIB}/calibre/devices/mime.py
${PYSITELIB}/calibre/devices/mime.pyc
${PYSITELIB}/calibre/devices/mime.pyo
${PYSITELIB}/calibre/devices/prs500/__init__.py
${PYSITELIB}/calibre/devices/prs500/__init__.pyc
${PYSITELIB}/calibre/devices/prs500/__init__.pyo
${PYSITELIB}/calibre/devices/prs500/books.py
${PYSITELIB}/calibre/devices/prs500/books.pyc
${PYSITELIB}/calibre/devices/prs500/books.pyo
${PYSITELIB}/calibre/devices/prs500/cli/__init__.py
${PYSITELIB}/calibre/devices/prs500/cli/__init__.pyc
${PYSITELIB}/calibre/devices/prs500/cli/__init__.pyo
${PYSITELIB}/calibre/devices/prs500/cli/main.py
${PYSITELIB}/calibre/devices/prs500/cli/main.pyc
${PYSITELIB}/calibre/devices/prs500/cli/main.pyo
${PYSITELIB}/calibre/devices/prs500/driver.py
${PYSITELIB}/calibre/devices/prs500/driver.pyc
${PYSITELIB}/calibre/devices/prs500/driver.pyo
${PYSITELIB}/calibre/devices/prs500/prstypes.py
${PYSITELIB}/calibre/devices/prs500/prstypes.pyc
${PYSITELIB}/calibre/devices/prs500/prstypes.pyo
${PYSITELIB}/calibre/devices/prs505/__init__.py
${PYSITELIB}/calibre/devices/prs505/__init__.pyc
${PYSITELIB}/calibre/devices/prs505/__init__.pyo
${PYSITELIB}/calibre/devices/prs505/books.py
${PYSITELIB}/calibre/devices/prs505/books.pyc
${PYSITELIB}/calibre/devices/prs505/books.pyo
${PYSITELIB}/calibre/devices/prs505/driver.py
${PYSITELIB}/calibre/devices/prs505/driver.pyc
${PYSITELIB}/calibre/devices/prs505/driver.pyo
${PYSITELIB}/calibre/devices/prs700/__init__.py
${PYSITELIB}/calibre/devices/prs700/__init__.pyc
${PYSITELIB}/calibre/devices/prs700/__init__.pyo
${PYSITELIB}/calibre/devices/prs700/driver.py
${PYSITELIB}/calibre/devices/prs700/driver.pyc
${PYSITELIB}/calibre/devices/prs700/driver.pyo
${PYSITELIB}/calibre/devices/scanner.py
${PYSITELIB}/calibre/devices/scanner.pyc
${PYSITELIB}/calibre/devices/scanner.pyo
${PYSITELIB}/calibre/devices/usbms/__init__.py
${PYSITELIB}/calibre/devices/usbms/__init__.pyc
${PYSITELIB}/calibre/devices/usbms/__init__.pyo
${PYSITELIB}/calibre/devices/usbms/books.py
${PYSITELIB}/calibre/devices/usbms/books.pyc
${PYSITELIB}/calibre/devices/usbms/books.pyo
${PYSITELIB}/calibre/devices/usbms/device.py
${PYSITELIB}/calibre/devices/usbms/device.pyc
${PYSITELIB}/calibre/devices/usbms/device.pyo
${PYSITELIB}/calibre/devices/usbms/driver.py
${PYSITELIB}/calibre/devices/usbms/driver.pyc
${PYSITELIB}/calibre/devices/usbms/driver.pyo
${PYSITELIB}/calibre/ebooks/BeautifulSoup.py
${PYSITELIB}/calibre/ebooks/BeautifulSoup.pyc
${PYSITELIB}/calibre/ebooks/BeautifulSoup.pyo
${PYSITELIB}/calibre/ebooks/__init__.py
${PYSITELIB}/calibre/ebooks/__init__.pyc
${PYSITELIB}/calibre/ebooks/__init__.pyo
${PYSITELIB}/calibre/ebooks/chardet/__init__.py
${PYSITELIB}/calibre/ebooks/chardet/__init__.pyc
${PYSITELIB}/calibre/ebooks/chardet/__init__.pyo
${PYSITELIB}/calibre/ebooks/chardet/big5freq.py
${PYSITELIB}/calibre/ebooks/chardet/big5freq.pyc
${PYSITELIB}/calibre/ebooks/chardet/big5freq.pyo
${PYSITELIB}/calibre/ebooks/chardet/big5prober.py
${PYSITELIB}/calibre/ebooks/chardet/big5prober.pyc
${PYSITELIB}/calibre/ebooks/chardet/big5prober.pyo
${PYSITELIB}/calibre/ebooks/chardet/chardistribution.py
${PYSITELIB}/calibre/ebooks/chardet/chardistribution.pyc
${PYSITELIB}/calibre/ebooks/chardet/chardistribution.pyo
${PYSITELIB}/calibre/ebooks/chardet/charsetgroupprober.py
${PYSITELIB}/calibre/ebooks/chardet/charsetgroupprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/charsetgroupprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/charsetprober.py
${PYSITELIB}/calibre/ebooks/chardet/charsetprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/charsetprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/codingstatemachine.py
${PYSITELIB}/calibre/ebooks/chardet/codingstatemachine.pyc
${PYSITELIB}/calibre/ebooks/chardet/codingstatemachine.pyo
${PYSITELIB}/calibre/ebooks/chardet/constants.py
${PYSITELIB}/calibre/ebooks/chardet/constants.pyc
${PYSITELIB}/calibre/ebooks/chardet/constants.pyo
${PYSITELIB}/calibre/ebooks/chardet/escprober.py
${PYSITELIB}/calibre/ebooks/chardet/escprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/escprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/escsm.py
${PYSITELIB}/calibre/ebooks/chardet/escsm.pyc
${PYSITELIB}/calibre/ebooks/chardet/escsm.pyo
${PYSITELIB}/calibre/ebooks/chardet/eucjpprober.py
${PYSITELIB}/calibre/ebooks/chardet/eucjpprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/eucjpprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/euckrfreq.py
${PYSITELIB}/calibre/ebooks/chardet/euckrfreq.pyc
${PYSITELIB}/calibre/ebooks/chardet/euckrfreq.pyo
${PYSITELIB}/calibre/ebooks/chardet/euckrprober.py
${PYSITELIB}/calibre/ebooks/chardet/euckrprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/euckrprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/euctwfreq.py
${PYSITELIB}/calibre/ebooks/chardet/euctwfreq.pyc
${PYSITELIB}/calibre/ebooks/chardet/euctwfreq.pyo
${PYSITELIB}/calibre/ebooks/chardet/euctwprober.py
${PYSITELIB}/calibre/ebooks/chardet/euctwprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/euctwprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/gb2312freq.py
${PYSITELIB}/calibre/ebooks/chardet/gb2312freq.pyc
${PYSITELIB}/calibre/ebooks/chardet/gb2312freq.pyo
${PYSITELIB}/calibre/ebooks/chardet/gb2312prober.py
${PYSITELIB}/calibre/ebooks/chardet/gb2312prober.pyc
${PYSITELIB}/calibre/ebooks/chardet/gb2312prober.pyo
${PYSITELIB}/calibre/ebooks/chardet/hebrewprober.py
${PYSITELIB}/calibre/ebooks/chardet/hebrewprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/hebrewprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/jisfreq.py
${PYSITELIB}/calibre/ebooks/chardet/jisfreq.pyc
${PYSITELIB}/calibre/ebooks/chardet/jisfreq.pyo
${PYSITELIB}/calibre/ebooks/chardet/jpcntx.py
${PYSITELIB}/calibre/ebooks/chardet/jpcntx.pyc
${PYSITELIB}/calibre/ebooks/chardet/jpcntx.pyo
${PYSITELIB}/calibre/ebooks/chardet/langbulgarianmodel.py
${PYSITELIB}/calibre/ebooks/chardet/langbulgarianmodel.pyc
${PYSITELIB}/calibre/ebooks/chardet/langbulgarianmodel.pyo
${PYSITELIB}/calibre/ebooks/chardet/langcyrillicmodel.py
${PYSITELIB}/calibre/ebooks/chardet/langcyrillicmodel.pyc
${PYSITELIB}/calibre/ebooks/chardet/langcyrillicmodel.pyo
${PYSITELIB}/calibre/ebooks/chardet/langgreekmodel.py
${PYSITELIB}/calibre/ebooks/chardet/langgreekmodel.pyc
${PYSITELIB}/calibre/ebooks/chardet/langgreekmodel.pyo
${PYSITELIB}/calibre/ebooks/chardet/langhebrewmodel.py
${PYSITELIB}/calibre/ebooks/chardet/langhebrewmodel.pyc
${PYSITELIB}/calibre/ebooks/chardet/langhebrewmodel.pyo
${PYSITELIB}/calibre/ebooks/chardet/langhungarianmodel.py
${PYSITELIB}/calibre/ebooks/chardet/langhungarianmodel.pyc
${PYSITELIB}/calibre/ebooks/chardet/langhungarianmodel.pyo
${PYSITELIB}/calibre/ebooks/chardet/langthaimodel.py
${PYSITELIB}/calibre/ebooks/chardet/langthaimodel.pyc
${PYSITELIB}/calibre/ebooks/chardet/langthaimodel.pyo
${PYSITELIB}/calibre/ebooks/chardet/latin1prober.py
${PYSITELIB}/calibre/ebooks/chardet/latin1prober.pyc
${PYSITELIB}/calibre/ebooks/chardet/latin1prober.pyo
${PYSITELIB}/calibre/ebooks/chardet/mbcharsetprober.py
${PYSITELIB}/calibre/ebooks/chardet/mbcharsetprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/mbcharsetprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/mbcsgroupprober.py
${PYSITELIB}/calibre/ebooks/chardet/mbcsgroupprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/mbcsgroupprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/mbcssm.py
${PYSITELIB}/calibre/ebooks/chardet/mbcssm.pyc
${PYSITELIB}/calibre/ebooks/chardet/mbcssm.pyo
${PYSITELIB}/calibre/ebooks/chardet/sbcharsetprober.py
${PYSITELIB}/calibre/ebooks/chardet/sbcharsetprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/sbcharsetprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/sbcsgroupprober.py
${PYSITELIB}/calibre/ebooks/chardet/sbcsgroupprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/sbcsgroupprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/sjisprober.py
${PYSITELIB}/calibre/ebooks/chardet/sjisprober.pyc
${PYSITELIB}/calibre/ebooks/chardet/sjisprober.pyo
${PYSITELIB}/calibre/ebooks/chardet/universaldetector.py
${PYSITELIB}/calibre/ebooks/chardet/universaldetector.pyc
${PYSITELIB}/calibre/ebooks/chardet/universaldetector.pyo
${PYSITELIB}/calibre/ebooks/chardet/utf8prober.py
${PYSITELIB}/calibre/ebooks/chardet/utf8prober.pyc
${PYSITELIB}/calibre/ebooks/chardet/utf8prober.pyo
${PYSITELIB}/calibre/ebooks/epub/__init__.py
${PYSITELIB}/calibre/ebooks/epub/__init__.pyc
${PYSITELIB}/calibre/ebooks/epub/__init__.pyo
${PYSITELIB}/calibre/ebooks/epub/fonts.py
${PYSITELIB}/calibre/ebooks/epub/fonts.pyc
${PYSITELIB}/calibre/ebooks/epub/fonts.pyo
${PYSITELIB}/calibre/ebooks/epub/from_any.py
${PYSITELIB}/calibre/ebooks/epub/from_any.pyc
${PYSITELIB}/calibre/ebooks/epub/from_any.pyo
${PYSITELIB}/calibre/ebooks/epub/from_comic.py
${PYSITELIB}/calibre/ebooks/epub/from_comic.pyc
${PYSITELIB}/calibre/ebooks/epub/from_comic.pyo
${PYSITELIB}/calibre/ebooks/epub/from_feeds.py
${PYSITELIB}/calibre/ebooks/epub/from_feeds.pyc
${PYSITELIB}/calibre/ebooks/epub/from_feeds.pyo
${PYSITELIB}/calibre/ebooks/epub/from_html.py
${PYSITELIB}/calibre/ebooks/epub/from_html.pyc
${PYSITELIB}/calibre/ebooks/epub/from_html.pyo
${PYSITELIB}/calibre/ebooks/epub/iterator.py
${PYSITELIB}/calibre/ebooks/epub/iterator.pyc
${PYSITELIB}/calibre/ebooks/epub/iterator.pyo
${PYSITELIB}/calibre/ebooks/epub/split.py
${PYSITELIB}/calibre/ebooks/epub/split.pyc
${PYSITELIB}/calibre/ebooks/epub/split.pyo
${PYSITELIB}/calibre/ebooks/html.py
${PYSITELIB}/calibre/ebooks/html.pyc
${PYSITELIB}/calibre/ebooks/html.pyo
${PYSITELIB}/calibre/ebooks/hyphenate.py
${PYSITELIB}/calibre/ebooks/hyphenate.pyc
${PYSITELIB}/calibre/ebooks/hyphenate.pyo
${PYSITELIB}/calibre/ebooks/lit/__init__.py
${PYSITELIB}/calibre/ebooks/lit/__init__.pyc
${PYSITELIB}/calibre/ebooks/lit/__init__.pyo
${PYSITELIB}/calibre/ebooks/lit/from_any.py
${PYSITELIB}/calibre/ebooks/lit/from_any.pyc
${PYSITELIB}/calibre/ebooks/lit/from_any.pyo
${PYSITELIB}/calibre/ebooks/lit/lzx.py
${PYSITELIB}/calibre/ebooks/lit/lzx.pyc
${PYSITELIB}/calibre/ebooks/lit/lzx.pyo
${PYSITELIB}/calibre/ebooks/lit/maps/__init__.py
${PYSITELIB}/calibre/ebooks/lit/maps/__init__.pyc
${PYSITELIB}/calibre/ebooks/lit/maps/__init__.pyo
${PYSITELIB}/calibre/ebooks/lit/maps/html.py
${PYSITELIB}/calibre/ebooks/lit/maps/html.pyc
${PYSITELIB}/calibre/ebooks/lit/maps/html.pyo
${PYSITELIB}/calibre/ebooks/lit/maps/opf.py
${PYSITELIB}/calibre/ebooks/lit/maps/opf.pyc
${PYSITELIB}/calibre/ebooks/lit/maps/opf.pyo
${PYSITELIB}/calibre/ebooks/lit/mssha1.py
${PYSITELIB}/calibre/ebooks/lit/mssha1.pyc
${PYSITELIB}/calibre/ebooks/lit/mssha1.pyo
${PYSITELIB}/calibre/ebooks/lit/oeb.py
${PYSITELIB}/calibre/ebooks/lit/oeb.pyc
${PYSITELIB}/calibre/ebooks/lit/oeb.pyo
${PYSITELIB}/calibre/ebooks/lit/reader.py
${PYSITELIB}/calibre/ebooks/lit/reader.pyc
${PYSITELIB}/calibre/ebooks/lit/reader.pyo
${PYSITELIB}/calibre/ebooks/lit/stylizer.py
${PYSITELIB}/calibre/ebooks/lit/stylizer.pyc
${PYSITELIB}/calibre/ebooks/lit/stylizer.pyo
${PYSITELIB}/calibre/ebooks/lit/writer.py
${PYSITELIB}/calibre/ebooks/lit/writer.pyc
${PYSITELIB}/calibre/ebooks/lit/writer.pyo
${PYSITELIB}/calibre/ebooks/lrf/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/any/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/any/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/any/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/any/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/any/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/any/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/comic/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/comic/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/comic/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/comic/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/comic/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/comic/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/epub/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/epub/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/epub/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/epub/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/epub/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/epub/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/fb2/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/fb2/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/fb2/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/fb2/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/fb2/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/fb2/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/feeds/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/feeds/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/feeds/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/feeds/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/feeds/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/feeds/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Bold.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Bold.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Bold.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Italic.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Italic.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Italic.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Regular.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Regular.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Regular.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Bold.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Bold.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Bold.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Italic.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Italic.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Italic.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Regular.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Regular.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Regular.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/liberation/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0003m_.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0003m_.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0003m_.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0011m_.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0011m_.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0011m_.pyo
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0419m_.py
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0419m_.pyc
${PYSITELIB}/calibre/ebooks/lrf/fonts/prs500/tt0419m_.pyo
${PYSITELIB}/calibre/ebooks/lrf/html/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/html/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/html/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/html/color_map.py
${PYSITELIB}/calibre/ebooks/lrf/html/color_map.pyc
${PYSITELIB}/calibre/ebooks/lrf/html/color_map.pyo
${PYSITELIB}/calibre/ebooks/lrf/html/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/html/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/html/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/html/convert_to.py
${PYSITELIB}/calibre/ebooks/lrf/html/convert_to.pyc
${PYSITELIB}/calibre/ebooks/lrf/html/convert_to.pyo
${PYSITELIB}/calibre/ebooks/lrf/html/table.py
${PYSITELIB}/calibre/ebooks/lrf/html/table.pyc
${PYSITELIB}/calibre/ebooks/lrf/html/table.pyo
${PYSITELIB}/calibre/ebooks/lrf/html/table_as_image.py
${PYSITELIB}/calibre/ebooks/lrf/html/table_as_image.pyc
${PYSITELIB}/calibre/ebooks/lrf/html/table_as_image.pyo
${PYSITELIB}/calibre/ebooks/lrf/lit/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/lit/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/lit/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/lit/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/lit/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/lit/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/lrfparser.py
${PYSITELIB}/calibre/ebooks/lrf/lrfparser.pyc
${PYSITELIB}/calibre/ebooks/lrf/lrfparser.pyo
${PYSITELIB}/calibre/ebooks/lrf/lrs/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/lrs/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/lrs/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/lrs/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/lrs/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/lrs/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/meta.py
${PYSITELIB}/calibre/ebooks/lrf/meta.pyc
${PYSITELIB}/calibre/ebooks/lrf/meta.pyo
${PYSITELIB}/calibre/ebooks/lrf/mobi/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/mobi/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/mobi/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/mobi/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/mobi/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/mobi/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/objects.py
${PYSITELIB}/calibre/ebooks/lrf/objects.pyc
${PYSITELIB}/calibre/ebooks/lrf/objects.pyo
${PYSITELIB}/calibre/ebooks/lrf/pdf/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/pdf/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/pdf/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/pdf/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/pdf/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/pdf/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/pdf/reflow.py
${PYSITELIB}/calibre/ebooks/lrf/pdf/reflow.pyc
${PYSITELIB}/calibre/ebooks/lrf/pdf/reflow.pyo
${PYSITELIB}/calibre/ebooks/lrf/pylrs/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/pylrs/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/pylrs/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/pylrs/elements.py
${PYSITELIB}/calibre/ebooks/lrf/pylrs/elements.pyc
${PYSITELIB}/calibre/ebooks/lrf/pylrs/elements.pyo
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrf.py
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrf.pyc
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrf.pyo
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrfopt.py
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrfopt.pyc
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrfopt.pyo
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrs.py
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrs.pyc
${PYSITELIB}/calibre/ebooks/lrf/pylrs/pylrs.pyo
${PYSITELIB}/calibre/ebooks/lrf/rtf/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/rtf/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/rtf/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/rtf/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/rtf/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/rtf/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/rtf/xsl.py
${PYSITELIB}/calibre/ebooks/lrf/rtf/xsl.pyc
${PYSITELIB}/calibre/ebooks/lrf/rtf/xsl.pyo
${PYSITELIB}/calibre/ebooks/lrf/tags.py
${PYSITELIB}/calibre/ebooks/lrf/tags.pyc
${PYSITELIB}/calibre/ebooks/lrf/tags.pyo
${PYSITELIB}/calibre/ebooks/lrf/txt/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/txt/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/txt/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/txt/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/txt/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/txt/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/web/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/convert_from.py
${PYSITELIB}/calibre/ebooks/lrf/web/convert_from.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/convert_from.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/__init__.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/__init__.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/__init__.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/ap.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/ap.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/ap.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/atlantic.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/atlantic.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/atlantic.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/automatic.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/automatic.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/automatic.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/barrons.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/barrons.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/barrons.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/bbc.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/bbc.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/bbc.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/chr_mon.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/chr_mon.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/chr_mon.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/cnn.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/cnn.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/cnn.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/economist.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/economist.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/economist.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/faznet.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/faznet.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/faznet.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/jpost.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/jpost.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/jpost.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/jutarnji.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/jutarnji.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/jutarnji.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/nasa.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/nasa.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/nasa.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newsweek.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newsweek.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newsweek.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newyorker.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newyorker.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newyorker.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newyorkreview.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newyorkreview.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/newyorkreview.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/nytimes.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/nytimes.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/nytimes.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/portfolio.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/portfolio.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/portfolio.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/reuters.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/reuters.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/reuters.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/spiegelde.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/spiegelde.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/spiegelde.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/upi.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/upi.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/upi.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/usatoday.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/usatoday.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/usatoday.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/wash_post.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/wash_post.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/wash_post.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/wsj.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/wsj.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/wsj.pyo
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/zeitde.py
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/zeitde.pyc
${PYSITELIB}/calibre/ebooks/lrf/web/profiles/zeitde.pyo
${PYSITELIB}/calibre/ebooks/markdown/__init__.py
${PYSITELIB}/calibre/ebooks/markdown/__init__.pyc
${PYSITELIB}/calibre/ebooks/markdown/__init__.pyo
${PYSITELIB}/calibre/ebooks/markdown/markdown.py
${PYSITELIB}/calibre/ebooks/markdown/markdown.pyc
${PYSITELIB}/calibre/ebooks/markdown/markdown.pyo
${PYSITELIB}/calibre/ebooks/markdown/mdx_footnotes.py
${PYSITELIB}/calibre/ebooks/markdown/mdx_footnotes.pyc
${PYSITELIB}/calibre/ebooks/markdown/mdx_footnotes.pyo
${PYSITELIB}/calibre/ebooks/markdown/mdx_tables.py
${PYSITELIB}/calibre/ebooks/markdown/mdx_tables.pyc
${PYSITELIB}/calibre/ebooks/markdown/mdx_tables.pyo
${PYSITELIB}/calibre/ebooks/markdown/mdx_toc.py
${PYSITELIB}/calibre/ebooks/markdown/mdx_toc.pyc
${PYSITELIB}/calibre/ebooks/markdown/mdx_toc.pyo
${PYSITELIB}/calibre/ebooks/metadata/__init__.py
${PYSITELIB}/calibre/ebooks/metadata/__init__.pyc
${PYSITELIB}/calibre/ebooks/metadata/__init__.pyo
${PYSITELIB}/calibre/ebooks/metadata/amazon.py
${PYSITELIB}/calibre/ebooks/metadata/amazon.pyc
${PYSITELIB}/calibre/ebooks/metadata/amazon.pyo
${PYSITELIB}/calibre/ebooks/metadata/epub.py
${PYSITELIB}/calibre/ebooks/metadata/epub.pyc
${PYSITELIB}/calibre/ebooks/metadata/epub.pyo
${PYSITELIB}/calibre/ebooks/metadata/fb2.py
${PYSITELIB}/calibre/ebooks/metadata/fb2.pyc
${PYSITELIB}/calibre/ebooks/metadata/fb2.pyo
${PYSITELIB}/calibre/ebooks/metadata/html.py
${PYSITELIB}/calibre/ebooks/metadata/html.pyc
${PYSITELIB}/calibre/ebooks/metadata/html.pyo
${PYSITELIB}/calibre/ebooks/metadata/imp.py
${PYSITELIB}/calibre/ebooks/metadata/imp.pyc
${PYSITELIB}/calibre/ebooks/metadata/imp.pyo
${PYSITELIB}/calibre/ebooks/metadata/isbndb.py
${PYSITELIB}/calibre/ebooks/metadata/isbndb.pyc
${PYSITELIB}/calibre/ebooks/metadata/isbndb.pyo
${PYSITELIB}/calibre/ebooks/metadata/library_thing.py
${PYSITELIB}/calibre/ebooks/metadata/library_thing.pyc
${PYSITELIB}/calibre/ebooks/metadata/library_thing.pyo
${PYSITELIB}/calibre/ebooks/metadata/lit.py
${PYSITELIB}/calibre/ebooks/metadata/lit.pyc
${PYSITELIB}/calibre/ebooks/metadata/lit.pyo
${PYSITELIB}/calibre/ebooks/metadata/lrx.py
${PYSITELIB}/calibre/ebooks/metadata/lrx.pyc
${PYSITELIB}/calibre/ebooks/metadata/lrx.pyo
${PYSITELIB}/calibre/ebooks/metadata/meta.py
${PYSITELIB}/calibre/ebooks/metadata/meta.pyc
${PYSITELIB}/calibre/ebooks/metadata/meta.pyo
${PYSITELIB}/calibre/ebooks/metadata/odt.py
${PYSITELIB}/calibre/ebooks/metadata/odt.py
${PYSITELIB}/calibre/ebooks/metadata/odt.pyc
${PYSITELIB}/calibre/ebooks/metadata/odt.pyo
${PYSITELIB}/calibre/ebooks/metadata/opf.py
${PYSITELIB}/calibre/ebooks/metadata/opf.pyc
${PYSITELIB}/calibre/ebooks/metadata/opf.pyo
${PYSITELIB}/calibre/ebooks/metadata/opf2.py
${PYSITELIB}/calibre/ebooks/metadata/opf2.pyc
${PYSITELIB}/calibre/ebooks/metadata/opf2.pyo
${PYSITELIB}/calibre/ebooks/metadata/pdf.py
${PYSITELIB}/calibre/ebooks/metadata/pdf.pyc
${PYSITELIB}/calibre/ebooks/metadata/pdf.pyo
${PYSITELIB}/calibre/ebooks/metadata/rb.py
${PYSITELIB}/calibre/ebooks/metadata/rb.pyc
${PYSITELIB}/calibre/ebooks/metadata/rb.pyo
${PYSITELIB}/calibre/ebooks/metadata/rtf.py
${PYSITELIB}/calibre/ebooks/metadata/rtf.pyc
${PYSITELIB}/calibre/ebooks/metadata/rtf.pyo
${PYSITELIB}/calibre/ebooks/metadata/toc.py
${PYSITELIB}/calibre/ebooks/metadata/toc.pyc
${PYSITELIB}/calibre/ebooks/metadata/toc.pyo
${PYSITELIB}/calibre/ebooks/metadata/zip.py
${PYSITELIB}/calibre/ebooks/metadata/zip.pyc
${PYSITELIB}/calibre/ebooks/metadata/zip.pyo
${PYSITELIB}/calibre/ebooks/mobi/__init__.py
${PYSITELIB}/calibre/ebooks/mobi/__init__.pyc
${PYSITELIB}/calibre/ebooks/mobi/__init__.pyo
${PYSITELIB}/calibre/ebooks/mobi/huffcdic.py
${PYSITELIB}/calibre/ebooks/mobi/huffcdic.pyc
${PYSITELIB}/calibre/ebooks/mobi/huffcdic.pyo
${PYSITELIB}/calibre/ebooks/mobi/langcodes.py
${PYSITELIB}/calibre/ebooks/mobi/langcodes.pyc
${PYSITELIB}/calibre/ebooks/mobi/langcodes.pyo
${PYSITELIB}/calibre/ebooks/mobi/palmdoc.py
${PYSITELIB}/calibre/ebooks/mobi/palmdoc.pyc
${PYSITELIB}/calibre/ebooks/mobi/palmdoc.pyo
${PYSITELIB}/calibre/ebooks/mobi/reader.py
${PYSITELIB}/calibre/ebooks/mobi/reader.pyc
${PYSITELIB}/calibre/ebooks/mobi/reader.pyo
${PYSITELIB}/calibre/ebooks/odt/__init__.py
${PYSITELIB}/calibre/ebooks/odt/__init__.pyc
${PYSITELIB}/calibre/ebooks/odt/__init__.pyo
${PYSITELIB}/calibre/ebooks/odt/to_oeb.py
${PYSITELIB}/calibre/ebooks/odt/to_oeb.pyc
${PYSITELIB}/calibre/ebooks/odt/to_oeb.pyo
${PYSITELIB}/calibre/ebooks/pdf/__init__.py
${PYSITELIB}/calibre/ebooks/pdf/__init__.pyc
${PYSITELIB}/calibre/ebooks/pdf/__init__.pyo
${PYSITELIB}/calibre/ebooks/pdf/from_comic.py
${PYSITELIB}/calibre/ebooks/pdf/from_comic.pyc
${PYSITELIB}/calibre/ebooks/pdf/from_comic.pyo
${PYSITELIB}/calibre/ebooks/pdf/pdftrim.py
${PYSITELIB}/calibre/ebooks/pdf/pdftrim.pyc
${PYSITELIB}/calibre/ebooks/pdf/pdftrim.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/ParseRtf.py
${PYSITELIB}/calibre/ebooks/rtf2xml/ParseRtf.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/ParseRtf.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/__init__.py
${PYSITELIB}/calibre/ebooks/rtf2xml/__init__.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/__init__.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/add_brackets.py
${PYSITELIB}/calibre/ebooks/rtf2xml/add_brackets.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/add_brackets.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/body_styles.py
${PYSITELIB}/calibre/ebooks/rtf2xml/body_styles.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/body_styles.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/border_parse.py
${PYSITELIB}/calibre/ebooks/rtf2xml/border_parse.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/border_parse.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/char_set.py
${PYSITELIB}/calibre/ebooks/rtf2xml/char_set.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/char_set.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/check_brackets.py
${PYSITELIB}/calibre/ebooks/rtf2xml/check_brackets.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/check_brackets.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/check_encoding.py
${PYSITELIB}/calibre/ebooks/rtf2xml/check_encoding.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/check_encoding.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/colors.py
${PYSITELIB}/calibre/ebooks/rtf2xml/colors.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/colors.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/combine_borders.py
${PYSITELIB}/calibre/ebooks/rtf2xml/combine_borders.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/combine_borders.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/configure_txt.py
${PYSITELIB}/calibre/ebooks/rtf2xml/configure_txt.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/configure_txt.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/convert_to_tags.py
${PYSITELIB}/calibre/ebooks/rtf2xml/convert_to_tags.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/convert_to_tags.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/copy.py
${PYSITELIB}/calibre/ebooks/rtf2xml/copy.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/copy.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/correct_unicode.py
${PYSITELIB}/calibre/ebooks/rtf2xml/correct_unicode.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/correct_unicode.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/default_encoding.py
${PYSITELIB}/calibre/ebooks/rtf2xml/default_encoding.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/default_encoding.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/delete_info.py
${PYSITELIB}/calibre/ebooks/rtf2xml/delete_info.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/delete_info.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/field_strings.py
${PYSITELIB}/calibre/ebooks/rtf2xml/field_strings.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/field_strings.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/fields_large.py
${PYSITELIB}/calibre/ebooks/rtf2xml/fields_large.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/fields_large.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/fields_small.py
${PYSITELIB}/calibre/ebooks/rtf2xml/fields_small.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/fields_small.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/fonts.py
${PYSITELIB}/calibre/ebooks/rtf2xml/fonts.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/fonts.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/footnote.py
${PYSITELIB}/calibre/ebooks/rtf2xml/footnote.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/footnote.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/get_char_map.py
${PYSITELIB}/calibre/ebooks/rtf2xml/get_char_map.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/get_char_map.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/get_options.py
${PYSITELIB}/calibre/ebooks/rtf2xml/get_options.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/get_options.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/group_borders.py
${PYSITELIB}/calibre/ebooks/rtf2xml/group_borders.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/group_borders.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/group_styles.py
${PYSITELIB}/calibre/ebooks/rtf2xml/group_styles.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/group_styles.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/header.py
${PYSITELIB}/calibre/ebooks/rtf2xml/header.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/header.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/headings_to_sections.py
${PYSITELIB}/calibre/ebooks/rtf2xml/headings_to_sections.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/headings_to_sections.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/hex_2_utf8.py
${PYSITELIB}/calibre/ebooks/rtf2xml/hex_2_utf8.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/hex_2_utf8.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/info.py
${PYSITELIB}/calibre/ebooks/rtf2xml/info.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/info.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/inline.py
${PYSITELIB}/calibre/ebooks/rtf2xml/inline.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/inline.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/line_endings.py
${PYSITELIB}/calibre/ebooks/rtf2xml/line_endings.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/line_endings.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/list_numbers.py
${PYSITELIB}/calibre/ebooks/rtf2xml/list_numbers.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/list_numbers.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/list_table.py
${PYSITELIB}/calibre/ebooks/rtf2xml/list_table.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/list_table.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/make_lists.py
${PYSITELIB}/calibre/ebooks/rtf2xml/make_lists.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/make_lists.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/old_rtf.py
${PYSITELIB}/calibre/ebooks/rtf2xml/old_rtf.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/old_rtf.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/options_trem.py
${PYSITELIB}/calibre/ebooks/rtf2xml/options_trem.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/options_trem.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/output.py
${PYSITELIB}/calibre/ebooks/rtf2xml/output.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/output.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/override_table.py
${PYSITELIB}/calibre/ebooks/rtf2xml/override_table.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/override_table.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/paragraph_def.py
${PYSITELIB}/calibre/ebooks/rtf2xml/paragraph_def.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/paragraph_def.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/paragraphs.py
${PYSITELIB}/calibre/ebooks/rtf2xml/paragraphs.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/paragraphs.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/pict.py
${PYSITELIB}/calibre/ebooks/rtf2xml/pict.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/pict.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/preamble_div.py
${PYSITELIB}/calibre/ebooks/rtf2xml/preamble_div.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/preamble_div.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/preamble_rest.py
${PYSITELIB}/calibre/ebooks/rtf2xml/preamble_rest.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/preamble_rest.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/process_tokens.py
${PYSITELIB}/calibre/ebooks/rtf2xml/process_tokens.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/process_tokens.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/replace_illegals.py
${PYSITELIB}/calibre/ebooks/rtf2xml/replace_illegals.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/replace_illegals.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/sections.py
${PYSITELIB}/calibre/ebooks/rtf2xml/sections.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/sections.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/styles.py
${PYSITELIB}/calibre/ebooks/rtf2xml/styles.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/styles.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/table.py
${PYSITELIB}/calibre/ebooks/rtf2xml/table.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/table.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/table_info.py
${PYSITELIB}/calibre/ebooks/rtf2xml/table_info.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/table_info.pyo
${PYSITELIB}/calibre/ebooks/rtf2xml/tokenize.py
${PYSITELIB}/calibre/ebooks/rtf2xml/tokenize.pyc
${PYSITELIB}/calibre/ebooks/rtf2xml/tokenize.pyo
${PYSITELIB}/calibre/ebooks/sgmllib.py
${PYSITELIB}/calibre/ebooks/sgmllib.pyc
${PYSITELIB}/calibre/ebooks/sgmllib.pyo
${PYSITELIB}/calibre/ezPyCrypto.py
${PYSITELIB}/calibre/ezPyCrypto.pyc
${PYSITELIB}/calibre/ezPyCrypto.pyo
${PYSITELIB}/calibre/gui2/__init__.py
${PYSITELIB}/calibre/gui2/__init__.pyc
${PYSITELIB}/calibre/gui2/__init__.pyo
${PYSITELIB}/calibre/gui2/cover_flow.py
${PYSITELIB}/calibre/gui2/cover_flow.pyc
${PYSITELIB}/calibre/gui2/cover_flow.pyo
${PYSITELIB}/calibre/gui2/device.py
${PYSITELIB}/calibre/gui2/device.pyc
${PYSITELIB}/calibre/gui2/device.pyo
${PYSITELIB}/calibre/gui2/dialogs/__init__.py
${PYSITELIB}/calibre/gui2/dialogs/__init__.pyc
${PYSITELIB}/calibre/gui2/dialogs/__init__.pyo
${PYSITELIB}/calibre/gui2/dialogs/book_info.py
${PYSITELIB}/calibre/gui2/dialogs/book_info.pyc
${PYSITELIB}/calibre/gui2/dialogs/book_info.pyo
${PYSITELIB}/calibre/gui2/dialogs/book_info_ui.py
${PYSITELIB}/calibre/gui2/dialogs/book_info_ui.py
${PYSITELIB}/calibre/gui2/dialogs/book_info_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/book_info_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/choose_format.py
${PYSITELIB}/calibre/gui2/dialogs/choose_format.pyc
${PYSITELIB}/calibre/gui2/dialogs/choose_format.pyo
${PYSITELIB}/calibre/gui2/dialogs/choose_format_ui.py
${PYSITELIB}/calibre/gui2/dialogs/choose_format_ui.py
${PYSITELIB}/calibre/gui2/dialogs/choose_format_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/choose_format_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/comicconf.py
${PYSITELIB}/calibre/gui2/dialogs/comicconf.pyc
${PYSITELIB}/calibre/gui2/dialogs/comicconf.pyo
${PYSITELIB}/calibre/gui2/dialogs/comicconf_ui.py
${PYSITELIB}/calibre/gui2/dialogs/comicconf_ui.py
${PYSITELIB}/calibre/gui2/dialogs/comicconf_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/comicconf_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/config.py
${PYSITELIB}/calibre/gui2/dialogs/config.pyc
${PYSITELIB}/calibre/gui2/dialogs/config.pyo
${PYSITELIB}/calibre/gui2/dialogs/config_ui.py
${PYSITELIB}/calibre/gui2/dialogs/config_ui.py
${PYSITELIB}/calibre/gui2/dialogs/config_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/config_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete.py
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete.pyc
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete.pyo
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete_ui.py
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete_ui.py
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/confirm_delete_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/conversion_error.py
${PYSITELIB}/calibre/gui2/dialogs/conversion_error.pyc
${PYSITELIB}/calibre/gui2/dialogs/conversion_error.pyo
${PYSITELIB}/calibre/gui2/dialogs/conversion_error_ui.py
${PYSITELIB}/calibre/gui2/dialogs/conversion_error_ui.py
${PYSITELIB}/calibre/gui2/dialogs/conversion_error_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/conversion_error_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/epub.py
${PYSITELIB}/calibre/gui2/dialogs/epub.pyc
${PYSITELIB}/calibre/gui2/dialogs/epub.pyo
${PYSITELIB}/calibre/gui2/dialogs/epub_ui.py
${PYSITELIB}/calibre/gui2/dialogs/epub_ui.py
${PYSITELIB}/calibre/gui2/dialogs/epub_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/epub_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata.py
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata.pyc
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata.pyo
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata_ui.py
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata_ui.py
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/fetch_metadata_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/job_view_ui.py
${PYSITELIB}/calibre/gui2/dialogs/job_view_ui.py
${PYSITELIB}/calibre/gui2/dialogs/job_view_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/job_view_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/jobs.py
${PYSITELIB}/calibre/gui2/dialogs/jobs.pyc
${PYSITELIB}/calibre/gui2/dialogs/jobs.pyo
${PYSITELIB}/calibre/gui2/dialogs/jobs_ui.py
${PYSITELIB}/calibre/gui2/dialogs/jobs_ui.py
${PYSITELIB}/calibre/gui2/dialogs/jobs_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/jobs_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/lrf_single.py
${PYSITELIB}/calibre/gui2/dialogs/lrf_single.pyc
${PYSITELIB}/calibre/gui2/dialogs/lrf_single.pyo
${PYSITELIB}/calibre/gui2/dialogs/lrf_single_ui.py
${PYSITELIB}/calibre/gui2/dialogs/lrf_single_ui.py
${PYSITELIB}/calibre/gui2/dialogs/lrf_single_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/lrf_single_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk.py
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk.pyc
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk.pyo
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk_ui.py
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk_ui.py
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/metadata_bulk_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/metadata_single.py
${PYSITELIB}/calibre/gui2/dialogs/metadata_single.pyc
${PYSITELIB}/calibre/gui2/dialogs/metadata_single.pyo
${PYSITELIB}/calibre/gui2/dialogs/metadata_single_ui.py
${PYSITELIB}/calibre/gui2/dialogs/metadata_single_ui.py
${PYSITELIB}/calibre/gui2/dialogs/metadata_single_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/metadata_single_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/password.py
${PYSITELIB}/calibre/gui2/dialogs/password.pyc
${PYSITELIB}/calibre/gui2/dialogs/password.pyo
${PYSITELIB}/calibre/gui2/dialogs/password_ui.py
${PYSITELIB}/calibre/gui2/dialogs/password_ui.py
${PYSITELIB}/calibre/gui2/dialogs/password_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/password_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/scheduler.py
${PYSITELIB}/calibre/gui2/dialogs/scheduler.pyc
${PYSITELIB}/calibre/gui2/dialogs/scheduler.pyo
${PYSITELIB}/calibre/gui2/dialogs/scheduler_ui.py
${PYSITELIB}/calibre/gui2/dialogs/scheduler_ui.py
${PYSITELIB}/calibre/gui2/dialogs/scheduler_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/scheduler_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/search.py
${PYSITELIB}/calibre/gui2/dialogs/search.pyc
${PYSITELIB}/calibre/gui2/dialogs/search.pyo
${PYSITELIB}/calibre/gui2/dialogs/search_item_ui.py
${PYSITELIB}/calibre/gui2/dialogs/search_item_ui.py
${PYSITELIB}/calibre/gui2/dialogs/search_item_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/search_item_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/search_ui.py
${PYSITELIB}/calibre/gui2/dialogs/search_ui.py
${PYSITELIB}/calibre/gui2/dialogs/search_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/search_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/tag_editor.py
${PYSITELIB}/calibre/gui2/dialogs/tag_editor.pyc
${PYSITELIB}/calibre/gui2/dialogs/tag_editor.pyo
${PYSITELIB}/calibre/gui2/dialogs/tag_editor_ui.py
${PYSITELIB}/calibre/gui2/dialogs/tag_editor_ui.py
${PYSITELIB}/calibre/gui2/dialogs/tag_editor_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/tag_editor_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/user_profiles.py
${PYSITELIB}/calibre/gui2/dialogs/user_profiles.pyc
${PYSITELIB}/calibre/gui2/dialogs/user_profiles.pyo
${PYSITELIB}/calibre/gui2/dialogs/user_profiles_ui.py
${PYSITELIB}/calibre/gui2/dialogs/user_profiles_ui.py
${PYSITELIB}/calibre/gui2/dialogs/user_profiles_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/user_profiles_ui.pyo
${PYSITELIB}/calibre/gui2/dialogs/warning_ui.py
${PYSITELIB}/calibre/gui2/dialogs/warning_ui.py
${PYSITELIB}/calibre/gui2/dialogs/warning_ui.pyc
${PYSITELIB}/calibre/gui2/dialogs/warning_ui.pyo
${PYSITELIB}/calibre/gui2/filename_pattern_ui.py
${PYSITELIB}/calibre/gui2/filename_pattern_ui.py
${PYSITELIB}/calibre/gui2/filename_pattern_ui.pyc
${PYSITELIB}/calibre/gui2/filename_pattern_ui.pyo
${PYSITELIB}/calibre/gui2/images_rc.py
${PYSITELIB}/calibre/gui2/images_rc.py
${PYSITELIB}/calibre/gui2/images_rc.pyc
${PYSITELIB}/calibre/gui2/images_rc.pyo
${PYSITELIB}/calibre/gui2/jobs2.py
${PYSITELIB}/calibre/gui2/jobs2.pyc
${PYSITELIB}/calibre/gui2/jobs2.pyo
${PYSITELIB}/calibre/gui2/library.py
${PYSITELIB}/calibre/gui2/library.pyc
${PYSITELIB}/calibre/gui2/library.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/__init__.py
${PYSITELIB}/calibre/gui2/lrf_renderer/__init__.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/__init__.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/bookview.py
${PYSITELIB}/calibre/gui2/lrf_renderer/bookview.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/bookview.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/config_ui.py
${PYSITELIB}/calibre/gui2/lrf_renderer/config_ui.py
${PYSITELIB}/calibre/gui2/lrf_renderer/config_ui.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/config_ui.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/document.py
${PYSITELIB}/calibre/gui2/lrf_renderer/document.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/document.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/main.py
${PYSITELIB}/calibre/gui2/lrf_renderer/main.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/main.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/main_ui.py
${PYSITELIB}/calibre/gui2/lrf_renderer/main_ui.py
${PYSITELIB}/calibre/gui2/lrf_renderer/main_ui.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/main_ui.pyo
${PYSITELIB}/calibre/gui2/lrf_renderer/text.py
${PYSITELIB}/calibre/gui2/lrf_renderer/text.pyc
${PYSITELIB}/calibre/gui2/lrf_renderer/text.pyo
${PYSITELIB}/calibre/gui2/main.py
${PYSITELIB}/calibre/gui2/main.pyc
${PYSITELIB}/calibre/gui2/main.pyo
${PYSITELIB}/calibre/gui2/main_ui.py
${PYSITELIB}/calibre/gui2/main_ui.py
${PYSITELIB}/calibre/gui2/main_ui.pyc
${PYSITELIB}/calibre/gui2/main_ui.pyo
${PYSITELIB}/calibre/gui2/main_window.py
${PYSITELIB}/calibre/gui2/main_window.pyc
${PYSITELIB}/calibre/gui2/main_window.pyo
${PYSITELIB}/calibre/gui2/status.py
${PYSITELIB}/calibre/gui2/status.pyc
${PYSITELIB}/calibre/gui2/status.pyo
${PYSITELIB}/calibre/gui2/tags.py
${PYSITELIB}/calibre/gui2/tags.pyc
${PYSITELIB}/calibre/gui2/tags.pyo
${PYSITELIB}/calibre/gui2/tools.py
${PYSITELIB}/calibre/gui2/tools.pyc
${PYSITELIB}/calibre/gui2/tools.pyo
${PYSITELIB}/calibre/gui2/update.py
${PYSITELIB}/calibre/gui2/update.pyc
${PYSITELIB}/calibre/gui2/update.pyo
${PYSITELIB}/calibre/gui2/viewer/__init__.py
${PYSITELIB}/calibre/gui2/viewer/__init__.pyc
${PYSITELIB}/calibre/gui2/viewer/__init__.pyo
${PYSITELIB}/calibre/gui2/viewer/config_ui.py
${PYSITELIB}/calibre/gui2/viewer/config_ui.py
${PYSITELIB}/calibre/gui2/viewer/config_ui.pyc
${PYSITELIB}/calibre/gui2/viewer/config_ui.pyo
${PYSITELIB}/calibre/gui2/viewer/documentview.py
${PYSITELIB}/calibre/gui2/viewer/documentview.pyc
${PYSITELIB}/calibre/gui2/viewer/documentview.pyo
${PYSITELIB}/calibre/gui2/viewer/js.py
${PYSITELIB}/calibre/gui2/viewer/js.pyc
${PYSITELIB}/calibre/gui2/viewer/js.pyo
${PYSITELIB}/calibre/gui2/viewer/main.py
${PYSITELIB}/calibre/gui2/viewer/main.pyc
${PYSITELIB}/calibre/gui2/viewer/main.pyo
${PYSITELIB}/calibre/gui2/viewer/main_ui.py
${PYSITELIB}/calibre/gui2/viewer/main_ui.py
${PYSITELIB}/calibre/gui2/viewer/main_ui.pyc
${PYSITELIB}/calibre/gui2/viewer/main_ui.pyo
${PYSITELIB}/calibre/gui2/widgets.py
${PYSITELIB}/calibre/gui2/widgets.pyc
${PYSITELIB}/calibre/gui2/widgets.pyo
${PYSITELIB}/calibre/library/__init__.py
${PYSITELIB}/calibre/library/__init__.pyc
${PYSITELIB}/calibre/library/__init__.pyo
${PYSITELIB}/calibre/library/cli.py
${PYSITELIB}/calibre/library/cli.pyc
${PYSITELIB}/calibre/library/cli.pyo
${PYSITELIB}/calibre/library/database.py
${PYSITELIB}/calibre/library/database.pyc
${PYSITELIB}/calibre/library/database.pyo
${PYSITELIB}/calibre/library/database2.py
${PYSITELIB}/calibre/library/database2.pyc
${PYSITELIB}/calibre/library/database2.pyo
${PYSITELIB}/calibre/library/server.py
${PYSITELIB}/calibre/library/server.pyc
${PYSITELIB}/calibre/library/server.pyo
${PYSITELIB}/calibre/library/sqlite.py
${PYSITELIB}/calibre/library/sqlite.pyc
${PYSITELIB}/calibre/library/sqlite.pyo
${PYSITELIB}/calibre/library/test.py
${PYSITELIB}/calibre/library/test.pyc
${PYSITELIB}/calibre/library/test.pyo
${PYSITELIB}/calibre/libunrar.py
${PYSITELIB}/calibre/libunrar.pyc
${PYSITELIB}/calibre/libunrar.pyo
${PYSITELIB}/calibre/libunzip.py
${PYSITELIB}/calibre/libunzip.pyc
${PYSITELIB}/calibre/libunzip.pyo
${PYSITELIB}/calibre/libwand.py
${PYSITELIB}/calibre/libwand.pyc
${PYSITELIB}/calibre/libwand.pyo
${PYSITELIB}/calibre/linux.py
${PYSITELIB}/calibre/linux.py
${PYSITELIB}/calibre/linux.pyc
${PYSITELIB}/calibre/linux.pyo
${PYSITELIB}/calibre/parallel.py
${PYSITELIB}/calibre/parallel.pyc
${PYSITELIB}/calibre/parallel.pyo
${PYSITELIB}/calibre/path.py
${PYSITELIB}/calibre/path.pyc
${PYSITELIB}/calibre/path.pyo
${PYSITELIB}/calibre/plugins/lzx.so
${PYSITELIB}/calibre/plugins/msdes.so
${PYSITELIB}/calibre/plugins/pictureflow.so
${PYSITELIB}/calibre/ptempfile.py
${PYSITELIB}/calibre/ptempfile.pyc
${PYSITELIB}/calibre/ptempfile.pyo
${PYSITELIB}/calibre/resources.py
${PYSITELIB}/calibre/resources.py
${PYSITELIB}/calibre/resources.pyc
${PYSITELIB}/calibre/resources.pyo
${PYSITELIB}/calibre/startup.py
${PYSITELIB}/calibre/startup.pyc
${PYSITELIB}/calibre/startup.pyo
${PYSITELIB}/calibre/trac/__init__.py
${PYSITELIB}/calibre/trac/__init__.pyc
${PYSITELIB}/calibre/trac/__init__.pyo
${PYSITELIB}/calibre/trac/bzr_commit_plugin.py
${PYSITELIB}/calibre/trac/bzr_commit_plugin.pyc
${PYSITELIB}/calibre/trac/bzr_commit_plugin.pyo
${PYSITELIB}/calibre/trac/plugins/Changelog.py
${PYSITELIB}/calibre/trac/plugins/Changelog.pyc
${PYSITELIB}/calibre/trac/plugins/Changelog.pyo
${PYSITELIB}/calibre/trac/plugins/__init__.py
${PYSITELIB}/calibre/trac/plugins/__init__.pyc
${PYSITELIB}/calibre/trac/plugins/__init__.pyo
${PYSITELIB}/calibre/trac/plugins/download.py
${PYSITELIB}/calibre/trac/plugins/download.pyc
${PYSITELIB}/calibre/trac/plugins/download.pyo
${PYSITELIB}/calibre/trac/setup.py
${PYSITELIB}/calibre/trac/setup.pyc
${PYSITELIB}/calibre/trac/setup.pyo
${PYSITELIB}/calibre/translations/__init__.py
${PYSITELIB}/calibre/translations/__init__.pyc
${PYSITELIB}/calibre/translations/__init__.pyo
${PYSITELIB}/calibre/translations/automatic.py
${PYSITELIB}/calibre/translations/automatic.pyc
${PYSITELIB}/calibre/translations/automatic.pyo
${PYSITELIB}/calibre/translations/compiled.py
${PYSITELIB}/calibre/translations/compiled.py
${PYSITELIB}/calibre/translations/compiled.pyc
${PYSITELIB}/calibre/translations/compiled.pyo
${PYSITELIB}/calibre/translations/msgfmt.py
${PYSITELIB}/calibre/translations/msgfmt.pyc
${PYSITELIB}/calibre/translations/msgfmt.pyo
${PYSITELIB}/calibre/translations/pygettext.py
${PYSITELIB}/calibre/translations/pygettext.pyc
${PYSITELIB}/calibre/translations/pygettext.pyo
${PYSITELIB}/calibre/utils/PythonMagickWand.py
${PYSITELIB}/calibre/utils/PythonMagickWand.pyc
${PYSITELIB}/calibre/utils/PythonMagickWand.pyo
${PYSITELIB}/calibre/utils/__init__.py
${PYSITELIB}/calibre/utils/__init__.pyc
${PYSITELIB}/calibre/utils/__init__.pyo
${PYSITELIB}/calibre/utils/config.py
${PYSITELIB}/calibre/utils/config.pyc
${PYSITELIB}/calibre/utils/config.pyo
${PYSITELIB}/calibre/utils/filenames.py
${PYSITELIB}/calibre/utils/filenames.pyc
${PYSITELIB}/calibre/utils/filenames.pyo
${PYSITELIB}/calibre/utils/fontconfig.py
${PYSITELIB}/calibre/utils/fontconfig.pyc
${PYSITELIB}/calibre/utils/fontconfig.pyo
${PYSITELIB}/calibre/utils/genshi/__init__.py
${PYSITELIB}/calibre/utils/genshi/__init__.pyc
${PYSITELIB}/calibre/utils/genshi/__init__.pyo
${PYSITELIB}/calibre/utils/genshi/builder.py
${PYSITELIB}/calibre/utils/genshi/builder.pyc
${PYSITELIB}/calibre/utils/genshi/builder.pyo
${PYSITELIB}/calibre/utils/genshi/core.py
${PYSITELIB}/calibre/utils/genshi/core.pyc
${PYSITELIB}/calibre/utils/genshi/core.pyo
${PYSITELIB}/calibre/utils/genshi/filters/__init__.py
${PYSITELIB}/calibre/utils/genshi/filters/__init__.pyc
${PYSITELIB}/calibre/utils/genshi/filters/__init__.pyo
${PYSITELIB}/calibre/utils/genshi/filters/html.py
${PYSITELIB}/calibre/utils/genshi/filters/html.pyc
${PYSITELIB}/calibre/utils/genshi/filters/html.pyo
${PYSITELIB}/calibre/utils/genshi/filters/i18n.py
${PYSITELIB}/calibre/utils/genshi/filters/i18n.pyc
${PYSITELIB}/calibre/utils/genshi/filters/i18n.pyo
${PYSITELIB}/calibre/utils/genshi/filters/transform.py
${PYSITELIB}/calibre/utils/genshi/filters/transform.pyc
${PYSITELIB}/calibre/utils/genshi/filters/transform.pyo
${PYSITELIB}/calibre/utils/genshi/input.py
${PYSITELIB}/calibre/utils/genshi/input.pyc
${PYSITELIB}/calibre/utils/genshi/input.pyo
${PYSITELIB}/calibre/utils/genshi/output.py
${PYSITELIB}/calibre/utils/genshi/output.pyc
${PYSITELIB}/calibre/utils/genshi/output.pyo
${PYSITELIB}/calibre/utils/genshi/path.py
${PYSITELIB}/calibre/utils/genshi/path.pyc
${PYSITELIB}/calibre/utils/genshi/path.pyo
${PYSITELIB}/calibre/utils/genshi/template/__init__.py
${PYSITELIB}/calibre/utils/genshi/template/__init__.pyc
${PYSITELIB}/calibre/utils/genshi/template/__init__.pyo
${PYSITELIB}/calibre/utils/genshi/template/base.py
${PYSITELIB}/calibre/utils/genshi/template/base.pyc
${PYSITELIB}/calibre/utils/genshi/template/base.pyo
${PYSITELIB}/calibre/utils/genshi/template/directives.py
${PYSITELIB}/calibre/utils/genshi/template/directives.pyc
${PYSITELIB}/calibre/utils/genshi/template/directives.pyo
${PYSITELIB}/calibre/utils/genshi/template/eval.py
${PYSITELIB}/calibre/utils/genshi/template/eval.pyc
${PYSITELIB}/calibre/utils/genshi/template/eval.pyo
${PYSITELIB}/calibre/utils/genshi/template/interpolation.py
${PYSITELIB}/calibre/utils/genshi/template/interpolation.pyc
${PYSITELIB}/calibre/utils/genshi/template/interpolation.pyo
${PYSITELIB}/calibre/utils/genshi/template/loader.py
${PYSITELIB}/calibre/utils/genshi/template/loader.pyc
${PYSITELIB}/calibre/utils/genshi/template/loader.pyo
${PYSITELIB}/calibre/utils/genshi/template/markup.py
${PYSITELIB}/calibre/utils/genshi/template/markup.pyc
${PYSITELIB}/calibre/utils/genshi/template/markup.pyo
${PYSITELIB}/calibre/utils/genshi/template/plugin.py
${PYSITELIB}/calibre/utils/genshi/template/plugin.pyc
${PYSITELIB}/calibre/utils/genshi/template/plugin.pyo
${PYSITELIB}/calibre/utils/genshi/template/text.py
${PYSITELIB}/calibre/utils/genshi/template/text.pyc
${PYSITELIB}/calibre/utils/genshi/template/text.pyo
${PYSITELIB}/calibre/utils/genshi/util.py
${PYSITELIB}/calibre/utils/genshi/util.pyc
${PYSITELIB}/calibre/utils/genshi/util.pyo
${PYSITELIB}/calibre/utils/lock.py
${PYSITELIB}/calibre/utils/lock.pyc
${PYSITELIB}/calibre/utils/lock.pyo
${PYSITELIB}/calibre/utils/pyparsing.py
${PYSITELIB}/calibre/utils/pyparsing.pyc
${PYSITELIB}/calibre/utils/pyparsing.pyo
${PYSITELIB}/calibre/utils/search_query_parser.py
${PYSITELIB}/calibre/utils/search_query_parser.pyc
${PYSITELIB}/calibre/utils/search_query_parser.pyo
${PYSITELIB}/calibre/utils/sftp.py
${PYSITELIB}/calibre/utils/sftp.pyc
${PYSITELIB}/calibre/utils/sftp.pyo
${PYSITELIB}/calibre/utils/single_qt_application.py
${PYSITELIB}/calibre/utils/single_qt_application.pyc
${PYSITELIB}/calibre/utils/single_qt_application.pyo
${PYSITELIB}/calibre/utils/terminfo.py
${PYSITELIB}/calibre/utils/terminfo.pyc
${PYSITELIB}/calibre/utils/terminfo.pyo
${PYSITELIB}/calibre/utils/threadpool.py
${PYSITELIB}/calibre/utils/threadpool.pyc
${PYSITELIB}/calibre/utils/threadpool.pyo
${PYSITELIB}/calibre/utils/zipfile.py
${PYSITELIB}/calibre/utils/zipfile.pyc
${PYSITELIB}/calibre/utils/zipfile.pyo
${PYSITELIB}/calibre/web/__init__.py
${PYSITELIB}/calibre/web/__init__.pyc
${PYSITELIB}/calibre/web/__init__.pyo
${PYSITELIB}/calibre/web/feeds/__init__.py
${PYSITELIB}/calibre/web/feeds/__init__.pyc
${PYSITELIB}/calibre/web/feeds/__init__.pyo
${PYSITELIB}/calibre/web/feeds/feedparser.py
${PYSITELIB}/calibre/web/feeds/feedparser.pyc
${PYSITELIB}/calibre/web/feeds/feedparser.pyo
${PYSITELIB}/calibre/web/feeds/main.py
${PYSITELIB}/calibre/web/feeds/main.pyc
${PYSITELIB}/calibre/web/feeds/main.pyo
${PYSITELIB}/calibre/web/feeds/news.py
${PYSITELIB}/calibre/web/feeds/news.pyc
${PYSITELIB}/calibre/web/feeds/news.pyo
${PYSITELIB}/calibre/web/feeds/recipes/__init__.py
${PYSITELIB}/calibre/web/feeds/recipes/__init__.pyc
${PYSITELIB}/calibre/web/feeds/recipes/__init__.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ap.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ap.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ap.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ars_technica.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ars_technica.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ars_technica.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_atlantic.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_atlantic.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_atlantic.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_b92.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_b92.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_b92.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_barrons.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_barrons.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_barrons.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_bbc.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_bbc.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_bbc.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_blic.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_blic.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_blic.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_business_week.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_business_week.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_business_week.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_chr_mon.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_chr_mon.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_chr_mon.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_clarin.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_clarin.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_clarin.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_cnn.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_cnn.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_cnn.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_common_dreams.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_common_dreams.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_common_dreams.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_cyberpresse.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_cyberpresse.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_cyberpresse.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_daily_telegraph.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_daily_telegraph.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_daily_telegraph.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_danas.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_danas.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_danas.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_de_standaard.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_de_standaard.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_de_standaard.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_demorgen_be.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_demorgen_be.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_demorgen_be.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_discover_magazine.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_discover_magazine.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_discover_magazine.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_economist.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_economist.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_economist.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_el_pais.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_el_pais.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_el_pais.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_endgadget.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_endgadget.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_endgadget.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_espn.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_espn.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_espn.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_faznet.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_faznet.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_faznet.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_financial_times.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_financial_times.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_financial_times.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_forbes.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_forbes.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_forbes.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ftd.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ftd.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_ftd.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_fudzilla.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_fudzilla.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_fudzilla.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_globe_and_mail.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_globe_and_mail.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_globe_and_mail.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_greader.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_greader.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_greader.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_guardian.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_guardian.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_guardian.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_harpers.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_harpers.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_harpers.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_harpers_full.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_harpers_full.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_harpers_full.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_heise.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_heise.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_heise.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_iht.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_iht.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_iht.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_irish_times.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_irish_times.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_irish_times.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_japan_times.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_japan_times.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_japan_times.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_joelonsoftware.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_joelonsoftware.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_joelonsoftware.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_jpost.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_jpost.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_jpost.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_jutarnji.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_jutarnji.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_jutarnji.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_lanacion.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_lanacion.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_lanacion.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_latimes.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_latimes.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_latimes.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_le_monde.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_le_monde.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_le_monde.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_liberation.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_liberation.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_liberation.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_linux_magazine.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_linux_magazine.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_linux_magazine.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_lrb.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_lrb.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_lrb.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_moscow_times.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_moscow_times.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_moscow_times.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nasa.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nasa.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nasa.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_scientist.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_scientist.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_scientist.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_york_review_of_books.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_york_review_of_books.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_york_review_of_books.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_yorker.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_yorker.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_new_yorker.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_newsweek.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_newsweek.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_newsweek.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nin.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nin.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nin.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_novosti.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_novosti.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_novosti.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nspm.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nspm.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nspm.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nspm_int.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nspm_int.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nspm_int.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nytimes.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nytimes.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nytimes.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nytimes_sub.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nytimes_sub.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_nytimes_sub.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_outlook_india.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_outlook_india.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_outlook_india.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_pescanik.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_pescanik.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_pescanik.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_politika.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_politika.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_politika.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_portfolio.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_portfolio.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_portfolio.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_reuters.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_reuters.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_reuters.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_san_fran_chronicle.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_san_fran_chronicle.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_san_fran_chronicle.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_science_aas.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_science_aas.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_science_aas.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_science_news.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_science_news.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_science_news.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_sciencedaily.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_sciencedaily.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_sciencedaily.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_scientific_american.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_scientific_american.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_scientific_american.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_security_watch.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_security_watch.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_security_watch.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_smh.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_smh.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_smh.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_spiegel_int.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_spiegel_int.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_spiegel_int.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_spiegelde.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_spiegelde.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_spiegelde.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_st_petersburg_times.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_st_petersburg_times.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_st_petersburg_times.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_telegraph_uk.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_telegraph_uk.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_telegraph_uk.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_telepolis.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_telepolis.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_telepolis.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_the_nation.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_the_nation.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_the_nation.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_the_scotsman.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_the_scotsman.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_the_scotsman.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_themarketticker.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_themarketticker.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_themarketticker.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_time_magazine.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_time_magazine.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_time_magazine.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_times_online.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_times_online.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_times_online.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_tomshardware.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_tomshardware.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_tomshardware.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_tomshardware_de.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_tomshardware_de.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_tomshardware_de.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_upi.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_upi.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_upi.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_usatoday.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_usatoday.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_usatoday.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_utne.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_utne.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_utne.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_vreme.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_vreme.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_vreme.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wash_post.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wash_post.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wash_post.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wired.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wired.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wired.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wsj.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wsj.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_wsj.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_xkcd.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_xkcd.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_xkcd.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_zdnet.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_zdnet.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_zdnet.pyo
${PYSITELIB}/calibre/web/feeds/recipes/recipe_zeitde.py
${PYSITELIB}/calibre/web/feeds/recipes/recipe_zeitde.pyc
${PYSITELIB}/calibre/web/feeds/recipes/recipe_zeitde.pyo
${PYSITELIB}/calibre/web/feeds/templates.py
${PYSITELIB}/calibre/web/feeds/templates.pyc
${PYSITELIB}/calibre/web/feeds/templates.pyo
${PYSITELIB}/calibre/web/fetch/__init__.py
${PYSITELIB}/calibre/web/fetch/__init__.pyc
${PYSITELIB}/calibre/web/fetch/__init__.pyo
${PYSITELIB}/calibre/web/fetch/simple.py
${PYSITELIB}/calibre/web/fetch/simple.pyc
${PYSITELIB}/calibre/web/fetch/simple.pyo
${PYSITELIB}/cherrypy/__init__.py
${PYSITELIB}/cherrypy/__init__.pyc
${PYSITELIB}/cherrypy/__init__.pyo
${PYSITELIB}/cherrypy/_cpcgifs.py
${PYSITELIB}/cherrypy/_cpcgifs.pyc
${PYSITELIB}/cherrypy/_cpcgifs.pyo
${PYSITELIB}/cherrypy/_cpchecker.py
${PYSITELIB}/cherrypy/_cpchecker.pyc
${PYSITELIB}/cherrypy/_cpchecker.pyo
${PYSITELIB}/cherrypy/_cpconfig.py
${PYSITELIB}/cherrypy/_cpconfig.pyc
${PYSITELIB}/cherrypy/_cpconfig.pyo
${PYSITELIB}/cherrypy/_cpdispatch.py
${PYSITELIB}/cherrypy/_cpdispatch.pyc
${PYSITELIB}/cherrypy/_cpdispatch.pyo
${PYSITELIB}/cherrypy/_cperror.py
${PYSITELIB}/cherrypy/_cperror.pyc
${PYSITELIB}/cherrypy/_cperror.pyo
${PYSITELIB}/cherrypy/_cplogging.py
${PYSITELIB}/cherrypy/_cplogging.pyc
${PYSITELIB}/cherrypy/_cplogging.pyo
${PYSITELIB}/cherrypy/_cpmodpy.py
${PYSITELIB}/cherrypy/_cpmodpy.pyc
${PYSITELIB}/cherrypy/_cpmodpy.pyo
${PYSITELIB}/cherrypy/_cprequest.py
${PYSITELIB}/cherrypy/_cprequest.pyc
${PYSITELIB}/cherrypy/_cprequest.pyo
${PYSITELIB}/cherrypy/_cpserver.py
${PYSITELIB}/cherrypy/_cpserver.pyc
${PYSITELIB}/cherrypy/_cpserver.pyo
${PYSITELIB}/cherrypy/_cpthreadinglocal.py
${PYSITELIB}/cherrypy/_cpthreadinglocal.pyc
${PYSITELIB}/cherrypy/_cpthreadinglocal.pyo
${PYSITELIB}/cherrypy/_cptools.py
${PYSITELIB}/cherrypy/_cptools.pyc
${PYSITELIB}/cherrypy/_cptools.pyo
${PYSITELIB}/cherrypy/_cptree.py
${PYSITELIB}/cherrypy/_cptree.pyc
${PYSITELIB}/cherrypy/_cptree.pyo
${PYSITELIB}/cherrypy/_cpwsgi.py
${PYSITELIB}/cherrypy/_cpwsgi.pyc
${PYSITELIB}/cherrypy/_cpwsgi.pyo
${PYSITELIB}/cherrypy/_cpwsgi_server.py
${PYSITELIB}/cherrypy/_cpwsgi_server.pyc
${PYSITELIB}/cherrypy/_cpwsgi_server.pyo
${PYSITELIB}/cherrypy/lib/__init__.py
${PYSITELIB}/cherrypy/lib/__init__.pyc
${PYSITELIB}/cherrypy/lib/__init__.pyo
${PYSITELIB}/cherrypy/lib/auth.py
${PYSITELIB}/cherrypy/lib/auth.pyc
${PYSITELIB}/cherrypy/lib/auth.pyo
${PYSITELIB}/cherrypy/lib/caching.py
${PYSITELIB}/cherrypy/lib/caching.pyc
${PYSITELIB}/cherrypy/lib/caching.pyo
${PYSITELIB}/cherrypy/lib/covercp.py
${PYSITELIB}/cherrypy/lib/covercp.pyc
${PYSITELIB}/cherrypy/lib/covercp.pyo
${PYSITELIB}/cherrypy/lib/cptools.py
${PYSITELIB}/cherrypy/lib/cptools.pyc
${PYSITELIB}/cherrypy/lib/cptools.pyo
${PYSITELIB}/cherrypy/lib/encoding.py
${PYSITELIB}/cherrypy/lib/encoding.pyc
${PYSITELIB}/cherrypy/lib/encoding.pyo
${PYSITELIB}/cherrypy/lib/http.py
${PYSITELIB}/cherrypy/lib/http.pyc
${PYSITELIB}/cherrypy/lib/http.pyo
${PYSITELIB}/cherrypy/lib/httpauth.py
${PYSITELIB}/cherrypy/lib/httpauth.pyc
${PYSITELIB}/cherrypy/lib/httpauth.pyo
${PYSITELIB}/cherrypy/lib/profiler.py
${PYSITELIB}/cherrypy/lib/profiler.pyc
${PYSITELIB}/cherrypy/lib/profiler.pyo
${PYSITELIB}/cherrypy/lib/safemime.py
${PYSITELIB}/cherrypy/lib/safemime.pyc
${PYSITELIB}/cherrypy/lib/safemime.pyo
${PYSITELIB}/cherrypy/lib/sessions-r2062.py
${PYSITELIB}/cherrypy/lib/sessions-r2062.pyc
${PYSITELIB}/cherrypy/lib/sessions-r2062.pyo
${PYSITELIB}/cherrypy/lib/sessions.py
${PYSITELIB}/cherrypy/lib/sessions.pyc
${PYSITELIB}/cherrypy/lib/sessions.pyo
${PYSITELIB}/cherrypy/lib/static.py
${PYSITELIB}/cherrypy/lib/static.pyc
${PYSITELIB}/cherrypy/lib/static.pyo
${PYSITELIB}/cherrypy/lib/tidy.py
${PYSITELIB}/cherrypy/lib/tidy.pyc
${PYSITELIB}/cherrypy/lib/tidy.pyo
${PYSITELIB}/cherrypy/lib/wsgiapp.py
${PYSITELIB}/cherrypy/lib/wsgiapp.pyc
${PYSITELIB}/cherrypy/lib/wsgiapp.pyo
${PYSITELIB}/cherrypy/lib/xmlrpc.py
${PYSITELIB}/cherrypy/lib/xmlrpc.pyc
${PYSITELIB}/cherrypy/lib/xmlrpc.pyo
${PYSITELIB}/cherrypy/process/__init__.py
${PYSITELIB}/cherrypy/process/__init__.pyc
${PYSITELIB}/cherrypy/process/__init__.pyo
${PYSITELIB}/cherrypy/process/plugins.py
${PYSITELIB}/cherrypy/process/plugins.pyc
${PYSITELIB}/cherrypy/process/plugins.pyo
${PYSITELIB}/cherrypy/process/servers.py
${PYSITELIB}/cherrypy/process/servers.pyc
${PYSITELIB}/cherrypy/process/servers.pyo
${PYSITELIB}/cherrypy/process/win32.py
${PYSITELIB}/cherrypy/process/win32.pyc
${PYSITELIB}/cherrypy/process/win32.pyo
${PYSITELIB}/cherrypy/process/wspbus.py
${PYSITELIB}/cherrypy/process/wspbus.pyc
${PYSITELIB}/cherrypy/process/wspbus.pyo
${PYSITELIB}/cherrypy/scaffold/__init__.py
${PYSITELIB}/cherrypy/scaffold/__init__.pyc
${PYSITELIB}/cherrypy/scaffold/__init__.pyo
${PYSITELIB}/cherrypy/wsgiserver/__init__.py
${PYSITELIB}/cherrypy/wsgiserver/__init__.pyc
${PYSITELIB}/cherrypy/wsgiserver/__init__.pyo
${PYSITELIB}/cssutils/__init__.py
${PYSITELIB}/cssutils/__init__.pyc
${PYSITELIB}/cssutils/__init__.pyo
${PYSITELIB}/cssutils/codec.py
${PYSITELIB}/cssutils/codec.pyc
${PYSITELIB}/cssutils/codec.pyo
${PYSITELIB}/cssutils/css/__init__.py
${PYSITELIB}/cssutils/css/__init__.pyc
${PYSITELIB}/cssutils/css/__init__.pyo
${PYSITELIB}/cssutils/css/csscharsetrule.py
${PYSITELIB}/cssutils/css/csscharsetrule.pyc
${PYSITELIB}/cssutils/css/csscharsetrule.pyo
${PYSITELIB}/cssutils/css/csscomment.py
${PYSITELIB}/cssutils/css/csscomment.pyc
${PYSITELIB}/cssutils/css/csscomment.pyo
${PYSITELIB}/cssutils/css/cssfontfacerule.py
${PYSITELIB}/cssutils/css/cssfontfacerule.pyc
${PYSITELIB}/cssutils/css/cssfontfacerule.pyo
${PYSITELIB}/cssutils/css/cssimportrule.py
${PYSITELIB}/cssutils/css/cssimportrule.pyc
${PYSITELIB}/cssutils/css/cssimportrule.pyo
${PYSITELIB}/cssutils/css/cssmediarule.py
${PYSITELIB}/cssutils/css/cssmediarule.pyc
${PYSITELIB}/cssutils/css/cssmediarule.pyo
${PYSITELIB}/cssutils/css/cssnamespacerule.py
${PYSITELIB}/cssutils/css/cssnamespacerule.pyc
${PYSITELIB}/cssutils/css/cssnamespacerule.pyo
${PYSITELIB}/cssutils/css/csspagerule.py
${PYSITELIB}/cssutils/css/csspagerule.pyc
${PYSITELIB}/cssutils/css/csspagerule.pyo
${PYSITELIB}/cssutils/css/cssproperties.py
${PYSITELIB}/cssutils/css/cssproperties.pyc
${PYSITELIB}/cssutils/css/cssproperties.pyo
${PYSITELIB}/cssutils/css/cssrule.py
${PYSITELIB}/cssutils/css/cssrule.pyc
${PYSITELIB}/cssutils/css/cssrule.pyo
${PYSITELIB}/cssutils/css/cssrulelist.py
${PYSITELIB}/cssutils/css/cssrulelist.pyc
${PYSITELIB}/cssutils/css/cssrulelist.pyo
${PYSITELIB}/cssutils/css/cssstyledeclaration.py
${PYSITELIB}/cssutils/css/cssstyledeclaration.pyc
${PYSITELIB}/cssutils/css/cssstyledeclaration.pyo
${PYSITELIB}/cssutils/css/cssstylerule.py
${PYSITELIB}/cssutils/css/cssstylerule.pyc
${PYSITELIB}/cssutils/css/cssstylerule.pyo
${PYSITELIB}/cssutils/css/cssstylesheet.py
${PYSITELIB}/cssutils/css/cssstylesheet.pyc
${PYSITELIB}/cssutils/css/cssstylesheet.pyo
${PYSITELIB}/cssutils/css/cssunknownrule.py
${PYSITELIB}/cssutils/css/cssunknownrule.pyc
${PYSITELIB}/cssutils/css/cssunknownrule.pyo
${PYSITELIB}/cssutils/css/cssvalue.py
${PYSITELIB}/cssutils/css/cssvalue.pyc
${PYSITELIB}/cssutils/css/cssvalue.pyo
${PYSITELIB}/cssutils/css/property.py
${PYSITELIB}/cssutils/css/property.pyc
${PYSITELIB}/cssutils/css/property.pyo
${PYSITELIB}/cssutils/css/selector.py
${PYSITELIB}/cssutils/css/selector.pyc
${PYSITELIB}/cssutils/css/selector.pyo
${PYSITELIB}/cssutils/css/selectorlist.py
${PYSITELIB}/cssutils/css/selectorlist.pyc
${PYSITELIB}/cssutils/css/selectorlist.pyo
${PYSITELIB}/cssutils/css2productions.py
${PYSITELIB}/cssutils/css2productions.pyc
${PYSITELIB}/cssutils/css2productions.pyo
${PYSITELIB}/cssutils/css3productions.py
${PYSITELIB}/cssutils/css3productions.pyc
${PYSITELIB}/cssutils/css3productions.pyo
${PYSITELIB}/cssutils/cssproductions.py
${PYSITELIB}/cssutils/cssproductions.pyc
${PYSITELIB}/cssutils/cssproductions.pyo
${PYSITELIB}/cssutils/errorhandler.py
${PYSITELIB}/cssutils/errorhandler.pyc
${PYSITELIB}/cssutils/errorhandler.pyo
${PYSITELIB}/cssutils/helper.py
${PYSITELIB}/cssutils/helper.pyc
${PYSITELIB}/cssutils/helper.pyo
${PYSITELIB}/cssutils/parse.py
${PYSITELIB}/cssutils/parse.pyc
${PYSITELIB}/cssutils/parse.pyo
${PYSITELIB}/cssutils/prodparser.py
${PYSITELIB}/cssutils/prodparser.pyc
${PYSITELIB}/cssutils/prodparser.pyo
${PYSITELIB}/cssutils/profiles.py
${PYSITELIB}/cssutils/profiles.pyc
${PYSITELIB}/cssutils/profiles.pyo
${PYSITELIB}/cssutils/script.py
${PYSITELIB}/cssutils/script.pyc
${PYSITELIB}/cssutils/script.pyo
${PYSITELIB}/cssutils/serialize.py
${PYSITELIB}/cssutils/serialize.pyc
${PYSITELIB}/cssutils/serialize.pyo
${PYSITELIB}/cssutils/stylesheets/__init__.py
${PYSITELIB}/cssutils/stylesheets/__init__.pyc
${PYSITELIB}/cssutils/stylesheets/__init__.pyo
${PYSITELIB}/cssutils/stylesheets/medialist.py
${PYSITELIB}/cssutils/stylesheets/medialist.pyc
${PYSITELIB}/cssutils/stylesheets/medialist.pyo
${PYSITELIB}/cssutils/stylesheets/mediaquery.py
${PYSITELIB}/cssutils/stylesheets/mediaquery.pyc
${PYSITELIB}/cssutils/stylesheets/mediaquery.pyo
${PYSITELIB}/cssutils/stylesheets/stylesheet.py
${PYSITELIB}/cssutils/stylesheets/stylesheet.pyc
${PYSITELIB}/cssutils/stylesheets/stylesheet.pyo
${PYSITELIB}/cssutils/stylesheets/stylesheetlist.py
${PYSITELIB}/cssutils/stylesheets/stylesheetlist.pyc
${PYSITELIB}/cssutils/stylesheets/stylesheetlist.pyo
${PYSITELIB}/cssutils/tokenize2.py
${PYSITELIB}/cssutils/tokenize2.pyc
${PYSITELIB}/cssutils/tokenize2.pyo
${PYSITELIB}/cssutils/util.py
${PYSITELIB}/cssutils/util.pyc
${PYSITELIB}/cssutils/util.pyo
${PYSITELIB}/encutils/__init__.py
${PYSITELIB}/encutils/__init__.pyc
${PYSITELIB}/encutils/__init__.pyo
${PYSITELIB}/odf/__init__.py
${PYSITELIB}/odf/__init__.pyc
${PYSITELIB}/odf/__init__.pyo
${PYSITELIB}/odf/anim.py
${PYSITELIB}/odf/anim.pyc
${PYSITELIB}/odf/anim.pyo
${PYSITELIB}/odf/attrconverters.py
${PYSITELIB}/odf/attrconverters.pyc
${PYSITELIB}/odf/attrconverters.pyo
${PYSITELIB}/odf/chart.py
${PYSITELIB}/odf/chart.pyc
${PYSITELIB}/odf/chart.pyo
${PYSITELIB}/odf/config.py
${PYSITELIB}/odf/config.pyc
${PYSITELIB}/odf/config.pyo
${PYSITELIB}/odf/dc.py
${PYSITELIB}/odf/dc.pyc
${PYSITELIB}/odf/dc.pyo
${PYSITELIB}/odf/dr3d.py
${PYSITELIB}/odf/dr3d.pyc
${PYSITELIB}/odf/dr3d.pyo
${PYSITELIB}/odf/draw.py
${PYSITELIB}/odf/draw.pyc
${PYSITELIB}/odf/draw.pyo
${PYSITELIB}/odf/easyliststyle.py
${PYSITELIB}/odf/easyliststyle.pyc
${PYSITELIB}/odf/easyliststyle.pyo
${PYSITELIB}/odf/element.py
${PYSITELIB}/odf/element.py
${PYSITELIB}/odf/element.pyc
${PYSITELIB}/odf/element.pyo
${PYSITELIB}/odf/elementtypes.py
${PYSITELIB}/odf/elementtypes.py
${PYSITELIB}/odf/elementtypes.pyc
${PYSITELIB}/odf/elementtypes.pyo
${PYSITELIB}/odf/form.py
${PYSITELIB}/odf/form.pyc
${PYSITELIB}/odf/form.pyo
${PYSITELIB}/odf/grammar.py
${PYSITELIB}/odf/grammar.pyc
${PYSITELIB}/odf/grammar.pyo
${PYSITELIB}/odf/load.py
${PYSITELIB}/odf/load.py
${PYSITELIB}/odf/load.pyc
${PYSITELIB}/odf/load.pyo
${PYSITELIB}/odf/manifest.py
${PYSITELIB}/odf/manifest.py
${PYSITELIB}/odf/manifest.pyc
${PYSITELIB}/odf/manifest.pyo
${PYSITELIB}/odf/math.py
${PYSITELIB}/odf/math.pyc
${PYSITELIB}/odf/math.pyo
${PYSITELIB}/odf/meta.py
${PYSITELIB}/odf/meta.pyc
${PYSITELIB}/odf/meta.pyo
${PYSITELIB}/odf/namespaces.py
${PYSITELIB}/odf/namespaces.pyc
${PYSITELIB}/odf/namespaces.pyo
${PYSITELIB}/odf/number.py
${PYSITELIB}/odf/number.pyc
${PYSITELIB}/odf/number.pyo
${PYSITELIB}/odf/odf2moinmoin.py
${PYSITELIB}/odf/odf2moinmoin.pyc
${PYSITELIB}/odf/odf2moinmoin.pyo
${PYSITELIB}/odf/odf2xhtml.py
${PYSITELIB}/odf/odf2xhtml.py
${PYSITELIB}/odf/odf2xhtml.pyc
${PYSITELIB}/odf/odf2xhtml.pyo
${PYSITELIB}/odf/odfmanifest.py
${PYSITELIB}/odf/odfmanifest.py
${PYSITELIB}/odf/odfmanifest.pyc
${PYSITELIB}/odf/odfmanifest.pyo
${PYSITELIB}/odf/office.py
${PYSITELIB}/odf/office.pyc
${PYSITELIB}/odf/office.pyo
${PYSITELIB}/odf/ooostyles.py
${PYSITELIB}/odf/ooostyles.pyc
${PYSITELIB}/odf/ooostyles.pyo
${PYSITELIB}/odf/opendocument.py
${PYSITELIB}/odf/opendocument.pyc
${PYSITELIB}/odf/opendocument.pyo
${PYSITELIB}/odf/presentation.py
${PYSITELIB}/odf/presentation.pyc
${PYSITELIB}/odf/presentation.pyo
${PYSITELIB}/odf/script.py
${PYSITELIB}/odf/script.pyc
${PYSITELIB}/odf/script.pyo
${PYSITELIB}/odf/style.py
${PYSITELIB}/odf/style.pyc
${PYSITELIB}/odf/style.pyo
${PYSITELIB}/odf/svg.py
${PYSITELIB}/odf/svg.pyc
${PYSITELIB}/odf/svg.pyo
${PYSITELIB}/odf/table.py
${PYSITELIB}/odf/table.pyc
${PYSITELIB}/odf/table.pyo
${PYSITELIB}/odf/teletype.py
${PYSITELIB}/odf/teletype.pyc
${PYSITELIB}/odf/teletype.pyo
${PYSITELIB}/odf/text.py
${PYSITELIB}/odf/text.pyc
${PYSITELIB}/odf/text.pyo
${PYSITELIB}/odf/thumbnail.py
${PYSITELIB}/odf/thumbnail.py
${PYSITELIB}/odf/thumbnail.pyc
${PYSITELIB}/odf/thumbnail.pyo
${PYSITELIB}/odf/userfield.py
${PYSITELIB}/odf/userfield.py
${PYSITELIB}/odf/userfield.pyc
${PYSITELIB}/odf/userfield.pyo
${PYSITELIB}/odf/xforms.py
${PYSITELIB}/odf/xforms.pyc
${PYSITELIB}/odf/xforms.pyo
${PYSITELIB}/pyPdf/__init__.py
${PYSITELIB}/pyPdf/__init__.pyc
${PYSITELIB}/pyPdf/__init__.pyo
${PYSITELIB}/pyPdf/filters.py
${PYSITELIB}/pyPdf/filters.pyc
${PYSITELIB}/pyPdf/filters.pyo
${PYSITELIB}/pyPdf/generic.py
${PYSITELIB}/pyPdf/generic.pyc
${PYSITELIB}/pyPdf/generic.pyo
${PYSITELIB}/pyPdf/pdf.py
${PYSITELIB}/pyPdf/pdf.pyc
${PYSITELIB}/pyPdf/pdf.pyo
${PYSITELIB}/pyPdf/utils.py
${PYSITELIB}/pyPdf/utils.pyc
${PYSITELIB}/pyPdf/utils.pyo
${PYSITELIB}/pyPdf/xmp.py
${PYSITELIB}/pyPdf/xmp.pyc
${PYSITELIB}/pyPdf/xmp.pyo
man/man1/any2epub.1
man/man1/any2lit.1
man/man1/any2lrf.1
man/man1/calibre-customize.1
man/man1/calibre-server.1
man/man1/calibredb.1
man/man1/comic2epub.1
man/man1/comic2lrf.1
man/man1/comic2pdf.1
man/man1/epub2lrf.1
man/man1/fb22lrf.1
man/man1/feeds2disk.1
man/man1/feeds2epub.1
man/man1/feeds2lrf.1
man/man1/html2epub.1
man/man1/html2lrf.1
man/man1/html2oeb.1
man/man1/isbndb.1
man/man1/librarything.1
man/man1/lit2lrf.1
man/man1/lit2oeb.1
man/man1/lrf-meta.1
man/man1/lrf2html.1
man/man1/lrf2lrs.1
man/man1/lrs2lrf.1
man/man1/mobi2lrf.1
man/man1/mobi2oeb.1
man/man1/odt2oeb.1
man/man1/oeb2lit.1
man/man1/opf-meta.1
man/man1/pdf2lrf.1
man/man1/pdfreflow.1
man/man1/pdftrim.1
man/man1/rtf-meta.1
man/man1/rtf2lrf.1
man/man1/txt2lrf.1
man/man1/web2disk.1
man/man1/web2lrf.1