Package Bio :: Package Entrez :: Module SerialSet
[hide private]
[frames] | no frames]

Source Code for Module Bio.Entrez.SerialSet

 1  # This code is part of the Biopython distribution and governed by its 
 2  # license.  Please see the LICENSE file that should have been included 
 3  # as part of this package. 
 4   
 5  # This code is used to parse XML results returned by Entrez's eFetch 
 6  # from the "journals" database. No DTD file seems to be associated with 
 7  # these XML files. 
 8  # The code is not meant to be used by itself, but is used 
 9  # from Bio.Entrez.__init__.py. 
10   
11  errors = () 
12  integers = () 
13  strings = ( 
14      "SortSerialName", 
15      "Year", 
16      "Month", 
17      "Day", 
18      "IndexingSubset", 
19      "IndexOnlineYN", 
20      "CurrentlyIndexedYN", 
21      "Coverage", 
22      "MinorTitleChangeYN", 
23      "Coden", 
24      "AcidFreeYN", 
25      "ContinuationNotes", 
26      "NlmUniqueID", 
27      "Title", 
28      "MedlineTA", 
29      "Country", 
30      "Place", 
31      "Publisher", 
32      "PublicationFirstYear", 
33      "PublicationEndYear", 
34      "Frequency", 
35      "ISOAbbreviation", 
36      "ISSN", 
37      "XrTitle", 
38      "Language", 
39      "BroadJournalHeading", 
40      "CurrentlyIndexedForSubset", 
41  ) 
42   
43  lists = ( 
44      "IndexingHistoryList", 
45      "BroadJournalHeadingList", 
46      "CrossReferenceList", 
47      "SerialSet", 
48  ) 
49   
50  dictionaries = ( 
51      "CrossReference", 
52      "PublicationInfo", 
53      "DateOfAction", 
54      "IlsCreatedTimestamp", 
55      "IlsUpdatedTimestamp", 
56      "IndexingHistory", 
57  ) 
58   
59  structures = { 
60      "Serial": ["Language"], 
61  } 
62   
63  items = () 
64