├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── contributors.txt ├── pykbart ├── __init__.py ├── constants.py ├── exceptions.py ├── holdings.py ├── kbartrecord.py ├── reader.py ├── test │ ├── __init__.py │ ├── printHoldings.txt │ ├── test_kbart.py │ └── test_reader.py └── writer.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Python template 3 | # Byte-compiled / optimized / DLL files 4 | __pycache__/ 5 | *.py[cod] 6 | *$py.class 7 | 8 | # C extensions 9 | *.so 10 | 11 | # Distribution / packaging 12 | .Python 13 | env/ 14 | build/ 15 | develop-eggs/ 16 | dist/ 17 | downloads/ 18 | eggs/ 19 | .eggs/ 20 | lib/ 21 | lib64/ 22 | parts/ 23 | sdist/ 24 | var/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | winenv 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *,cover 49 | .hypothesis/ 50 | 51 | # Translations 52 | *.mo 53 | *.pot 54 | 55 | # Django stuff: 56 | *.log 57 | local_settings.py 58 | 59 | # Flask stuff: 60 | instance/ 61 | .webassets-cache 62 | 63 | # Scrapy stuff: 64 | .scrapy 65 | 66 | # Sphinx documentation 67 | docs/_build/ 68 | 69 | # PyBuilder 70 | target/ 71 | 72 | # IPython Notebook 73 | .ipynb_checkpoints 74 | 75 | # PyCharm 76 | .idea 77 | 78 | # pyenv 79 | .python-version 80 | 81 | # celery beat schedule file 82 | celerybeat-schedule 83 | 84 | # dotenv 85 | .env 86 | 87 | # virtualenv 88 | venv/ 89 | ENV/ 90 | 91 | # Spyder project settings 92 | .spyderproject 93 | 94 | # Rope project settings 95 | .ropeproject 96 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Charles Ed Hill 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | include tox.ini 3 | recursive-include pykbart *.txt *.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pykbart 2 | pykbart is a library for dealing with data created according to the [KBART standard](http://www.niso.org/workrooms/kbart, "Kbart page on NISO"). It should work under Python 2.7 or 3.x, and should also work for KBART Recommended Practice 1 and 2. It is mostly a convenience wrapper for reading and representing TSV files containing knowledge base data, but can also be used to modify item data in bulk or create KBART files of data from other formats. 3 | 4 | ## Installation 5 | Installation is easiest with pip. 6 | 7 | `pip install pykbart` 8 | 9 | You can also manually install by cloning this repository into your project and running 10 | 11 | `python setup.py install` 12 | 13 | ## Examples 14 | ### Reading 15 | The primary use case is reading information from a KBART file, either for analysis or moving it somewhere. To do so: 16 | ```python 17 | from pykbart import KbartReader 18 | 19 | with KbartReader('./my_kbart.txt') as KBART: 20 | for record in KBART: 21 | print(record.title) 22 | ``` 23 | As long as my_kbart.txt is formatted as according to KBART conventions (i.e. as a tsv with field names corresponding to KBART protocol) the above will print the title of every work. 24 | 25 | KbartReader and KbartWriter (below) are context managers, they will take care of opening and closing your files in the appropriate ways, you just provide the path to the file. 26 | 27 | __Note__: Reader objects are essentially generators, they go forward and not backwards. To be able to get random access and the ability to move forward and back, do something like `kbart_as_list = list(KBART)` on the above, which will read the whole file into a list. Be aware that this might incur significant memory overhead depending on the size of your file. 28 | 29 | ### Writing 30 | You can also bulk edit items. Say for instance a vendor has changed the URL their items are housed at: 31 | ```python 32 | from pykbart import KbartReader, KbartWriter 33 | 34 | with KbartReader('./my_kbart.txt') as reader, KbartWriter('./new_kbart.txt') as writer: 35 | first_item = next(reader) 36 | first_item = change_url(first_item) 37 | writer.writeheader(first_item) 38 | writer.writerow(first_item) 39 | for item in reader: 40 | item = change_url(item) 41 | writer.writerow(item) 42 | ``` 43 | Writing the header row in this way is clunky and will be fixed soon. 44 | 45 | ### Field access 46 | You can reference KBART fields similar to dict access: 47 | 48 | `print(my_kbart['publication_title']) # prints 'Spam Quarterly'` 49 | 50 | There are also convenience properties defined to make access of some common fields a bit less laborious than the KBART spec names them. All can be accessed by dot notation (`kbart.title`) and nearly all can be both read and set with the exception of compound properties like coverage_length and coverage which require calculating information.: 51 | 52 | __coverage_length__: returns a timedelta object representing the length of coverage. You can call .days to see it expressed in days. Will calculate embargos or to present as appropriate, but may throw an IncompleteDateInformation exception if a record does not have enough information to at least infer a start and end date. 53 | 54 | __coverage__: A pretty-printed representation of an items coverage range. 55 | 56 | __start_date__: A textual representation of the first date in an items coverage. Corresponds to field 'date_first_issue_online'. 57 | 58 | __end_date__: A textual representation of the last date in an items coverage. Roughly corresponds to field 'date_last_issue_online', but will print 'Present' if coverage continues to present day. 59 | 60 | __title__: Corresponds to 'publication_title' 61 | 62 | __url__: Corresponds to 'title_url' 63 | 64 | __print_id__: Corresponds to 'print_identifier' 65 | 66 | __e_id__: Corresponds to 'online_identifier' 67 | 68 | __publisher__: Corresponds to 'publisher_name' 69 | 70 | ### Comparing Coverage 71 | If you want to compare coverage of specific journals, say between a journals package you are considering and one you already have that has significant title overlap, you can define a way to match titles (a normalized title, issn, etc.) then use the compare_coverage method. For instance, in the below, let's assume *package_one* is a journal in a journals package I have, and *package_two* is one I'm considering. 72 | 73 | ```python 74 | comparison = package_one.compare_coverage(package_2) 75 | if comparison > 0: 76 | print('We already have better coverage.') 77 | elif comparison < 0: 78 | print('Package 2 would give us lengthier coverage.') 79 | else: 80 | print('The coverage is the same.') 81 | ``` 82 | -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- 1 | Ed Hill 2 | -------------------------------------------------------------------------------- /pykbart/__init__.py: -------------------------------------------------------------------------------- 1 | from .constants import * 2 | from .exceptions import * 3 | from .holdings import * 4 | from .kbartrecord import * 5 | from .reader import * 6 | from .writer import * -------------------------------------------------------------------------------- /pykbart/constants.py: -------------------------------------------------------------------------------- 1 | RP1_FIELDS = ( 2 | 'publication_title', 'print_identifier', 'online_identifier', 3 | 'date_first_issue_online', 'num_first_vol_online', 4 | 'num_first_issue_online', 'date_last_issue_online', 5 | 'num_last_vol_online', 'num_last_issue_online', 'title_url', 6 | 'first_author', 'title_id', 'embargo_info', 'coverage_depth', 7 | 'coverage_notes' 8 | ) 9 | 10 | RP2_FIELDS = ( 11 | 'notes', 'publisher_name', 'publication_type', 12 | 'date_monograph_published_print', 13 | 'date_monograph_published_online', 'monograph_volume', 14 | 'monograph_edition', 'first_editor', 15 | 'parent_publication_title_id', 'preceding_publication_title_id', 16 | 'access_type' 17 | ) 18 | 19 | 20 | PROVIDER_FIELDS = { 21 | 'oclc': ( 22 | 'publisher_name', 'location', 'title_notes', 23 | 'staff_notes', 'vendor_id', 'oclc_collection_name', 24 | 'oclc_collection_id', 'oclc_entry_id', 'oclc_linkscheme', 25 | 'oclc_number', 'ACTION' 26 | ), 27 | 'gale': ( 28 | 'series_title', 'series_number', 'description', 'audience', 29 | 'frequency', 'format', 'referred_peer_re-viewed', 'country', 30 | 'language', 'primary_subject' 31 | ) 32 | } 33 | 34 | 35 | -------------------------------------------------------------------------------- /pykbart/exceptions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | 4 | class ProviderNotFound(KeyError): 5 | def __str__(self): 6 | return ('That provider is not found. See documentation for supported' 7 | 'providers.\n') 8 | 9 | 10 | class InvalidRP(Exception): 11 | def __str__(self): 12 | return ('You entered an invalid Recommended Practice number. ' 13 | 'Please enter 1 or 2 (without quotes).\n') 14 | 15 | 16 | class UnknownEmbargoFormat(Exception): 17 | def __str__(self): 18 | return ('Embargo code not recognized. ' 19 | 'Embargo should be formatted as R1Y or P1Y\n') 20 | 21 | 22 | class IncompleteDateInformation(Exception): 23 | def __str__(self): 24 | return 'Insufficient date information to calculate coverage length.' 25 | -------------------------------------------------------------------------------- /pykbart/holdings.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import re 3 | 4 | from pykbart.exceptions import UnknownEmbargoFormat, IncompleteDateInformation 5 | 6 | embargo_regex = re.compile('(?P[RP])(?P\d+)(?P[DMY])') 7 | TODAY = datetime.date.today() 8 | DATE_FORMAT = '%Y-%m-%d' 9 | 10 | 11 | def embargo_as_dict(embargo): 12 | """ 13 | Take an embargo, break it up with the class level regex, and make 14 | it into a regular dict 15 | 16 | Returns: 17 | A dict containing the embargo sections, or an empty dict if no 18 | embargo. Empty dict is essentially Null Object pattern to avoid 19 | continuous error handling or existence checks when reading a 20 | KBART file. 21 | 22 | Raises: 23 | UnknownEmbargoFormat: If an embargo is passed but can't be parsed 24 | """ 25 | if embargo: 26 | try: 27 | embargo_parts = embargo_regex.match(embargo) 28 | embargo_dict = embargo_parts.groupdict() 29 | except AttributeError: 30 | raise UnknownEmbargoFormat 31 | else: 32 | embargo_dict = {} 33 | return embargo_dict 34 | 35 | 36 | def embargo_as_date(embargo): 37 | """ 38 | Parse an embargo code and produce a date. 39 | 40 | Can call generically for beginning and ending dates becuase only called 41 | for the correct embargo type. Shouldn't fail as long as it's only 42 | called for records that actually have an embargo. 43 | 44 | KBART standard defines Month as 30 days and Year as 365 days, even 45 | though those are rough approximations, so we use that for conversion 46 | 47 | Returns: a datetime object 48 | """ 49 | unit, length = embargo['unit'], int(embargo['length']) 50 | if unit == 'M': 51 | length *= 30 52 | elif unit == 'Y': 53 | length *= 365 54 | return TODAY - datetime.timedelta(length) 55 | 56 | 57 | def check_embargo(embargo): 58 | if not re.match(embargo_regex, embargo): 59 | raise UnknownEmbargoFormat 60 | 61 | 62 | # TODO: make able to compensate or warn for wrongly formatted dates 63 | def parse_date_string(date): 64 | """ 65 | Parse the date string from the KBART and make a datetime object. 66 | 67 | Add 1s until we have year, month, and day; if KBART record holding field 68 | is missing a month or day, we assume the first of that period, hence 1s. 69 | 70 | Reliant on dates being in KBART specified format. 71 | 72 | Args: 73 | date: the date string from a KBART date field 74 | 75 | Returns: 76 | a datetime object representing that date 77 | """ 78 | date_parts = [int(x) for x in date.split('-')] 79 | while len(date_parts) < 3: 80 | date_parts.append(1) 81 | return datetime.date(*date_parts) 82 | 83 | 84 | def coverage_begins(holdings, embargo): 85 | """ 86 | Calculate and return the first date of coverage. 87 | 88 | Checks for embargo information first, then goes to the listed date. If 89 | embargo is an R, then coverage is the amount of the embargo back from 90 | today up to today. 91 | 92 | Returns: a datetime object for the last date of coverage 93 | 94 | Raises: IncompleteDateInformation: If no start date can be found or 95 | calculated. 96 | """ 97 | if holdings[0]: 98 | begins = parse_date_string(holdings[0]) 99 | elif embargo.get('type') == 'R': 100 | begins = embargo_as_date(embargo) 101 | else: 102 | raise IncompleteDateInformation 103 | return begins 104 | 105 | 106 | def coverage_ends(holdings, embargo): 107 | """ 108 | Calculate and return the last date of coverage. 109 | 110 | If embargo is an R, then coverage ends on current day (current issue 111 | release technically, but with embargoes there is no way to know). If 112 | embargo is P then the last coverage date is the amount of the embargo 113 | back from today. If no end-date or embargo information is there, KBART 114 | assumes coverage is to present. 115 | 116 | Returns: a datetime object for the last date of coverage 117 | """ 118 | if holdings[3]: 119 | ends = parse_date_string(holdings[3]) 120 | elif embargo.get('type') == 'P': 121 | ends = embargo_as_date(embargo) 122 | else: 123 | ends = TODAY 124 | return ends 125 | 126 | 127 | def coverage_ends_text(holdings, embargo, date_format=DATE_FORMAT): 128 | ending_date = coverage_ends(holdings, embargo) 129 | if holdings[3]: 130 | return holdings[3] 131 | elif ending_date == TODAY: 132 | return 'Present' 133 | else: 134 | return ending_date.strftime(date_format) 135 | 136 | 137 | def coverage_begins_text(holdings, embargo, date_format=DATE_FORMAT): 138 | return (holdings[0] if holdings[0] 139 | else coverage_begins(holdings, embargo).strftime(date_format)) 140 | 141 | 142 | def coverage_pretty_print(holdings, embargo, date_format=DATE_FORMAT): 143 | begin_vol, begin_issue = holdings[1], holdings[2] 144 | end_vol, end_issue = holdings[4], holdings[5] 145 | return '{0}{1}{2} - {3}{4}{5}'.format( 146 | coverage_begins_text(holdings, embargo, date_format), 147 | _volume_pp(begin_vol), 148 | _issue_pp(begin_issue), 149 | coverage_ends_text(holdings, embargo, date_format), 150 | _volume_pp(end_vol), 151 | _issue_pp(end_issue) 152 | ) 153 | 154 | 155 | def _volume_pp(vol): 156 | return ', Vol: ' + vol if vol else '' 157 | 158 | 159 | def _issue_pp(issue): 160 | return ', Issue: ' + issue if issue else '' 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /pykbart/kbartrecord.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | from __future__ import (absolute_import, division, 5 | print_function, unicode_literals) 6 | from collections import OrderedDict, MutableMapping 7 | 8 | import six 9 | 10 | from pykbart.holdings import (coverage_begins, coverage_begins_text, 11 | coverage_ends, coverage_ends_text, embargo_as_dict, 12 | coverage_pretty_print, check_embargo) 13 | from pykbart.constants import RP1_FIELDS, RP2_FIELDS, PROVIDER_FIELDS 14 | from pykbart.exceptions import InvalidRP, ProviderNotFound 15 | 16 | 17 | @six.python_2_unicode_compatible 18 | class KbartRecord(MutableMapping): 19 | """KbartRecord representation without having to remember field positions.""" 20 | 21 | def __init__(self, 22 | data=None, 23 | provider=None, 24 | rp=2, 25 | fields=None): 26 | """ 27 | Take or figure out the field names and zip them with values. 28 | 29 | Expected use is reading from a csv, but can build up the fields 30 | based on input. 31 | 32 | Args: 33 | data: Values for kbart fields, usually from csv 34 | provider: String of a publisher/provider's name. KbartRecord recommended 35 | practice allows publishers to define their own special fields 36 | to be tacked at the end. Some providers fields are provided. If 37 | not, just attach them to or pass them as 'fields' 38 | rp: Int of Recommended Practice version. Most organizations should 39 | be using RP2, but some early adopters, i.e. OCLC, still use 40 | RP1. 41 | fields: Iterable of field names to be attached to data. 42 | Will usually be passed from KbartReader class. 43 | """ 44 | self.provider = provider 45 | self.rp = rp 46 | if data: 47 | self.data = data 48 | else: 49 | self.data = [] 50 | 51 | if fields: 52 | self.fields = fields 53 | else: 54 | self.fields = self._create_fields() 55 | 56 | self._kbart_data = OrderedDict(six.moves.zip_longest(self.fields, 57 | self.data, 58 | fillvalue='')) 59 | 60 | def __getitem__(self, key): 61 | """Delegate most work to the OrderedDict held by class.""" 62 | return self._kbart_data[key] 63 | 64 | def __setitem__(self, key, value): 65 | self._kbart_data[key] = value 66 | 67 | def __delitem__(self, key): 68 | del(self._kbart_data[key]) 69 | 70 | def __repr__(self): 71 | return ('{0}(data={1}, provider={2}, rp={3}, fields={4})' 72 | .format(self.__class__.__name__, 73 | six.moves.reprlib.repr([str(x) for x in self.data]), 74 | str(self.provider), 75 | self.rp, 76 | six.moves.reprlib.repr(self.fields))) 77 | 78 | def __str__(self): 79 | output = [' -------\n'] 80 | output.extend([_format_strings(the_string=self._kbart_data[key], 81 | prefix='{0}: '.format(key), 82 | suffix='\n') 83 | for key in self._kbart_data]) 84 | return ''.join(output) 85 | 86 | def __len__(self): 87 | return len(self._kbart_data) 88 | 89 | def __iter__(self): 90 | return iter(self._kbart_data) 91 | 92 | def get_fields(self, *args): 93 | """Get values for the listed keys.""" 94 | if not args: 95 | return list(self._kbart_data.values()) 96 | 97 | return [self._kbart_data[x] for x in args 98 | if x in self._kbart_data] 99 | 100 | @property 101 | def coverage_length(self): 102 | embargo, holdings = embargo_as_dict(self.embargo), self.holdings_fields 103 | return (coverage_ends(holdings, embargo) - 104 | coverage_begins(holdings, embargo)) 105 | 106 | def compare_coverage(self, other_kbart): 107 | """ 108 | Compare the coverage dates for this kbart instance against another. 109 | 110 | Args: 111 | other_kbart: Another KBART instance 112 | 113 | Returns: An int describing the coverage; positive means the current 114 | holding has better coverage by that many days, negative means the 115 | other KBART has better coverage, 0 is equal. 116 | 117 | """ 118 | return self.coverage_length.days - other_kbart.coverage_length.days 119 | 120 | @property 121 | def start_date(self): 122 | embargo = embargo_as_dict(self.embargo) 123 | return coverage_begins_text(self.holdings_fields, embargo) 124 | 125 | @start_date.setter 126 | def start_date(self, value): 127 | self._kbart_data['date_first_issue_online'] = value 128 | 129 | @property 130 | def end_date(self): 131 | embargo = embargo_as_dict(self.embargo) 132 | return coverage_ends_text(self.holdings_fields, embargo) 133 | 134 | @end_date.setter 135 | def end_date(self, value): 136 | self._kbart_data['date_last_issue_online'] = value 137 | 138 | @property 139 | def coverage(self): 140 | embargo = embargo_as_dict(self.embargo) 141 | return coverage_pretty_print(self.holdings_fields, embargo) 142 | 143 | @property 144 | def embargo(self): 145 | return self._kbart_data['embargo_info'] 146 | 147 | @embargo.setter 148 | def embargo(self, value): 149 | check_embargo(value) 150 | self._kbart_data['embargo_info'] = value 151 | 152 | @property 153 | def title(self): 154 | return self._kbart_data['publication_title'] 155 | 156 | @title.setter 157 | def title(self, value): 158 | self._kbart_data['publication_title'] = value 159 | 160 | @property 161 | def url(self): 162 | return self._kbart_data['title_url'] 163 | 164 | @url.setter 165 | def url(self, value): 166 | self._kbart_data['title_url'] = value 167 | 168 | @property 169 | def print_id(self): 170 | return self._kbart_data['print_identifier'] 171 | 172 | @print_id.setter 173 | def print_id(self, value): 174 | self._kbart_data['print_identifier'] = value 175 | 176 | @property 177 | def e_id(self): 178 | return self._kbart_data['online_identifier'] 179 | 180 | @e_id.setter 181 | def e_id(self, value): 182 | self._kbart_data['online_identifier'] = value 183 | 184 | @property 185 | def publisher(self): 186 | return self._kbart_data['publisher_name'] 187 | 188 | @publisher.setter 189 | def publisher(self, value): 190 | self._kbart_data['publisher_name'] = value 191 | 192 | def _create_fields(self): 193 | fields = list(RP1_FIELDS) 194 | if int(self.rp) == 2: 195 | fields.extend(RP2_FIELDS) 196 | elif not int(self.rp) == 1: 197 | raise InvalidRP 198 | 199 | if self.provider is not None: 200 | try: 201 | fields.extend(PROVIDER_FIELDS[self.provider]) 202 | except KeyError: 203 | raise ProviderNotFound 204 | return fields 205 | 206 | @property 207 | def holdings_fields(self): 208 | return list(self._kbart_data.values())[3:9] 209 | 210 | 211 | def _format_strings(the_string='', prefix='', suffix=''): 212 | """Small convenience function, allows easier logic in .format() calls""" 213 | if the_string: 214 | return '{0}{1}{2}'.format(prefix, the_string, suffix) 215 | else: 216 | return '' 217 | -------------------------------------------------------------------------------- /pykbart/reader.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Read a csv of kbart records.""" 3 | # coding: utf-8 4 | from __future__ import (absolute_import, division, print_function) 5 | import contextlib 6 | 7 | import six 8 | 9 | from pykbart.kbartrecord import KbartRecord 10 | 11 | import unicodecsv as csv 12 | 13 | 14 | class Reader(six.Iterator): 15 | 16 | def __init__(self, file_handle, delimiter='\t'): 17 | self.reader = csv.reader(file_handle, delimiter=delimiter, encoding='utf-8') 18 | self.fields = list(six.next(self.reader)) 19 | 20 | def __next__(self): 21 | return KbartRecord(six.next(self.reader), fields=self.fields) 22 | 23 | def __iter__(self): 24 | return self 25 | 26 | 27 | @contextlib.contextmanager 28 | def KbartReader(file_path, delimiter='\t'): 29 | f = open(file_path, 'rb') 30 | try: 31 | yield Reader(f, delimiter=delimiter) 32 | finally: 33 | f.close() 34 | -------------------------------------------------------------------------------- /pykbart/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybrarian/pykbart/f63318d21171bd116bd2b65dd8b792721fca237f/pykbart/test/__init__.py -------------------------------------------------------------------------------- /pykbart/test/printHoldings.txt: -------------------------------------------------------------------------------- 1 | publication_title print_identifier online_identifier date_first_issue_online num_first_vol_online num_first_issue_online date_last_issue_online num_last_vol_online num_last_issue_online title_url first_author title_id embargo_info coverage_depth coverage_notes publisher_name location title_notes staff_notes vendor_id oclc_collection_name oclc_collection_id oclc_entry_id oclc_linkscheme oclc_number ACTION 2 | Art education. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1514275 raw 3 | Against the Grain. Print issues: Retains past 2 years. R2Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 19378899 raw 4 | Religious studies. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1763674 raw 5 | Journal of college student psychotherapy. 1986 1997 Print issues: 1-11 (1986-1997) print Print issues: 11-20 (1987-1999) Ely Library Print and Microforms Collection customer.1410.4 11664095 raw 6 | Variety. Retains current year. [Microfilm=362-369 1996-1998] R1Y print Retains current year. [Microfilm=362-369 1996-1998] Ely Library Print and Microforms Collection customer.1410.4 1768958 raw 7 | Graphis. 1983 2004 Print issues: 39-60 (1983-2004) print Print issues: 39-60 (1983-2004) Ely Library Print and Microforms Collection customer.1410.4 1751402 raw 8 | No child left behind compliance insider Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 53188458 raw 9 | Women & politics. 1987 1996 Print issues: 7-16(1987-1996) print Print issues: 7-16(1987-1996) Ely Library Print and Microforms Collection customer.1410.4 5661577 raw 10 | Psychohistory review, The 1976 1999 Print issues: 5-27(1976-1999) print Print issues: 5-27(1976-1999) Ely Library Print and Microforms Collection customer.1410.4 raw 11 | E :the environmental magazine. 1990 1992 Print issues: 1-3(1990-1992). print Print issues: 1-3(1990-1992). Ely Library Print and Microforms Collection customer.1410.4 20535392 raw 12 | Topics in early childhood special education. 1981 1991 Print issues: 1-10 (1981-1991) print Print issues: 1-10 (1981-1991); 28-29:3 (2008-2009) Ely Library Print and Microforms Collection customer.1410.4 6550492 raw 13 | PRIMUS: problems, resources, and issues in mathematics undergraduate studies 1051-1970 1993 3 1996 6 Print issues: 3 - 6 (1993 - 1996), Retains current year print Ely Library Print and Microforms Collection customer.1410.4 21889576 raw 14 | PRIMUS: problems, resources, and issues in mathematics undergraduate studies 1051-1970 Print issues: 3 - 6 (1993 - 1996), Retains current year R1Y print Ely Library Print and Microforms Collection customer.1410.4 21889576 raw 15 | Contemporary psychoanalysis. 1980 1994 Print issues: 16-30(1980-1994.) print Print issues: 16-30(1980-1994.) Ely Library Print and Microforms Collection customer.1410.4 1564972 raw 16 | D.H. Lawrence review, The 1974 1999 Print issues: 7-28(1974-1999) print Print issues: 7-28(1974-1999) Ely Library Print and Microforms Collection customer.1410.4 raw 17 | Scholastic coach. [Microfilm=42-63 1972-1994] print [Microfilm=42-63 1972-1994] Ely Library Print and Microforms Collection customer.1410.4 1765112 raw 18 | Mediterranean quarterly :a journal of global issues. 1990 1995 Print issues: 1-6(1990-1995) print Print issues: 1-6(1990-1995) Ely Library Print and Microforms Collection customer.1410.4 20704333 raw 19 | New African. 2010 2015 Print issues: No. 501-546 (2010-2015). print Print issues: No. 501-546 (2010-2015). Ely Library Print and Microforms Collection customer.1410.4 3955328 raw 20 | Comparative political studies. 1977 10 1995 28 Print issues: 10-28(1977-1995) print Print issues: 10-28(1977-1995) Ely Library Print and Microforms Collection customer.1410.4 1564560 raw 21 | Journalism & mass communication quarterly. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 30858401 raw 22 | Journal of sport nutrition and exercise metabolism Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 23 | Mailbox kindergarten, The Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 24 | New York times book review, The Print issues: Retains 2 months. print Print issues: Retains 2 months. Ely Library Print and Microforms Collection customer.1410.4 raw 25 | Springfield republican. Print issues: Retains 1 month. [Microfilm=1824-1846]. print Print issues: Retains 1 month. [Microfilm=1824-1846]. Ely Library Print and Microforms Collection customer.1410.4 9537980 raw 26 | Dance teacher. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 40576375 raw 27 | Parents magazine. 1996 Print issues: 71 (1996)- print Print issues: 71 (1996)- Ely Library Print and Microforms Collection customer.1410.4 30104618 raw 28 | Science. Print issues: Retained in hardcopy until microfilm is received. [Microfilm=112- 1950- ] R1Y print Print issues: Retained in hardcopy until microfilm is received. [Microfilm=112- 1950- ] Ely Library Print and Microforms Collection customer.1410.4 1644869 raw 29 | Trends in organized crime. 1995 1 1999 4 Print issues: 1-4 (1995-1999); retains current year. fulltext Ely Library Print and Microforms Collection customer.1410.4 51393183 raw 30 | Euterpeiad, or, Musical intelligencer, The 1820 1823 Print issues: 1-3;1(1820-1823) print Print issues: 1-3;1(1820-1823) Ely Library Print and Microforms Collection customer.1410.4 raw 31 | Accounting historians journal, The 1974 1 1994 21 Print issues: 1-21(1974-1994) print Print issues: 1-21(1974-1994) Ely Library Print and Microforms Collection customer.1410.4 raw 32 | Geography :journal of the Geographical Association. 1973 2003 Print issues: 58-88(1973-2003); retains current year. print Print issues: 58-88(1973-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2447169 raw 33 | Geography :journal of the Geographical Association. Print issues: 58-88(1973-2003); retains current year. R1Y print Print issues: 58-88(1973-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2447169 raw 34 | Public history news. 1995 Print issues: 16- (1995-) print Print issues: 16- (1995-) Ely Library Print and Microforms Collection customer.1410.4 14715008 raw 35 | Journal of offender counseling, services & rehabilitation. 1979 1997 Print issues: 4-20(1979-1997) print Print issues: 4-20(1979-1997) Ely Library Print and Microforms Collection customer.1410.4 5526994 raw 36 | Theatre notebook. 1990 44 2001 55 Print issues: 44-55 (1990-2001) print Print issues: 44-53 (1990-1999) Ely Library Print and Microforms Collection customer.1410.4 1767405 raw 37 | Journal of economic literature. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1788942 raw 38 | Tennis. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 3830751 raw 39 | Cobblestone. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 5962536 raw 40 | Journal of undergraduate mathematics 1976 1993 Print issues: 8-25(1976-1993) print Print issues: 8-25(1976-1993) Ely Library Print and Microforms Collection customer.1410.4 1754853 raw 41 | Topics in early childhood education. 1981 1 1991 10 Print issues: 1-10 (1981-1991) print Ely Library Print and Microforms Collection customer.1410.4 313207998 raw 42 | Measurement and evaluation in counseling and development. 1985 1989 Print issues: 18-22(1985-1989) print Print issues: 18-22(1985-1989) Ely Library Print and Microforms Collection customer.1410.4 10874466 raw 43 | Death education. 1977 1984 Print issues: 1-8(1977-1984) print Print issues: 1-8(1977-1984) Ely Library Print and Microforms Collection customer.1410.4 2977179 raw 44 | Journal of family issues. 1980 1997 Print issues: 1-18(1980-1997) print Print issues: 1-18(1980-1997) Ely Library Print and Microforms Collection customer.1410.4 5035642 raw 45 | Update :the applications of research in music education. 1994 1997 Print issues: 12-17 (1994-1997) print Print issues: 12-17 (1994-1999) Ely Library Print and Microforms Collection customer.1410.4 9087320 raw 46 | Professional geographer :the journal of the Association of American Geographers, The 2012 Print issues: 64 (2012)- print Print issues: 64 (2012)- Ely Library Print and Microforms Collection customer.1410.4 raw 47 | Jazz education journal. 2001 2007 Print issues: 34-39(2001-2007) print Print issues: 34-39(2001-2007) Ely Library Print and Microforms Collection customer.1410.4 48498615 raw 48 | Teaching of psychology. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1834160 raw 49 | Social science computer review. 1988 1998 Print issues: 6-16(1988-1998) print Print issues: 6-16(1988-1998) Ely Library Print and Microforms Collection customer.1410.4 16077884 raw 50 | Criminology. 1977 1993 Print issues: 15-31(1977-1993); retains current year print Print issues: 15-31(1977-1993); retains current year Ely Library Print and Microforms Collection customer.1410.4 1565445 raw 51 | Criminology. Print issues: 15-31(1977-1993); retains current year R1Y print Print issues: 15-31(1977-1993); retains current year Ely Library Print and Microforms Collection customer.1410.4 1565445 raw 52 | NSTA report / Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 11360749 raw 53 | Massachusetts review, The 1959 Print issues: 1-(1959- to present) print Print issues: 1-(1959- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 54 | Modern fiction studies. Print issues: 3-44(1957-1999) print Print issues: 3-44(1957-1999) Ely Library Print and Microforms Collection customer.1410.4 1645443 raw 55 | Journal of research in personality. 1986 2001 Print issues: 20-35(1986-2001) print Print issues: 20-35(1986-2001) Ely Library Print and Microforms Collection customer.1410.4 1788573 raw 56 | Social studies :a periodical for teachers and administrators, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 57 | NEA today. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 8795264 raw 58 | Criminal justice review. 1980 2002 Print issues: 5-27(1980-2002) print Print issues: 5-27(1980-2002) Ely Library Print and Microforms Collection customer.1410.4 2313761 raw 59 | Teaching philosophy. 1984 Print issues: 7-(1984- to present) print Print issues: 7-(1984- to present) Ely Library Print and Microforms Collection customer.1410.4 2773264 raw 60 | Journal of musicological research, The 1986 1995 Print issues: 6-14(1986-1995) print Print issues: 6-14(1986-1995) Ely Library Print and Microforms Collection customer.1410.4 raw 61 | Journal of behavior therapy and experimental psychiatry. 1970 1997 Print issues: 1-28(1970-1997) print Print issues: 1-28(1970-1997) Ely Library Print and Microforms Collection customer.1410.4 1800139 raw 62 | Journal of contemporary criminal justice. 1987 1998 Print issues: 3-14(1987-1998) print Print issues: 3-14(1987-1998) Ely Library Print and Microforms Collection customer.1410.4 6155314 raw 63 | JOPERD 0730-3084 Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 7374247 raw 64 | Journal of special education, The 1966 1973 Print issues: 1-7 (1966-1973) print Print issues: 1-7 (1966-1973) Ely Library Print and Microforms Collection customer.1410.4 raw 65 | Sporting news, The Print issues: Retains 3 months. print Print issues: Retains 3 months. Ely Library Print and Microforms Collection customer.1410.4 raw 66 | International journal of the addictions, The 1980 1989 Print issues: 15-24(1980-1989) print Print issues: 15-24(1980-1989) Ely Library Print and Microforms Collection customer.1410.4 raw 67 | Philosophy and literature. Print issues: 4-19 (1980-1995) print Print issues: 4-19 (1980-1995) Ely Library Print and Microforms Collection customer.1410.4 2715857 raw 68 | Ms. 1990 Print issues: 1-(1990- to present) print Print issues: 1-(1990- to present) Ely Library Print and Microforms Collection customer.1410.4 4286295 raw 69 | Social cognition. 1983 1996 Print issues: 2-14(1983-1996); Retains current year print Print issues: 2-14(1983-1996); Retains current year Ely Library Print and Microforms Collection customer.1410.4 7684885 raw 70 | Social cognition. Print issues: 2-14(1983-1996); Retains current year R1Y print Print issues: 2-14(1983-1996); Retains current year Ely Library Print and Microforms Collection customer.1410.4 7684885 raw 71 | Reading today :a bimonthly newspaper of the International Reading Association. Print issues: Retains current year. R1Y print Print issues: Retains current year. As of 7/2015, title change to Literacy Today Ely Library Print and Microforms Collection customer.1410.4 12406912 raw 72 | Elementary school guidance & counseling. 1973 1990 Print issues: 8-25(1973-1990) print Print issues: 8-25(1973-1990) Ely Library Print and Microforms Collection customer.1410.4 1343041 raw 73 | New times =Novoe vremi︠a︡. 1996 2006 Print issues: 1996-2006 print Print issues: 1996-2006 Ely Library Print and Microforms Collection customer.1410.4 31386532 raw 74 | New York times review of books, The [Microfilm=1911-1920:June] print [Microfilm=1911-1920:June] Ely Library Print and Microforms Collection customer.1410.4 raw 75 | Gerontologist, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 76 | Education. 1994 1995 Print issues: 115(1994); retains current year. print Print issues: 115(1994); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567521 raw 77 | Education. Print issues: 115(1994); retains current year. R1Y print Print issues: 115(1994); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567521 raw 78 | Journal of geography, The 1976 1998 Print issues: 75-97(1976-1998); retains current year print Print issues: 75-97(1976-1998); retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 79 | Journal of geography, The Print issues: 75-97(1976-1998); retains current year R1Y print Print issues: 75-97(1976-1998); retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 80 | Film comment. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2266507 raw 81 | Educational review. 1891 1907 Print issues: 1-19, 21-24, 28-33, 51-75(1891-1900, 1901-1902, 1904-1907, 1916-1928) print Print issues: 1-19, 21-24, 28-33, 51-75(1891-1900, 1901-1902, 1904-1907, 1916-1928) Ely Library Print and Microforms Collection customer.1410.4 761270693 raw 82 | Educational review. 1916 1928 Print issues: 1-19, 21-24, 28-33, 51-75(1891-1900, 1901-1902, 1904-1907, 1916-1928) fulltext Print issues: 1-19, 21-24, 28-33, 51-75(1891-1900, 1901-1902, 1904-1907, 1916-1928) Ely Library Print and Microforms Collection customer.1410.4 761270693 raw 83 | Bulletin (new series) of the American Mathematical Society. 1979 1 1988 19 Print issues: 1-19(1979-1988) print Print issues: 1-19(1979-1988) Ely Library Print and Microforms Collection customer.1410.4 4672985 raw 84 | Journal of vocational behavior. 1975 1996 Print issues: 6-49(1975-1996) print Print issues: 6-49(1975-1996) Ely Library Print and Microforms Collection customer.1410.4 1783396 raw 85 | National review. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1759389 raw 86 | American history. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 30148811 raw 87 | Journal of music therapy. 1967 1978 Print issues: 4-16, 21-36(1967-1978, 1983-1989) print Print issues: 4-36(1967-1999) incomplete Ely Library Print and Microforms Collection customer.1410.4 2308498 raw 88 | Journal of music therapy. 1983 1989 Print issues: 4-16, 21-36(1967-1978, 1983-1989) print Print issues: 4-36(1967-1999) incomplete Ely Library Print and Microforms Collection customer.1410.4 2308498 raw 89 | Phylon. Print issues: Microfilm: 21-29, 1960-1968 print Print issues: Microfilm: 21-29, 1960-1968 Ely Library Print and Microforms Collection customer.1410.4 1642817 raw 90 | Horn book magazine, The 1973 1979 Print issues: 49-55(1973-1979); retains current year. print Print issues: 49-55(1973-1979); retains current year. Ely Library Print and Microforms Collection customer.1410.4 899294184 raw 91 | Horn book magazine, The Print issues: 49-55(1973-1979); retains current year. R1Y print Print issues: 49-55(1973-1979); retains current year. Ely Library Print and Microforms Collection customer.1410.4 899294184 raw 92 | Education and training in autism and developmental disabilities 2011 Print issues: 2011-present (46-present). print Print issues: 2011-present (46-present). Ely Library Print and Microforms Collection customer.1410.4 550581040 raw 93 | Preventing school failure. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 20306182 raw 94 | Suicide & life-threatening behavior. 1979 Print issues: 9-44(1979-2014) print Print issues: 9-44(1979- 2014) Ely Library Print and Microforms Collection customer.1410.4 2705480 raw 95 | Mix, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 96 | Bookforum Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 35812085 raw 97 | Journal of health education / 1991 2000 Print issues: 22-31(1991-2000) print Print issues: 22-31(1991-2000) Ely Library Print and Microforms Collection customer.1410.4 23065182 raw 98 | Journal of Chemical Education Print issues: 88-90.5 (2011- to May 2013) print Print issues: 88-90.5 (2011- to May 2013) Ely Library Print and Microforms Collection customer.1410.4 1754494 raw 99 | Journal of Chemical Education 2011 2013 Print issues: 88-90.5 (2011- to May 2013) fulltext Print issues: 88-90.5 (2011- to May 2013) Ely Library Print and Microforms Collection customer.1410.4 1754494 raw 100 | English journal. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1325886 raw 101 | Death studies. 1985 1993 Print issues: 9-17(1985-1993) print Print issues: 9-17(1985-1993) Ely Library Print and Microforms Collection customer.1410.4 10890428 raw 102 | Trends in organized crime. 1995 1 1999 4 Print issues: 1-4 (1995-1999); retains current year. print Print issues: 1-4 (1995-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 33063688 raw 103 | Journal of exceptional children. 1934 1951 Print issues: 1-17(1934-1951) print Print issues: 1-17(1934-1951) Ely Library Print and Microforms Collection customer.1410.4 6874661 raw 104 | Birth control review. 1917 1 1940 24 Print issues: 1-24(1917-1940) print Print issues: 1-24(1917-1940) Ely Library Print and Microforms Collection customer.1410.4 1536495 raw 105 | American forests. 1984 90 1988 94 Print issues: 90-94(1984-1988); retains current year. print Print issues: 90-94(1984-1988); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1479884 raw 106 | American forests. Print issues: 90-94(1984-1988); retains current year. R1Y print Print issues: 90-94(1984-1988); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1479884 raw 107 | New York times book review and magazine. [Microfilm=1920:June-1922:Oct.] print [Microfilm=1920:June-1922:Oct.] Ely Library Print and Microforms Collection customer.1410.4 4766688 raw 108 | New York times magazine, The Print issues: Retains 2 months. print Print issues: Retains 2 months. Ely Library Print and Microforms Collection customer.1410.4 raw 109 | American film 1983 9 1988 13 Print issues: 9-13(1983-1988) print Print issues: 9-13(1983-1988) Ely Library Print and Microforms Collection customer.1410.4 2246336 raw 110 | Journal of accounting education. 1988 1993 Print issues: 6-11(1988-1993.) print Print issues: 6-11(1988-1993.) Ely Library Print and Microforms Collection customer.1410.4 9384181 raw 111 | Etc. :a review of general semantics. 1973 1990 Print issues: 30-46(1973-1990) print Print issues: 30-46(1973-1990) Ely Library Print and Microforms Collection customer.1410.4 1435639 raw 112 | Learning disabilities research & practice :a publication of the Division for Learning Disabilities, Council for Exceptional Children. 1991 2000 Print issues: 6-16(1991-2000); retains current year. print Print issues: 6-16(1991-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 22378988 raw 113 | Learning disabilities research & practice :a publication of the Division for Learning Disabilities, Council for Exceptional Children. Print issues: 6-16(1991-2000); retains current year. R1Y print Print issues: 6-16(1991-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 22378988 raw 114 | Mental retardation. 1981 1996 Print issues: 19-34 (1981-1996) print Print issues: 19-34 (1981-1996) Ely Library Print and Microforms Collection customer.1410.4 1713511 raw 115 | GA: The magazine of the Geographical Association Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 62083041 raw 116 | TLS, the Times literary supplement. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2241740 raw 117 | Byte. [Microfilm=3-23 1978-1998] print [Microfilm=3-23 1978-1998] Ely Library Print and Microforms Collection customer.1410.4 6733551 raw 118 | Far Eastern economic review. Print issues: 157-164(1994-2001) print Print issues: 157-164(1994-2001) Ely Library Print and Microforms Collection customer.1410.4 1568821 raw 119 | Phi Delta Kappan. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1762202 raw 120 | Economic journal :the quarterly journal of the Royal Economic Society, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 121 | Psychiatry. 1980 1993 Print issues: 43-56 (1980-1993); Retains past 3 years print Print issues: 43-56 (1980-1993); Retains past 3 years Ely Library Print and Microforms Collection customer.1410.4 1763044 raw 122 | Psychiatry. Print issues: 43-56 (1980-1993); Retains past 3 years R3Y print Print issues: 43-56 (1980-1993); Retains past 3 years Ely Library Print and Microforms Collection customer.1410.4 1763044 raw 123 | Vocational education journal. 1986 1993 Print issues: 61-68 (1986-1993) print Print issues: 61-68 (1986-1993) Ely Library Print and Microforms Collection customer.1410.4 12359089 raw 124 | Technology teacher 1989 49 1994 53 Print issues: 49-53 (1989-1994) print Print issues: 49-53 (1989-1994) Ely Library Print and Microforms Collection customer.1410.4 9958429 raw 125 | Journal of physical activity and health Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 51531702 raw 126 | School science and mathematics. 1991 1991 Print issues: 91(1991); retains 2 years. print Print issues: 91(1991); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 4295250 raw 127 | School science and mathematics. Print issues: 91(1991); retains 2 years. R2Y fulltext Print issues: 91(1991); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 4295250 raw 128 | Publications of the Modern Language Association of America. 2010 Print issues: 125 (2010)- print Print issues: 125 (2010)- Ely Library Print and Microforms Collection customer.1410.4 6070439 raw 129 | Poetry :a magazine of verse. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1762510 raw 130 | Elementary school journal, The 1979 1996 Print issues: 80-96(1979-1996); retains current year print Print issues: 80-96(1979-1996); retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 131 | Elementary school journal, The Print issues: 80-96(1979-1996); retains current year R1Y print Print issues: 80-96(1979-1996); retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 132 | Journal of psychology, The 1935 1974 Print issues: 1-88 (1935-1974); 145 (2011)- print Print issues: 1-88 (1935-1974); 145 (2011)- Ely Library Print and Microforms Collection customer.1410.4 raw 133 | Journal of psychology, The 2011 Print issues: 1-88 (1935-1974); 145 (2011)- print Print issues: 1-88 (1935-1974); 145 (2011)- Ely Library Print and Microforms Collection customer.1410.4 raw 134 | Children's literature in education. 1977 8 1977 8 Print issues: 8;11-24(1977;1980-1993) print Print issues: 8;11-24(1977;1980-1993) Ely Library Print and Microforms Collection customer.1410.4 1021278 raw 135 | Children's literature in education. 1980 1993 Print issues: 8;11-24(1977;1980-1993) print Print issues: 8;11-24(1977;1980-1993) Ely Library Print and Microforms Collection customer.1410.4 1021278 raw 136 | Children's literature in education. 11 24 Print issues: 8;11-24(1977;1980-1993) fulltext Print issues: 8;11-24(1977;1980-1993) Ely Library Print and Microforms Collection customer.1410.4 1021278 raw 137 | Social research. 1980 1989 Print issues: 47-56(1980-1989); retains current year. print Print issues: 47-56(1980-1989). Ely Library Print and Microforms Collection customer.1410.4 1664336 raw 138 | Liberal education. 1974 1997 Print issues: 60-83(1974-1997); retains past 2 years print Print issues: 60-83(1974-1997); retains past 2 years Ely Library Print and Microforms Collection customer.1410.4 1755825 raw 139 | Liberal education. Print issues: 60-83(1974-1997); retains past 2 years R2Y fulltext Print issues: 60-83(1974-1997); retains past 2 years Ely Library Print and Microforms Collection customer.1410.4 1755825 raw 140 | International journal of adolescence and youth. 1994 2009 Print issues: 5-14(1994-2009) print Print issues: 5-14(1994-2009); retains current year Ely Library Print and Microforms Collection customer.1410.4 17651275 raw 141 | Principal. 1980 2005 Print issues: 60-84 (1980-2005); 90 (2011)- print Print issues: 60-84 (1980-2005); 90 (2011)- Ely Library Print and Microforms Collection customer.1410.4 6681687 raw 142 | Principal. 2011 Print issues: 60-84 (1980-2005); 90 (2011)- print Print issues: 60-84 (1980-2005); 90 (2011)- Ely Library Print and Microforms Collection customer.1410.4 6681687 raw 143 | Urban education. 1996 1999 Print issues: 31-33(1996-1999) print Print issues: 31-33(1996-1999) Ely Library Print and Microforms Collection customer.1410.4 1768861 raw 144 | Small group behavior. 1985 1989 Print issues: 16-20(1985-1989) print Print issues: 16-20(1985-1989) Ely Library Print and Microforms Collection customer.1410.4 1785503 raw 145 | Governing. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 16067967 raw 146 | Money. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1588464 raw 147 | Sports 'n spokes. 1976 Print issues: 2-(1976- to present) print Print issues: 2-(1976- to present) Ely Library Print and Microforms Collection customer.1410.4 3984111 raw 148 | BusinessWest. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 19658044 raw 149 | Urban geography. 1980 2001 Print issues: 1-22 (1980-2001). print Print issues: 1-22 (1980-2001). Ely Library Print and Microforms Collection customer.1410.4 6481550 raw 150 | Environment. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2246130 raw 151 | Barron's. Print issues: Retains 2 months [Microfilm=1994-2001] print Print issues: Retains 2 months [Microfilm=1994-2001] Ely Library Print and Microforms Collection customer.1410.4 29933161 raw 152 | Communication Arts 2007 49 Print issues: 49-(2007- to present) print Print issues: 49-(2007- to present) Ely Library Print and Microforms Collection customer.1410.4 1798163 raw 153 | Mathematical intelligencer, The 1987 1993 Print issues: 9-15(1987-1993) print Print issues: 9-15(1987-1993) Ely Library Print and Microforms Collection customer.1410.4 476022584 raw 154 | Syllabus. 1996 2004 Print issues: 10-17 (1996-2004) print Print issues: 10-17 (1996-2004) Ely Library Print and Microforms Collection customer.1410.4 31093135 raw 155 | Classical and Modern Literature 1980 1 2000 20 Print issues: 1-20(1980-2000) print Print issues: 1-20(1980-2000) Ely Library Print and Microforms Collection customer.1410.4 5986688 raw 156 | Technology and engineering teacher Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 663444122 raw 157 | Police chief, the 1994 2003 Print issues: 61-70 (1994-2003); retains current year. print Print issues: 61-70 (1994-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 158 | Police chief, the Print issues: 61-70 (1994-2003); retains current year. R1Y print Print issues: 61-70 (1994-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 159 | Wide angle. 1976 1 1993 15 Print issues: 1-15(1976-1993.) print Print issues: 1-15(1976-1993.) Ely Library Print and Microforms Collection customer.1410.4 2757185 raw 160 | Runner's world. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 15809087 raw 161 | American journal of distance education, The Print issues: Retains current year. R1Y print Print issues: 22 (2008)- Ely Library Print and Microforms Collection customer.1410.4 raw 162 | Hispania. 1979 2009 Print issues: 62-(1979- to 2009);. print Print issues: 62-(1979- to 2009). Ely Library Print and Microforms Collection customer.1410.4 1200188 raw 163 | Trial / 2011 Print issues: 47 (2011)- print Print issues: 47 (2011)- Ely Library Print and Microforms Collection customer.1410.4 raw 164 | Educational research quarterly :ERQ. 1976 1996 Print issues: 1-19(1976-1996). print Print issues: 1-19(1976-1996); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2191274 raw 165 | Dial :a magazine for literature, philosophy, and religion, The 1840 1844 Print issues: 1-4(1840-1844) print Print issues: 1-4(1840-1844) Ely Library Print and Microforms Collection customer.1410.4 raw 166 | Bulletin of the atomic scientists. Print issues: 41-43(1985-1987) print Print issues: 41-43(1985-1987) Ely Library Print and Microforms Collection customer.1410.4 1242732 raw 167 | Studies in art education. Print issues: Retains 2 years. R2Y print Print issues: Retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 1766713 raw 168 | Journal of economic history, The 1980 1999 Print issues: 40-59(1980-1999); retains current year. print Print issues: 40-59(1980-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 169 | Journal of economic history, The Print issues: 40-59(1980-1999); retains current year. R1Y print Print issues: 40-59(1980-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 170 | Naugatuck River Review 2009 Print issues: 1 (2009)- print Print issues: 1 (2009)- Ely Library Print and Microforms Collection customer.1410.4 262986615 raw 171 | American journal of psychology, The 1887 1 1948 61 Print issues: 1-61;104-122(1887-1948;1991-2009) print Print issues: 1-61;104-122(1887-1948;1991-2009) Ely Library Print and Microforms Collection customer.1410.4 raw 172 | American journal of psychology, The 1991 104 2009 106 Print issues: 1-61;104-122(1887-1948;1991-2009) print Print issues: 1-61;104-122(1887-1948;1991-2009) Ely Library Print and Microforms Collection customer.1410.4 raw 173 | Crime and Delinquency Literature 1968 1976 Print issues: 1-8(1968-1976) print Print issues: 1-8(1968-1976) Ely Library Print and Microforms Collection customer.1410.4 2859642 raw 174 | Journal of urban history. 1983 1997 Print issues: 9-23(1983-1997) print Print issues: 9-23(1983-1997) Ely Library Print and Microforms Collection customer.1410.4 1798556 raw 175 | Review of radical political economics 1974 1995 Print issues: 6-27 (1974-1995) print Print issues: 6-27 (1974-1995) Ely Library Print and Microforms Collection customer.1410.4 1590098 raw 176 | Art journal. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1514294 raw 177 | Psychonomic bulletin & review. 1994 2000 Print issues: 1-6(1994-2000). print Print issues: 1-6(1994-2000). Ely Library Print and Microforms Collection customer.1410.4 28204902 raw 178 | Journal of the American Planning Association. 1985 1990 Print issues: 51-56(1985-1990); retains current year. print Print issues: 51-56(1985-1990). Ely Library Print and Microforms Collection customer.1410.4 4626214 raw 179 | Russian review, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 180 | Counselor education and supervision. 1972 1990 Print issues: 12-29(1972-1990) print Print issues: 12-29(1972-1990) Ely Library Print and Microforms Collection customer.1410.4 1565314 raw 181 | Journal of technical writing and communication. 1980 1996 Print issues: 10-26(1980-1996) print Print issues: 10-26(1980-1996) Ely Library Print and Microforms Collection customer.1410.4 1800187 raw 182 | National geographic traveler. Print issues: Retains past 2 years. R2Y print Print issues: Retains past 2 years. Ely Library Print and Microforms Collection customer.1410.4 10542124 raw 183 | Mathematics teacher, The 1984 1995 Print issues: 77-88 (1984-1995); 96 (2003)-(2015 Mar.) print Print issues: 77-88 (1984-1995); 96 (2003)-(2015 Mar.) Ely Library Print and Microforms Collection customer.1410.4 raw 184 | Mathematics teacher, The 2003 2015 Print issues: 77-88 (1984-1995); 96 (2003)-(2015 Mar.) print Print issues: 77-88 (1984-1995); 96 (2003)-(2015 Mar.) Ely Library Print and Microforms Collection customer.1410.4 raw 185 | Physician and sportsmedicine, The 2005 2005 Print issues: 33 (2005) print Print issues: 33 (2005) Ely Library Print and Microforms Collection customer.1410.4 raw 186 | Public historian, The 1978 2000 Print issues: 1-22(1978-2000); Retains current year print Print issues: 1-22(1978-2000) Ely Library Print and Microforms Collection customer.1410.4 raw 187 | Law & society review. 1985 1995 Print issues: 19-29 (1985-1995) print Print issues: 19-29 (1985-1995) Ely Library Print and Microforms Collection customer.1410.4 1755580 raw 188 | Theatre survey. 1974 15 2001 42 Print issues: 15-42(1974-2001) print Print issues: 15-42(1974-2001) Ely Library Print and Microforms Collection customer.1410.4 1767408 raw 189 | American biology teacher, The 1984 1993 Print issues: 46-54 (1984-1992); print Print issues: 46-55 (1984-1992) Ely Library Print and Microforms Collection customer.1410.4 raw 190 | American biology teacher, The 46 55 Print issues: 46-54 (1984-1992); fulltext Print issues: 46-55 (1984-1992) Ely Library Print and Microforms Collection customer.1410.4 raw 191 | On tap 2006 2009 Print issues: 6-9 (2006-2009) print Print issues: 6-9 (2006-2009) Ely Library Print and Microforms Collection customer.1410.4 25494742 raw 192 | Crime control digest [Microfilm=13-24 1979-1990] print [Microfilm=13-24 1979-1990] Ely Library Print and Microforms Collection customer.1410.4 2112297 raw 193 | Criminology and Public Policy Print issues: Retains 1 years. R1Y print Print issues: Retains 1 year. Ely Library Print and Microforms Collection customer.1410.4 48409988 raw 194 | GIS world. 1998 1998 Print issues: 11:1-11:10(1998:Jan.-1998:Oct.) print Print issues: 11:1-11:10(1998:Jan.-1998:Oct.) Ely Library Print and Microforms Collection customer.1410.4 17541993 raw 195 | Social policy. 1982 1990 Print issues: 13-20 (1982-1990); retains current year. print Print issues: 13-20 (1982-1990); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1765683 raw 196 | Social policy. Print issues: 13-20 (1982-1990); retains current year. R1Y fulltext Print issues: 13-20 (1982-1990); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1765683 raw 197 | Geocarto international. 1992 2001 Print issues: 7:2-16(1992:June-2001) print Print issues: 7:2-16(1992:June-2001) Ely Library Print and Microforms Collection customer.1410.4 13633929 raw 198 | Journal of memory and language. 1985 1998 Print issues: 24-39(1985-1998) print Print issues: 24-39(1985-1998) Ely Library Print and Microforms Collection customer.1410.4 11148687 raw 199 | Radical history review. 1983 1994 Print issues: no.27-60(1983-1994) print Print issues: no.27-60(1983-1994) Ely Library Print and Microforms Collection customer.1410.4 3140092 raw 200 | YC young children / 2009 64 Print issues: 64 (2009)- print Print issues: 64 (2009)- Ely Library Print and Microforms Collection customer.1410.4 48916013 raw 201 | Education and training of the mentally retarded. 1970 1986 Print issues: 5-21(1970-1986) print Print issues: 5-21(1970-1986) Ely Library Print and Microforms Collection customer.1410.4 1307937 raw 202 | College student journal. 1989 23 1996 30 Print issues: 23-30(1989-1996); retains current year. print Print issues: 23-30(1989-1996); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564072 raw 203 | Journal of Family Theory and Review 2009 Print issues: 3-(2011- to present) print Print issues: 3-(2011- to present) Ely Library Print and Microforms Collection customer.1410.4 424524294 raw 204 | Journal of the Association for Persons with Severe Handicaps :official publication of the Association for Persons with Severe Handicaps, The 1986 2001 Print issues: 11-26(1986-2001) print Print issues: 11-26(1986-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 205 | Journal of experimental child psychology. 1987 2001 Print issues: 44-80(1987-2001) print Print issues: 44-80(1987-2001) Ely Library Print and Microforms Collection customer.1410.4 1431145 raw 206 | Journal of sociology and social welfare. 1985 2000 Print issues: 12-27(1985-2000); retains current year. print Print issues: 12-27(1985-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1107708 raw 207 | Journal of sociology and social welfare. Print issues: 12-27(1985-2000); retains current year. R1Y print Print issues: 12-27(1985-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1107708 raw 208 | Howard journal of criminal justice, The 2001 2001 Print issues: 40(2001) print Print issues: 40(2001) Ely Library Print and Microforms Collection customer.1410.4 754641437 raw 209 | Perspectives of New Music 0031-6016 1988 26 2001 39 Print issues: 26 - 39 (1988 - 2001) print Ely Library Print and Microforms Collection customer.1410.4 1762140 raw 210 | JAMA :the journal of the American Medical Association. 2011 Print issues: 305-(2011- to present) print Print issues: 305-(2011- to present) Ely Library Print and Microforms Collection customer.1410.4 1124917 raw 211 | Social work research & abstracts. 1983 1993 Print issues: 19-29(1983-1993) print Print issues: 19-29(1983-1993) Ely Library Print and Microforms Collection customer.1410.4 3264044 raw 212 | International Journal of Athletic Therapy and Tranining [Athletic Therapy Today?] Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 213 | Explicator, The 1942 1955 Print issues: 1-14 (1942-1955); retains current year. print Print issues: 1-14 (1942-1955). Ely Library Print and Microforms Collection customer.1410.4 raw 214 | American heritage. 1979 31 1986 37 Print issues: 31-37 (1979-1986) print Print issues: 31-37 (1979-1986) Ely Library Print and Microforms Collection customer.1410.4 1479963 raw 215 | Public administration review. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1623952 raw 216 | TESOL quarterly / Print issues: 43 (2009) print Print issues: 43 (2009) Ely Library Print and Microforms Collection customer.1410.4 1767202 raw 217 | Journal of family and economic issues. 1992 1997 Print issues: 13-18(1992-1997) print Print issues: 13-18(1992-1997) Ely Library Print and Microforms Collection customer.1410.4 24203047 raw 218 | Language learning. 1981 1994 Print issues: 31-44(1981-1994) print Print issues: 31-44(1981-1994) Ely Library Print and Microforms Collection customer.1410.4 1640701 raw 219 | Federal probation. 1980 1989 Print issues: 44-53 (1980-1989); retains current year. print Print issues: 44-53 (1980-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2062391 raw 220 | Federal probation. Print issues: 44-53 (1980-1989); retains current year. R1Y print Print issues: 44-53 (1980-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2062391 raw 221 | Arithmetic teacher, The Print issues: 38-40(1990-1992) print Print issues: 38-40(1990-1992) Ely Library Print and Microforms Collection customer.1410.4 raw 222 | Urban affairs quarterly. 1974 10 1994 30 Print issues: 10-30 (1974-1994) print Print issues: 10-30 (1974-1994) Ely Library Print and Microforms Collection customer.1410.4 1768857 raw 223 | Bulletin of the German Historical Institute 2004 34 Print issues: no.34-(2004- to present) print Print issues: no.34-(2004- to present) Ely Library Print and Microforms Collection customer.1410.4 21114920 raw 224 | Sports illustrated for kids. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 19017159 raw 225 | Adweek. Print issues: Retains current year. R12M print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 52059332 raw 226 | Trial / 2011 Print issues: 47 (2011)- print Ely Library Print and Microforms Collection customer.1410.4 raw 227 | Trial / 47 Print issues: 47 (2011)- fulltext Ely Library Print and Microforms Collection customer.1410.4 raw 228 | Computers and composition. 1997 14 2003 20 Print issues: 14-20(1997-2003) print Print issues: 14-20(1997-2003) Ely Library Print and Microforms Collection customer.1410.4 11313310 raw 229 | American journal of health education / Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 45896661 raw 230 | Bulletin of the Psychonomic Society. 1973 1 1993 31 Print issues: 1-31(1973-1993.) print Print issues: 1-31(1973-1993.) Ely Library Print and Microforms Collection customer.1410.4 1788365 raw 231 | Romance quarterly. 1986 1989 Print issues: 33-36(1986-1989); retains 2 years. print Print issues: 33-36(1986-1989); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 12066070 raw 232 | Romance quarterly. Print issues: 33-36(1986-1989); retains 2 years. R2Y print Print issues: 33-36(1986-1989); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 12066070 raw 233 | Partisan review. 1971 1996 Print issues: 38-63 (1971-1996) print Print issues: 38-63 (1971-1996) Ely Library Print and Microforms Collection customer.1410.4 5661185 raw 234 | Communication research reports :CRR. 1995 1997 Print issues: 12-14(1995-1997); retains current year. print Print issues: 12-14(1995-1997). Ely Library Print and Microforms Collection customer.1410.4 11855065 raw 235 | Chronicle of higher education, The Retains current year. [Microfilm=43-50, 1996-2004.] R1Y print Retains current year. [Microfilm=43-50, 1996-2004.] Ely Library Print and Microforms Collection customer.1410.4 raw 236 | Educational Measurement: Issues and Practice 2004 2014 Print issues: 23-(2004-2014) print Print issues: 23-33(2004-2014) Ely Library Print and Microforms Collection customer.1410.4 8128374 raw 237 | Journal of musicology :JM, The 1987 2001 Print issues: 5-18(1987-2001) print Print issues: 5-18(1987-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 238 | Corrections digest. [Microfilm=13-24 1982-1993] print [Microfilm=13-24 1982-1993] Ely Library Print and Microforms Collection customer.1410.4 1565192 raw 239 | Middle school journal. 1995 2015 Print issues: 27-(1995- to May 2015) print Print issues: 27-(1995- to May 2015) Ely Library Print and Microforms Collection customer.1410.4 1793788 raw 240 | Music educators journal. 1986 2009 Print issues: 73 (1986)-96:1 (2009) print Print issues: 73 (1986)-96:1 (2009) Ely Library Print and Microforms Collection customer.1410.4 1639434 raw 241 | Yellow book, The 1894 1 1897 13 Print issues: 1-13(1894-1897) print Print issues: 1-13(1894-1897) Ely Library Print and Microforms Collection customer.1410.4 raw 242 | Journal of criminal law & criminology, The Print issues: 64-73, 100 (1973-1981, 2010) print Print issues: 64-73, 100 (1973-1981, 2010) Ely Library Print and Microforms Collection customer.1410.4 raw 243 | New England magazine :new series, The 1890 1892 Print issues: 2-5, 27-52(1890-1892,1902-1915) print Print issues: 2-5, 27-52(1890-1892,1902-191 Ely Library Print and Microforms Collection customer.1410.4 raw 244 | New England magazine :new series, The 1902 1915 Print issues: 2-5, 27-52(1890-1892,1902-1915) print Print issues: 2-5, 27-52(1890-1892,1902-191 Ely Library Print and Microforms Collection customer.1410.4 raw 245 | CJ International 1987 3 1995 11 Print issues: 3-11(1987-1995) print Print issues: 3-11(1987-1995) Ely Library Print and Microforms Collection customer.1410.4 11777838 raw 246 | Social psychology quarterly. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4692447 raw 247 | Columbia journalism review. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564228 raw 248 | Animal learning & behavior. 1973 1 2000 28 Print issues: 1-28(1973-2000) print Print issues: 1-28(1973-2000) Ely Library Print and Microforms Collection customer.1410.4 1787764 raw 249 | Historical methods. 1978 1989 Print issues: 11-22(1978-1989) print Print issues: 11-22(1978-1989) Ely Library Print and Microforms Collection customer.1410.4 3977127 raw 250 | Curriculum review. 1984 1990 Print issues: 24-29(1984-1990). print Print issues: 24-29(1984-1990). Ely Library Print and Microforms Collection customer.1410.4 2272853 raw 251 | American Journal on Mental Retardation 1989 94 1998 102 Print issues: 94-102 (1989-1998) print Print issues: 94-102 (1989-1998) Ely Library Print and Microforms Collection customer.1410.4 16799715 raw 252 | Journal of college science teaching. 1984 1996 Print issues: 13-26(1984-1996);retains current year. print Print issues: 13-26(1984-1996);retains current year. Ely Library Print and Microforms Collection customer.1410.4 1783456 raw 253 | Journal of college science teaching. Print issues: 13-26(1984-1996);retains current year. R1Y print Print issues: 13-26(1984-1996);retains current year. Ely Library Print and Microforms Collection customer.1410.4 1783456 raw 254 | Journal of soil and water conservation 2008 2008 Print issues: 63 (2008) print Print issues: 63 (2008) Ely Library Print and Microforms Collection customer.1410.4 1782825 raw 255 | Journal of motor behavior. 1977 1996 Print issues: 9-28(1977-1996) print Print issues: 9-28(1977-1996) Ely Library Print and Microforms Collection customer.1410.4 1783382 raw 256 | Econometrics Journal Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 40947216 raw 257 | Social forces. [Microfilm=6-61 1927-1983] print [Microfilm=6-61 1927-1983] Ely Library Print and Microforms Collection customer.1410.4 4670293 raw 258 | New York times, The Print issues: Retains 2 months. print Print issues: Retains 2 months. Ely Library Print and Microforms Collection customer.1410.4 raw 259 | Consortium. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 12868261 raw 260 | New directions for student services. 1980 1986 Print issues: No. 9-36 (1980-1986); Retains past 3 years print Print issues: No. 9-36 (1980-1986); Retains past 3 years Ely Library Print and Microforms Collection customer.1410.4 39084492 raw 261 | New directions for student services. Print issues: No. 9-36 (1980-1986); Retains past 3 years R3Y fulltext Print issues: No. 9-36 (1980-1986); Retains past 3 years Ely Library Print and Microforms Collection customer.1410.4 39084492 raw 262 | Muse. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 35199575 raw 263 | Corrections today. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4676827 raw 264 | Midwest quarterly, The 1976 1987 Print issues: 18-27(1976-1986); retains current year. print Print issues: 18-27(1976-1986); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 265 | Harvard educational review. 1931 1987 Print issues: 1-57(1931-1987) print Print issues: 1-57(1931-1987) Ely Library Print and Microforms Collection customer.1410.4 1587741 raw 266 | Gifted child today, The 1987 1999 Print issues: 10-22 (1987-1999); Retains current year print Print issues: 10-22 (1987-1999); Retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 267 | Gifted child today, The Print issues: 10-22 (1987-1999); Retains current year R1Y print Print issues: 10-22 (1987-1999); Retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 268 | American craft. 1980 40 Print issues: 40-(1980- to present) print Print issues: 40-(1980- to present) Ely Library Print and Microforms Collection customer.1410.4 5024322 raw 269 | Journal of applied biomechanics. 1993 2001 Print issues: 9-17(1993-2001) print Print issues: 9-17(1993-2001) Ely Library Print and Microforms Collection customer.1410.4 26777588 raw 270 | Science & society. 1980 1993 Print issues: 44-57(1980-1993); Retains current year print Print issues: 44-57(1980-1993); Retains current year Ely Library Print and Microforms Collection customer.1410.4 1644619 raw 271 | Science & society. Print issues: 44-57(1980-1993); Retains current year R1Y print Print issues: 44-57(1980-1993); Retains current year Ely Library Print and Microforms Collection customer.1410.4 1644619 raw 272 | Women Studies Abstracts 1977 6 2000 29 Print Issues: 6-29 (1977-2000) print Ely Library Print and Microforms Collection customer.1410.4 1770074 raw 273 | Tri-quarterly / 1980 1994 Print issues: 47-92 (1980-1994) print Print issues: 47-92 (1980-1995) Ely Library Print and Microforms Collection customer.1410.4 5937719 raw 274 | Wildlife monographs. 2007 168 Print issues: 168 (2007)- print Print issues: 168 (2007)- Ely Library Print and Microforms Collection customer.1410.4 1623949 raw 275 | Public interest, The 1985 1987 Print issues: 78-89 (1985-1987) print Print issues: 78-89 (1985-1987) Ely Library Print and Microforms Collection customer.1410.4 raw 276 | Massachusetts teacher, The 1931 1981 Print issues: 11-60(1931-1981) print Print issues: 11-60(1931-1981) Ely Library Print and Microforms Collection customer.1410.4 raw 277 | Television quarterly. 1989 24 2005 35 Print issues: 24-35 (1989-2005) print Print issues: 24-38 (1989-2007) Ely Library Print and Microforms Collection customer.1410.4 1696403 raw 278 | Political theory 1996 1997 Print issues: 24-25 (1996-1997) print Print issues: 24-25 (1996-1997) Ely Library Print and Microforms Collection customer.1410.4 1785573 raw 279 | Mailbox intermediate, The Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 280 | Journal of music theory pedagogy. 1987 1997 Print issues: 1-11(1987-1997) print Print issues: 1-11(1987-1997) Ely Library Print and Microforms Collection customer.1410.4 14984048 raw 281 | Physics education. 1973 2001 Print issues: 8-36 (1973-2001) print Print issues: 8-36 (1973-2001) Ely Library Print and Microforms Collection customer.1410.4 1762342 raw 282 | Cricket. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1785236 raw 283 | Middle East journal, The Print issues: 66 (2012) R2Y print Print issues: 66 (2012) Ely Library Print and Microforms Collection customer.1410.4 raw 284 | Feminist studies :FS. Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 1632609 raw 285 | School counselor, The 1979 1990 Print issues: 27-37 (1979-1990) print Print issues: 27-37 (1979-1990) Ely Library Print and Microforms Collection customer.1410.4 raw 286 | Biography Index 1946 1 1998 23 Print issues: 1-23(1946-1998) print Print issues: 1-23(1946-1998) Ely Library Print and Microforms Collection customer.1410.4 1536408 raw 287 | Sex roles. 1976 1993 Print issues: 2-28 (1976-1993) print Print issues: 2-28 (1976-1993) Ely Library Print and Microforms Collection customer.1410.4 2243426 raw 288 | Art in America. 1967 55 Print issues: 55-(1967- to present) print Print issues: 55-(1967- to present) Ely Library Print and Microforms Collection customer.1410.4 1514286 raw 289 | American scientist. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1480717 raw 290 | Criminal law bulletin. 1975 Print issues: 11-(1975- to present) print Print issues: 11-(1975- to present) Ely Library Print and Microforms Collection customer.1410.4 1565430 raw 291 | Voice of Chorus America, The 1991 16 2002 25 Print issues: 16-25(1991-2002) print Print issues: 16-25(1991-2002) Ely Library Print and Microforms Collection customer.1410.4 raw 292 | Educational theory. 1971 1995 Print issues: 21-45(1971-1995); retains current year. print Print issues: 21-45(1971-1995). Ely Library Print and Microforms Collection customer.1410.4 1567631 raw 293 | PS, political science & politics. Print issues: 41 (2008) print Print issues: 41 (2008) Ely Library Print and Microforms Collection customer.1410.4 19491865 raw 294 | Math horizons. Print issues: 17-(2010- to present) print Print issues: 17-(2010- to present) Ely Library Print and Microforms Collection customer.1410.4 28941388 raw 295 | MELUS;Society for the Study of the Multi-Ethnic Literature of the United States. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4417668 raw 296 | Arts and activities. 1978 1990 v.84-117 (1978-1995); retains current year. print v.84-117 (1978-1995); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1514367 raw 297 | Arts and activities. v.84-117 (1978-1995); retains current year. R1Y print v.84-117 (1978-1995); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1514367 raw 298 | UMAP journal, The 1986 Print issues: 7-(1986- to present) print Print issues: 7-(1986- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 299 | International journal of sport nutrition and exercise metabolism. 2000 2006 Print issues: 10-16(2000-2006); retains current year. print Print issues: 10-16(2000-2006); retains current year. Ely Library Print and Microforms Collection customer.1410.4 42276329 raw 300 | International journal of sport nutrition and exercise metabolism. Print issues: 10-16(2000-2006); retains current year. R1Y print Print issues: 10-16(2000-2006); retains current year. Ely Library Print and Microforms Collection customer.1410.4 42276329 raw 301 | Annals of the Association of American Geographers 2009 99 2014 104 Print issues: 99-104(2009-2014) print Print issues: 99-104(2009-2014) Ely Library Print and Microforms Collection customer.1410.4 1514553 raw 302 | Journal of basic writing. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 3117719 raw 303 | Mailbox grades 2-3, The Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 304 | Sculpture. 1986 Print issues: 5 (1986)- print Print issues: 5 (1986)- Ely Library Print and Microforms Collection customer.1410.4 14039712 raw 305 | Weatherwise. 1980 33 Print issues: 33-(1980- to present) print Print issues: 33-(1980- to present) Ely Library Print and Microforms Collection customer.1410.4 1714187 raw 306 | New England Reading Association journal. 1975 2000 Print issues: 11-36 (1975-2000); retains current year. print Print issues: 11-36 (1975-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4826039 raw 307 | New England Reading Association journal. Print issues: 11-36 (1975-2000); retains current year. R1Y print Print issues: 11-36 (1975-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4826039 raw 308 | Intervention in school and clinic. 1990 1993 Print issues: 26-29 (1990-1993) print Print issues: 26-29 (1990-1993) Ely Library Print and Microforms Collection customer.1410.4 22424337 raw 309 | Sociology of sport journal. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 10094521 raw 310 | Newspaper research journal. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 6887314 raw 311 | American economic review, The Print issues: Retains 2 years. R2Y print Print issues: Retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 raw 312 | American naturalist, The Print issues: Retains 5 years R5Y print Print issues: Retains 5 years Ely Library Print and Microforms Collection customer.1410.4 raw 313 | Journal of sport behavior. 1980 1989 Print issues: 3-13(1980-1989); retains current year. print Print issues: 3-13(1980-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 3850194 raw 314 | Journal of sport behavior. Print issues: 3-13(1980-1989); retains current year. R1Y print Print issues: 3-13(1980-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 3850194 raw 315 | Abraham Lincoln quarterly, The Print issues: 1-3(1940-1944) print Print issues: 1-3(1940-1944) Ely Library Print and Microforms Collection customer.1410.4 raw 316 | Science news. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2367617 raw 317 | Psychological reports. 1977 Print issues: 40-115 (1977-2014) print Print issues: 40 (1977)- Ely Library Print and Microforms Collection customer.1410.4 1318827 raw 318 | Clavier. 1984 23 1994 33 Print issues: 23-33(1984-1994) print Print issues: 23-33(1984-1994) Ely Library Print and Microforms Collection customer.1410.4 1554858 raw 319 | New Left review. 1986 1994 Print issues: No. 155-208 (1986-1994) print Print issues: No. 155-208 (1986-1994) Ely Library Print and Microforms Collection customer.1410.4 1605213 raw 320 | Journal of American college health :J of ACH. 1982 1994 Print issues: 31-42(1982-1994) print Print issues: 31-42(1982-1994) Ely Library Print and Microforms Collection customer.1410.4 8598579 raw 321 | Journal of applied biobehavioral research. 1998 2000 Print issues: 3-5(1998-2000) print Print issues: 3-5(1998-2000) Ely Library Print and Microforms Collection customer.1410.4 28571891 raw 322 | Theater. 1977 1998 Print issues: 9-29 (1977-1998); 35 (2005)- print Print issues: 9-29 (1977-1998); 35 (2005)- Ely Library Print and Microforms Collection customer.1410.4 3563829 raw 323 | Theater. 2005 Print issues: 9-29 (1977-1998); 35 (2005)- fulltext Print issues: 9-29 (1977-1998); 35 (2005)- Ely Library Print and Microforms Collection customer.1410.4 3563829 raw 324 | Republican, The Print issues: Retains 1 month. print Print issues: Retains 1 month. Ely Library Print and Microforms Collection customer.1410.4 raw 325 | Journal of popular culture. 1972 1989 Print issues: 6-22 (1972-1989); retains current year. print Print issues: 6-22 (1972-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1754751 raw 326 | Journal of popular culture. Print issues: 6-22 (1972-1989); retains current year. R1Y print Print issues: 6-22 (1972-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1754751 raw 327 | Mathematics teaching in the middle school / 1994 1998 Print issues: 1-3 (1994-1998); 14 (2008)-(2015) print Print issues: 1-3 (1994-1998); 14 (2008)-(2015) Ely Library Print and Microforms Collection customer.1410.4 28856592 raw 328 | Mathematics teaching in the middle school / 2008 2015 Print issues: 1-3 (1994-1998); 14 (2008)-(2015) print Print issues: 1-3 (1994-1998); 14 (2008)-(2015) Ely Library Print and Microforms Collection customer.1410.4 28856592 raw 329 | First teacher. 1996 1999 Print issues: 17-20:3(1996-1999:June) print Print issues: 17-20:3(1996-1999:June) Ely Library Print and Microforms Collection customer.1410.4 8523814 raw 330 | Bicycling. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2246420 raw 331 | Modern drama. 1969 1982 Print issues: 12-25,27-33(1969-1982,1984-1990) print Print issues: 12-25,27-33(1969-1982,1984-1990) Ely Library Print and Microforms Collection customer.1410.4 1716920 raw 332 | Modern drama. 1984 1990 Print issues: 12-25,27-33(1969-1982,1984-1990) print Print issues: 12-25,27-33(1969-1982,1984-1990) Ely Library Print and Microforms Collection customer.1410.4 1716920 raw 333 | Early childhood education journal. 1995 Print issues: 23-(1995- to present) print Print issues: 23-(1995- to present) Ely Library Print and Microforms Collection customer.1410.4 32384476 raw 334 | Mind's eye, The 1998 2004 Print issues: 1998-2006 print Print issues: 1998-2006 Ely Library Print and Microforms Collection customer.1410.4 raw 335 | Journal of the early Republic. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 7088630 raw 336 | Artforum international. 1988 1993 Print issues: 26-31 (1988-1993); retains current year. print Print issues: 26-31 (1988-1993); retains current year. Ely Library Print and Microforms Collection customer.1410.4 20458258 raw 337 | Artforum international. Print issues: 26-31 (1988-1993); retains current year. R1Y print Print issues: 26-31 (1988-1993); retains current year. Ely Library Print and Microforms Collection customer.1410.4 20458258 raw 338 | Journal of taxation, The 1994 1996 Print issues: 80-85(1994-1996) print Print issues: 80-85(1994-1996) Ely Library Print and Microforms Collection customer.1410.4 raw 339 | Political quarterly, The 1981 1992 Print issues: 52-63 (1981-1992); retains current year. print Print issues: 52-63 (1981-1992); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 340 | Political quarterly, The Print issues: 52-63 (1981-1992); retains current year. R1Y print Print issues: 52-63 (1981-1992); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 341 | Career development for exceptional individuals :official journal of Division on Career Development, the Council for Exceptional Children. 1987 10 1997 20 Print issues: 10-20(1987-1997) print Print issues: 10-20(1987-1997) Ely Library Print and Microforms Collection customer.1410.4 5543328 raw 342 | Wall Street journal, The Print issues: Retains 2 months. [Microfilm=1985-2001] print Print issues: Retains 2 months. [Microfilm=1985-2001] Ely Library Print and Microforms Collection customer.1410.4 raw 343 | International journal of comparative sociology. 1970 1994 Print issues: 11-35(1970-1994) print Print issues: 11-35(1970-1994) Ely Library Print and Microforms Collection customer.1410.4 1654008 raw 344 | Journal of the American Academy of Child and Adolescent Psychiatry. 1994 2013 Print issues: 33-52(1994- to 2013) print Print issues: 33-52(1994- to 2013) Ely Library Print and Microforms Collection customer.1410.4 14404226 raw 345 | Yale review, The 1970 60 Print issues: 60 (1970)- print Print issues: 60 (1970)- Ely Library Print and Microforms Collection customer.1410.4 raw 346 | Review of contemporary fiction. 1988 1992 Print issues: 8-12 (1988-1992); retains 2 years. print Print issues: 8-12 (1988-1992); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 7321196 raw 347 | Review of contemporary fiction. Print issues: 8-12 (1988-1992); retains 2 years. R2Y print Print issues: 8-12 (1988-1992); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 7321196 raw 348 | Urban studies. 1987 24 1992 29 Print issues: 24-29 (1987-1992) print Print issues: 24-29 (1987-1992) Ely Library Print and Microforms Collection customer.1410.4 1587363 raw 349 | UN chronicle. 2008 Print issues: 45 (2008)- print Print issues: 45 (2008)- Ely Library Print and Microforms Collection customer.1410.4 4268996 raw 350 | Personality & social psychology bulletin. 1975 1990 Print issues: 1-16 (1975-1990) print Print issues: 1-16 (1975-1990) Ely Library Print and Microforms Collection customer.1410.4 2878896 raw 351 | Science digest. Print issues: Microfilm=47-94 1960-1986 print Print issues: Microfilm=47-94 1960-1986 Ely Library Print and Microforms Collection customer.1410.4 1624458 raw 352 | Historian;a journal of history, The 1975 1982 Print issues: 38-45(1975-1982). print Print issues: 38-45(1975-1982). Ely Library Print and Microforms Collection customer.1410.4 raw 353 | American economic journal: microeconomics R1Y print Ely Library Print and Microforms Collection customer.1410.4 244307162 raw 354 | Communication research. 1979 6 1997 24 Print issues: 6-24(1979-1997) print Print issues: 6-24(1979-1997) Ely Library Print and Microforms Collection customer.1410.4 1792462 raw 355 | Health Values Print issues: 8-11;13-19(1984-1987;1988-1995) print Print issues: 8-11;13-19(1984-1987;1988-1995) Ely Library Print and Microforms Collection customer.1410.4 3085059 raw 356 | Critique. 1965 1974 Print issues: 8-17(1965-1974) print Print issues: 8-17(1965-1974) Ely Library Print and Microforms Collection customer.1410.4 1565475 raw 357 | Literacy Reasearch and Instruction Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 358 | Criticism. 1980 1991 Print issues: 22-33(1980-1991) print Print issues: 22-33(1980-1991) Ely Library Print and Microforms Collection customer.1410.4 1565471 raw 359 | Women's studies quarterly. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 7387895 raw 360 | Journal of pedagogy. 1898 1907 Print issues: 11-19(1898-1907) print Print issues: 11-19(1898-1907) Ely Library Print and Microforms Collection customer.1410.4 1681343 raw 361 | Teaching exceptional children. 1982 1997 Print issues: 15-25 (1982-1997) print Print issues: 15-25 (1982-1997) Ely Library Print and Microforms Collection customer.1410.4 1680991 raw 362 | Focus on exceptional children. 1977 1992 Print issues: 9-24(1977-1992). print Print issues: 9-24(1977-1992). Ely Library Print and Microforms Collection customer.1410.4 809741 raw 363 | Classical journal, The 1971 67 Print issues: 67-(1971- to present) print Print issues: 67-(1971- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 364 | Liberia. 1892 1909 Print issues: no.1-34(1892-1909) print Print issues: no.1-34(1892-1909) Ely Library Print and Microforms Collection customer.1410.4 raw 365 | Critical studies in media communication :CSMC : a publication of the National Communication Association. 2000 2010 Print issues: 17-28 (2000- to 2010); Retains past 2 years. print Print issues: 17-28 (2000- to 2010). Ely Library Print and Microforms Collection customer.1410.4 43617340 raw 366 | Edutopia :the new world of learning. 2004 2006 Print issues: 1-2;5:1-5:5(2004-2006; 2009) print Print issues: 1-2;5:1-5:5(2004-2006; 2009) Ely Library Print and Microforms Collection customer.1410.4 56587927 raw 367 | Edutopia :the new world of learning. 2009 2009 Print issues: 1-2;5:1-5:5(2004-2006; 2009) print Print issues: 1-2;5:1-5:5(2004-2006; 2009) Ely Library Print and Microforms Collection customer.1410.4 56587927 raw 368 | Journal of gang research. 2000 Print issues: 8-(2000- to present) print Print issues: 8-(2000- to present) Ely Library Print and Microforms Collection customer.1410.4 31366198 raw 369 | Technology review :MIT's magazine of innovation. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 39058693 raw 370 | Research quarterly for exercise and sport. 1986 1991 Print issues: 57-62(1986-1991); 67-71 (1996-2000) print Print issues: 57-62(1986-1991); 67-71 (1996-2000) Ely Library Print and Microforms Collection customer.1410.4 6247027 raw 371 | Research quarterly for exercise and sport. 1996 2000 Print issues: 57-62(1986-1991); 67-71 (1996-2000) print Print issues: 57-62(1986-1991); 67-71 (1996-2000) Ely Library Print and Microforms Collection customer.1410.4 6247027 raw 372 | Educational & training technology international :ETTI. 1989 1993 Print issues: 26-30(1989-1993.) print Print issues: 26-30(1989-1993.) Ely Library Print and Microforms Collection customer.1410.4 19317361 raw 373 | Journal of geriatric psychiatry. 1975 2002 Print issues: 8-35(1975-2002) print Print issues: 8-35(1975-2002) Ely Library Print and Microforms Collection customer.1410.4 1149695 raw 374 | Behavioral and brain sciences, The 1981 4 1996 19 Print issues: 4-19(1981-1996) print Print issues: 4-19(1981-1996) Ely Library Print and Microforms Collection customer.1410.4 raw 375 | ASHA. 1959 1 2000 41 Print issues: 1-41(1959-2000) print Print issues: 1-41(1959-2000) Ely Library Print and Microforms Collection customer.1410.4 5700026 raw 376 | Modern drummer :MD. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4660723 raw 377 | Journal of psychiatry & law, The 1975 2001 Print issues: 3-29(1975-2001) print Print issues: 3-29(1975-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 378 | Journal of philosophy, The 2006 Print issues: 103-(2006- to present) print Print issues: 103-(2006- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 379 | Journal of social and clinical psychology. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 9199268 raw 380 | Scientific American. Retains current year. [Microfilm=v.178-289, 1948-2003] R1Y print Retains current year. [Microfilm=v.178-289, 1948-2003] Ely Library Print and Microforms Collection customer.1410.4 1775222 raw 381 | Inter-American music review. 1978 1995 Print issues: 1-14(1978-1995) print Print issues: 1-14(1978-1995) Ely Library Print and Microforms Collection customer.1410.4 5055249 raw 382 | Electronic media. [Microfilm=7-16 1988-1997] print [Microfilm=7-16 1988-1997] Ely Library Print and Microforms Collection customer.1410.4 8734139 raw 383 | Teaching children mathematics. 2004 2015 Print issues: 11 (2004)- (Mar. 2015) print Print issues: 11 (2004)-(2015) Ely Library Print and Microforms Collection customer.1410.4 29484227 raw 384 | Journal of religion, The 1980 1989 Print issues: 60-69 (1980-1989). print Print issues: 60-69 (1980-1989). Ely Library Print and Microforms Collection customer.1410.4 raw 385 | American journal of psychotherapy. 1967 21 1974 28 Print issues: 21-28 (1967-1974) print Print issues: 21-28 (1967-1974) Ely Library Print and Microforms Collection customer.1410.4 1480186 raw 386 | Physics today. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1605044 raw 387 | Planning. 1984 1996 Print issues: 50-62 (1984-1996); retains current year. print Print issues: 50-62 (1984-1996); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1762461 raw 388 | Learning and motivation. 1981 2001 Print issues: 12-32(1981-2001) print Print issues: 12-32(1981-2001) Ely Library Print and Microforms Collection customer.1410.4 1755679 raw 389 | RQ. 1981 1988 Print issues: 21-28 (1981-1988) print Print issues: 21-28 (1981-1988) Ely Library Print and Microforms Collection customer.1410.4 1852823 raw 390 | Education & treatment of children. 1977 1989 Print issues: 1-12(1977-1989); retains current year. print Print issues: 1-12(1977-1989). Ely Library Print and Microforms Collection customer.1410.4 3768586 raw 391 | International journal of law and psychiatry. 1981 1996 Print issues: 4-19(1981-1996) print Print issues: 4-19(1981-1996) Ely Library Print and Microforms Collection customer.1410.4 3655497 raw 392 | Public relations review. 1988 1988 Print issues: 14(1988) print Print issues: 14(1988) Ely Library Print and Microforms Collection customer.1410.4 2549647 raw 393 | College composition and communication. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564051 raw 394 | Security journal. 1993 1998 Print issues: 4-11(1993-1998) print Print issues: 4-11(1993-1998) Ely Library Print and Microforms Collection customer.1410.4 18647546 raw 395 | Studies in the literary imagination. 1968 1975 Print issues: 1-8(1968-1975) print Print issues: 1-8(1968-1975) Ely Library Print and Microforms Collection customer.1410.4 1605898 raw 396 | Medicine and science in sports and exercise. 1982 Print issues: 14-(1982- to present) print Print issues: 14-(1982- to present) Ely Library Print and Microforms Collection customer.1410.4 5700789 raw 397 | American economic journal: applied economics R1Y print Ely Library Print and Microforms Collection customer.1410.4 244112197 raw 398 | Journal of general education, The 1984 1999 Print issues: 36-48(1984-1999) print Print issues: 36-48(1984-1999) Ely Library Print and Microforms Collection customer.1410.4 raw 399 | Rehabilitation counseling bulletin. 1976 1990 Print issues: 20-34(1976-1990) print Print issues: 20-34(1976-1990) Ely Library Print and Microforms Collection customer.1410.4 3128510 raw 400 | Journal of American studies. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1799967 raw 401 | Communication, culture and critique 2008 2014 Print issues: 1-7 (2008-2014) print Print issues: 1-7 (2008-2014) Ely Library Print and Microforms Collection customer.1410.4 213445164 raw 402 | Psychotherapy networker. 2011 Print issues: 35 (2011)- print Print issues: 35 (2011)- Ely Library Print and Microforms Collection customer.1410.4 46541425 raw 403 | Wordsworth circle, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 404 | Daedalus 1975 1977 Print issues: 104-106(1975-1977) print Print issues: 104-106(1975-1977) Ely Library Print and Microforms Collection customer.1410.4 1565785 raw 405 | American journal of sports medicine, The 1979 1989 Print issues: 7-17(1979-1989) print Print issues: 7-17(1979-1989) Ely Library Print and Microforms Collection customer.1410.4 raw 406 | Journal of sport history. 1976 2008 Print issues: 3-35 (1976-2008); 38 (2011)- print Print issues: 3-35 (1976-2008); 38 (2011)- Ely Library Print and Microforms Collection customer.1410.4 1793987 raw 407 | Journal of sport history. 2011 Print issues: 3-35 (1976-2008); 38 (2011)- print Print issues: 3-35 (1976-2008); 38 (2011)- Ely Library Print and Microforms Collection customer.1410.4 1793987 raw 408 | Journal of economics and business 1984 2001 Print issues: 36-53 (1984-2001) fulltext Print issues: 36-53 (1984-2001) Ely Library Print and Microforms Collection customer.1410.4 316296672 raw 409 | Nation, The [Microfilm=160-265 1945-1997] print [Microfilm=160-265 1945-1997] Ely Library Print and Microforms Collection customer.1410.4 839843277 raw 410 | Rural sociology. [Microfilm=1-35 1936-1970] print [Microfilm=1-35 1936-1970] Ely Library Print and Microforms Collection customer.1410.4 1604686 raw 411 | Journal of homosexuality. Print issues: 34-41(1997-2001) print Print issues: 34-41(1997-2001) Ely Library Print and Microforms Collection customer.1410.4 1790856 raw 412 | Journal of experimental social psychology. 1984 2003 Print issues: 20-39(1984-2003) print Print issues: 20-39(1984-2003) Ely Library Print and Microforms Collection customer.1410.4 1754583 raw 413 | Emerson Society quarterly, The 1956 1963 Print issues: no.3-33,43-52(1956-1963,1966-1968) print Print issues: no.3-33,43-52(1956-1963,1966-1968) Ely Library Print and Microforms Collection customer.1410.4 raw 414 | Emerson Society quarterly, The 1966 1968 Print issues: no.3-33,43-52(1956-1963,1966-1968) print Print issues: no.3-33,43-52(1956-1963,1966-1968) Ely Library Print and Microforms Collection customer.1410.4 raw 415 | Journal of communication. 1979 1992 Print issues: 29-42(1979-1992); print Print issues: 29-42(1979-1992); Ely Library Print and Microforms Collection customer.1410.4 1754508 raw 416 | Earth Print issues: Retains current year. R1Y fulltext Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 417 | Philosophy & social criticism. 1988 1998 Print issues: 14-24(1988-1998) print Print issues: 14-24(1988-1998) Ely Library Print and Microforms Collection customer.1410.4 4098836 raw 418 | Parks & recreation. 1988 1992 Print issues: 23-27 (1988-1992); retains current year. print Print issues: 23-27 (1988-1992); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1761919 raw 419 | Parks & recreation. Print issues: 23-27 (1988-1992); retains current year. R1Y print Print issues: 23-27 (1988-1992); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1761919 raw 420 | Raritan. 1981 1991 Print issues: 1-10 (1981-1990); retains current year. print Print issues: 1-10 (1981-1990); retains current year. Ely Library Print and Microforms Collection customer.1410.4 7087821 raw 421 | Raritan. Print issues: 1-10 (1981-1990); retains current year. R1Y print Print issues: 1-10 (1981-1990); retains current year. Ely Library Print and Microforms Collection customer.1410.4 7087821 raw 422 | Journal of teaching in physical education :JTPE. 1981 Print issues: 1-(1981- to present) print Print issues: 1-(1981- to present) Ely Library Print and Microforms Collection customer.1410.4 7062604 raw 423 | Journal of drug issues. 1985 1994 Print issues: 15-24(1985-1994); retains current year. print Print issues: 15-24(1985-1994). Ely Library Print and Microforms Collection customer.1410.4 1754539 raw 424 | Journal of research in childhood education :JRCE / 1989 1991 Print issues: 4-5 (1989-1991); Retains 3 years print Print issues: 4-5 (1989-1991); Retains 3 years Ely Library Print and Microforms Collection customer.1410.4 12019948 raw 425 | Journal of research in childhood education :JRCE / Print issues: 4-5 (1989-1991); Retains 3 years R3Y fulltext Print issues: 4-5 (1989-1991); Retains 3 years Ely Library Print and Microforms Collection customer.1410.4 12019948 raw 426 | Reading research and instruction :the journal of the College Reading Association. 1985 2001 Print issues: 25-40 (1985-2001) print Print issues: 25-40 (1985-2001) Ely Library Print and Microforms Collection customer.1410.4 12702956 raw 427 | American journal of art therapy. 1982 22 1991 29 Print issues: 22-29(1982-1991) print Print issues: 22-29(1982-1991) Ely Library Print and Microforms Collection customer.1410.4 1798034 raw 428 | American music. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 8741667 raw 429 | ATQ. 1980 1986 Print issues: 45-62, (1980-1986); 1-4 (1987-1990) print Print issues: 45-62, (1980-1986); 1-4 (1987-1990) Ely Library Print and Microforms Collection customer.1410.4 1480916 raw 430 | ATQ. 1987 1990 Print issues: 45-62, (1980-1986); 1-4 (1987-1990) print Print issues: 45-62, (1980-1986); 1-4 (1987-1990) Ely Library Print and Microforms Collection customer.1410.4 1480916 raw 431 | Sociology of education. Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 1765952 raw 432 | Journal of speech and hearing research :a publication of the American Speech and Hearing Association. 1958 1991 Print issues: 1-34 (1958-1991) print Print issues: 1-34 (1958-1991) Ely Library Print and Microforms Collection customer.1410.4 1754814 raw 433 | Teacher education and special education. 1987 1998 Print issues: 10-21 (1987-1998); retains current year. print Print issues: 10-21 (1987-1998); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4625324 raw 434 | Teacher education and special education. Print issues: 10-21 (1987-1998); retains current year. R1Y print Print issues: 10-21 (1987-1998); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4625324 raw 435 | America. Print issues: Microfilm=122-169 1970-1993 print Print issues: Microfilm=122-169 1970-1993 Ely Library Print and Microforms Collection customer.1410.4 1479242 raw 436 | The Journal Print issues: 32-33 (2004-2005) print Print issues: 32-33 (2004-2005) Ely Library Print and Microforms Collection customer.1410.4 raw 437 | Scholastic coach and athletic director. Print issues: Microfilm=64:1-65:3 1994:Aug.-1995:Oct. print Print issues: Microfilm=64:1-65:3 1994:Aug.-1995:Oct. Ely Library Print and Microforms Collection customer.1410.4 33998979 raw 438 | Teaching sociology. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1789172 raw 439 | American libraries. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 854299 raw 440 | Rock & ice. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 12661931 raw 441 | Journal of humanistic psychology, The 1973 1997 Print issues: 13-37(1973-1997) print Print issues: 13-37(1973-1997) Ely Library Print and Microforms Collection customer.1410.4 raw 442 | Journal of youth and adolescence. 1980 1992 Print issues: 9-21(1980-1992) print Print issues: 9-21(1980-1992) Ely Library Print and Microforms Collection customer.1410.4 1783955 raw 443 | Journal of early intervention. 1989 2000 Print issues: 13-23(1989-2000) print Print issues: 13-23(1989-2000) Ely Library Print and Microforms Collection customer.1410.4 19753071 raw 444 | Atlantic monthly, The Print issues: Past 12 Months Only R12M print Print issues: 1 (1857)- Ely Library Print and Microforms Collection customer.1410.4 raw 445 | Educational administration quarterly :EAQ. 1971 1998 Print issues: 7-34(1971-1998) print Print issues: 7-34(1971-1998) Ely Library Print and Microforms Collection customer.1410.4 1567565 raw 446 | Journal of economic perspectives :a journal of the American Economic Association, The Print issues: Retains 2 years. R2Y print Print issues: Retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 raw 447 | Calliope :world history for young people. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 21577362 raw 448 | Art history. 1996 19 2001 24 Print issues: 19-24(1996-2001) print Print issues: 19-24(1996-2001) Ely Library Print and Microforms Collection customer.1410.4 3952807 raw 449 | Journal of research and development in education. 1967 1975 Print issues: 1-9, 13-33(1967-1975, 1980-2000) print Print issues: 1-9, 13-33(1967-1975, 1980-2000) Ely Library Print and Microforms Collection customer.1410.4 1754777 raw 450 | Journal of research and development in education. 1980 2000 Print issues: 1-9, 13-33(1967-1975, 1980-2000) print Print issues: 1-9, 13-33(1967-1975, 1980-2000) Ely Library Print and Microforms Collection customer.1410.4 1754777 raw 451 | National geographic. Print issues: Past 5 years only R5Y print Print issues: Past 5 years only Ely Library Print and Microforms Collection customer.1410.4 6451257 raw 452 | Social work research. 1999 2008 Print issues: 23-32 (1999-2008). print Print issues: 23-32 (1999-2008). Ely Library Print and Microforms Collection customer.1410.4 28398727 raw 453 | Journal of popular film and television :JPF & T, The 1983 1992 Print issues: 11-19(1983-1992). print Print issues: 11-19(1983-1992). Ely Library Print and Microforms Collection customer.1410.4 raw 454 | Politics / Print issues: 17-21(1997-2001) print Print issues: 17-21(1997-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 455 | Aviation week & space technology. Print issues: Retains 12 months R12M print Print issues: Retains 3 years Ely Library Print and Microforms Collection customer.1410.4 1518944 raw 456 | Teaching elementary physical education :TEPE. 1997 2006 Print issues: 8-17 (1997-2006) print Print issues: 8-17 (1997-2006) Ely Library Print and Microforms Collection customer.1410.4 20121171 raw 457 | Journal of teacher education. 1980 1993 Print issues: 31-44, 59-60:2 (1980-1993, 2008-2009) print Print issues: 31-44, 59-60:2 (1980-1993, 2008-2009) Ely Library Print and Microforms Collection customer.1410.4 1782535 raw 458 | Ebony. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567306 raw 459 | Journal of children's communication development :JCCD : a publication of the Division for Children's Communication Development. Print issues: 17:no.2-20(1995:Fall-1999) print Print issues: 17:no.2-20(1995:Fall-1999) Ely Library Print and Microforms Collection customer.1410.4 36451717 raw 460 | Digital Photo Pro Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 52789055 raw 461 | International journal of sport biomechanics. 1985 1992 Print issues: 1-8(1985-1992.) print Print issues: 1-8(1985-1992.) Ely Library Print and Microforms Collection customer.1410.4 9901720 raw 462 | Atlantic monthly, The [Microfilm=228-247:3 1971-1981:Mar.] R1Y print [Microfilm=228-247:3 1971-1981:Mar.] Ely Library Print and Microforms Collection customer.1410.4 raw 463 | Childhood education. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1554226 raw 464 | National parks. 2008 2015 Print issues: 82 (2008)- print Print issues: 82-89 (2008-2015) Ely Library Print and Microforms Collection customer.1410.4 7077425 raw 465 | Journal of criminal law, criminology, and police science, The Print issues: 51-63(1960-1972) print Print issues: 51-63(1960-1972) Ely Library Print and Microforms Collection customer.1410.4 raw 466 | Quaternary research. 1982 1997 Print issues: 17-48(1982-1997) print Print issues: 17-48(1982-1997) Ely Library Print and Microforms Collection customer.1410.4 1332293 raw 467 | Journal of creative behavior, The 1976 2014 Print issues: 10-(1976-2014) print Print issues: 10-48(1976-2014) Ely Library Print and Microforms Collection customer.1410.4 raw 468 | Journal of systems management. 1983 1986 Print issues: 34-37(1983-1986) print Print issues: 34-37(1983-1986) Ely Library Print and Microforms Collection customer.1410.4 1794211 raw 469 | Strategies. 1987 2001 Print issues: 1-14(1987-2001); 24 (2010)- print Print issues: 1-14(1987-2001); 24 (2010)- Ely Library Print and Microforms Collection customer.1410.4 45007365 raw 470 | Strategies. Print issues: 1-14(1987-2001); 24 (2010)- R2Y fulltext Print issues: 1-14(1987-2001); 24 (2010)- Ely Library Print and Microforms Collection customer.1410.4 45007365 raw 471 | Journal of the philosophy of sport. 1976 1994 Print issues: 3-21(1976-1994) print Print issues: 3-21(1976-1994) Ely Library Print and Microforms Collection customer.1410.4 1795819 raw 472 | American annals of education and instruction. 1833 3 1835 5 Print issues: 3-5(1833-1835) print Print issues: 3-5(1833-1835) Ely Library Print and Microforms Collection customer.1410.4 7224992 raw 473 | International journal of sport nutrition. 1991 1999 Print issues: 1-9(1991-1999) print Print issues: 1-9(1991-1999) Ely Library Print and Microforms Collection customer.1410.4 21402212 raw 474 | American jails :the magazine of the American Jail Association. 1996 2004 Print issues: 10-17 (1996-2004); retains current year. print Print issues: 10-17 (1996-2004); retains current year. Ely Library Print and Microforms Collection customer.1410.4 16677874 raw 475 | American jails :the magazine of the American Jail Association. Print issues: 10-17 (1996-2004); retains current year. R1Y print Print issues: 10-17 (1996-2004); retains current year. Ely Library Print and Microforms Collection customer.1410.4 16677874 raw 476 | Thrust for educational leadership. 1973 3 1993 22 Print issues: 3-22 (1973-1993) print Print issues: 3-22 (1973-1993) Ely Library Print and Microforms Collection customer.1410.4 2705494 raw 477 | NASSP bulletin. 1985 1998 Print issues: 69 (1985)-82 (1998) print Print issues: 69 (1985)-82 (1998) Ely Library Print and Microforms Collection customer.1410.4 4248543 raw 478 | Past & present. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1713839 raw 479 | Theatre record. 1991 11 1996 16 Print issues: 11-16(1991-1996) print Print issues: 11-16(1991-1996) Ely Library Print and Microforms Collection customer.1410.4 23266174 raw 480 | International journal of management. 1992 2003 Print issues: 10-20(1992-2003) print Print issues: 10-20(1992-2003) Ely Library Print and Microforms Collection customer.1410.4 11060406 raw 481 | Music & letters. 1973 2000 Print issues: 54-81 (1973-2000) print Print issues: 54-81 (1973-2000) Ely Library Print and Microforms Collection customer.1410.4 1758884 raw 482 | American secondary education. 1971 1 1988 16 Print issues: 1-16(1971-1988) print Print issues: 1-16(1971-1988) Ely Library Print and Microforms Collection customer.1410.4 852486 raw 483 | International journal of geographical information systems. 1988 1996 Print issues: 2-10(1988-1996) print Print issues: 2-10(1988-1996) Ely Library Print and Microforms Collection customer.1410.4 15605763 raw 484 | Cell. 0092-8674 0092-8674 R1Y print Current Year. Ely Library Print and Microforms Collection customer.1410.4 1792038 1792038 raw 485 | Day care and early education. 1980 1995 Print issues: 8-22(1980-1995) print Print issues: 8-22(1980-1995) Ely Library Print and Microforms Collection customer.1410.4 1789785 raw 486 | Gifted child quarterly, The 1982 1998 Print issues: 26-42(1982-1998) print Print issues: 26-42(1982-1998) Ely Library Print and Microforms Collection customer.1410.4 raw 487 | Magazine of history / 1994 1999 Print issues: 9-13 (1994-1999) print Print issues: 9-13 (1994-1999) Ely Library Print and Microforms Collection customer.1410.4 12627963 raw 488 | Genders. 1988 1997 Print issues: no.1-26(1988-1997) print Print issues: no.1-26(1988-1997) Ely Library Print and Microforms Collection customer.1410.4 16388863 raw 489 | Archaeology :a magazine dealing with the antiquity of the world. 2009 62 Print issues: 62-(2009- to present) print Print issues: 62-(2009- to present) Ely Library Print and Microforms Collection customer.1410.4 1481828 raw 490 | Education and training in mental retardation. 1987 1993 Print issues: 22-28(1987-1993) print Print issues: 22-28(1987-1993) Ely Library Print and Microforms Collection customer.1410.4 15995665 raw 491 | Plant science bulletin. 1995 Print issues: 41- (1995-) print Print issues: 41- (1995-) Ely Library Print and Microforms Collection customer.1410.4 1606449 raw 492 | Victorian studies. 1971 15 1975 18 Print issues: 15-18 (1971-1975) print Print issues: 15-18 (1971-1975) Ely Library Print and Microforms Collection customer.1410.4 1769095 raw 493 | Journal of Asian studies, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 494 | Golf digest. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1751307 raw 495 | Early education and development. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 18578031 raw 496 | Natural history. 1973 1982 Print issues:82- 91 (1973-1982); 113 (2009)- print Print issues:82- 91 (1973-1982); 113 (2009)- Ely Library Print and Microforms Collection customer.1410.4 1759475 raw 497 | Natural history. 2009 Print issues:82- 91 (1973-1982); 113 (2009)- print Print issues:82- 91 (1973-1982); 113 (2009)- Ely Library Print and Microforms Collection customer.1410.4 1759475 raw 498 | Education index :a cumulative author and subject index to a selected list of educational periodicals, books, and pamphlets, The 1929 1967 Print issues: 1-17(1929-1967) print Print issues: 1-17(1929-1967) Ely Library Print and Microforms Collection customer.1410.4 raw 499 | Journal of offender rehabilitation. Print issues: 16-22(1990-1996); retains current year. R1Y print Print issues: 16-22(1990-1996); retains current year. Ely Library Print and Microforms Collection customer.1410.4 819294793 raw 500 | TechTrends :for leaders in education & training. 1985 1999 Print issues: 30 (1985)-1999. print Print issues: 30 (1985)-1999 Ely Library Print and Microforms Collection customer.1410.4 11557330 raw 501 | Educational and psychological measurement. 1959 1980 Print issues: 19-40, 48-58 (1959-1980, 1988-1998); retains current year. print Print issues: 19-58 (1959-1998); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 502 | Educational and psychological measurement. 1988 1998 Print issues: 19-40, 48-58 (1959-1980, 1988-1998); retains current year. print Print issues: 19-58 (1959-1998); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 503 | Educational and psychological measurement. Print issues: 19-40, 48-58 (1959-1980, 1988-1998); retains current year. R1Y print Print issues: 19-58 (1959-1998); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 504 | Chaucer review, The 1966 1 1999 33 Print issues: 1-33(1966-1999) print Print issues: 1-33(1966-1999) Ely Library Print and Microforms Collection customer.1410.4 raw 505 | Piano quarterly, The 1985 1992 Print issues: no.131-159(1985-1992) print Print issues: no.131-159(1985-1992) Ely Library Print and Microforms Collection customer.1410.4 raw 506 | Bio systems. 1974 6 1995 34 Print issues: 6-34(1974-1995) print Print issues: 6-34(1974-1995) Ely Library Print and Microforms Collection customer.1410.4 1795601 raw 507 | Art bulletin, The 1974 1974 Print issues: 56 (1974); retains current year. print Print issues: 56 (1974); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 508 | Art bulletin, The Print issues: 56 (1974); retains current year. R1Y print Print issues: 56 (1974); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 509 | Historical journal of Massachusetts. 1972 1999 Print issues: 1-27 (1972-1999); retains current year. print Print issues: 1-27 (1972-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 60621443 raw 510 | Historical journal of Massachusetts. Print issues: 1-27 (1972-1999); retains current year. R1Y fulltext Print issues: 1-27 (1972-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 60621443 raw 511 | Zygon. 1979 1997 Print issues: 1979-1997. print Print issues: 1979-1997. Ely Library Print and Microforms Collection customer.1410.4 1814793 raw 512 | LOEX quarterly. Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 53166838 raw 513 | Child abuse & neglect. 1997 21 2002 26 5 Print issues: 21-26:5(1997-2002:May) print Print issues: 21-26:5(1997-2002:May) Ely Library Print and Microforms Collection customer.1410.4 3475531 raw 514 | Journal of state government, The 1986 1992 Print issues: 59-65 (1986-1992) print Print issues: 59-65 (1986-1992) Ely Library Print and Microforms Collection customer.1410.4 raw 515 | Primary voices K-6. 1997 2002 Print issues: 5-11 (1997-2002) print Print issues: 5-11 (1997-2002) Ely Library Print and Microforms Collection customer.1410.4 27426291 raw 516 | Social science quarterly. 1985 1990 Print issues: 66-71(1985-1990); Jun 2014-Dec 2014. print Print issues: 66-71(1985-1990); Jun 2014- Dec 2014. Ely Library Print and Microforms Collection customer.1410.4 4708543 raw 517 | Social science quarterly. 2014 Print issues: 66-71(1985-1990); Jun 2014-Dec 2014. print Print issues: 66-71(1985-1990); Jun 2014- Dec 2014. Ely Library Print and Microforms Collection customer.1410.4 4708543 raw 518 | Educational and Psychological Measurement 1959 19 1980 40 Print issues: 19-40, 48-58(1959-1980, 1988-1998) print Print issues: 19-40, 48-58(1959-1980, 1988-1998) Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 519 | Educational and Psychological Measurement 1988 48 1998 58 Print issues: 19-40, 48-58(1959-1980, 1988-1998) print Print issues: 19-40, 48-58(1959-1980, 1988-1998) Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 520 | Educational and Psychological Measurement Print issues: 19-40, 48-58(1959-1980, 1988-1998) R1Y print Print issues: 19-40, 48-58(1959-1980, 1988-1998) Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 521 | Journal of research in science teaching. 1972 1996 Print issues: 9-33(1972-1996) print Print issues: 9-33(1972-1996) Ely Library Print and Microforms Collection customer.1410.4 1783131 raw 522 | History Ireland. 1995 Print issues: 3-(1995- to present) print Print issues: 3-(1995- to present) Ely Library Print and Microforms Collection customer.1410.4 29768725 raw 523 | Harvard health letter / Print issues: Retains 2 years. R2Y print Print issues: Retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 22200621 raw 524 | Mother Jones. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2379341 raw 525 | Psychodynamic psychiatry Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 739102995 raw 526 | Science teacher, The 1984 1995 Print issues: 51-62 (1984-1995); retains current year. print Print issues: 51-62 (1984-1995); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 527 | Science teacher, The Print issues: 51-62 (1984-1995); retains current year. R1Y print Print issues: 51-62 (1984-1995); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 528 | Early music. 1979 2001 Print issues: 7-29(1979-2001) print Print issues: 7-29(1979-2001) Ely Library Print and Microforms Collection customer.1410.4 1642878 raw 529 | Volta voices. 1994 2004 Print issues: 1-11(1994-2004); Retains current year. print Print issues: 1-11(1994-2004); Retains Current Year Ely Library Print and Microforms Collection customer.1410.4 29832212 raw 530 | Volta voices. Print issues: 1-11(1994-2004); Retains current year. R1Y print Print issues: 1-11(1994-2004); Retains Current Year Ely Library Print and Microforms Collection customer.1410.4 29832212 raw 531 | Diagnostique :professional bulletin of the Council for Educational Diagnostic Services. 1985 1995 Print issues: 11-20(1985-1995) print Print issues: 11-20(1985-1995) Ely Library Print and Microforms Collection customer.1410.4 7325631 raw 532 | Ceramics monthly. 1973 21 Print issues: 21-(1973- to present) print Print issues: 21-(1973- to present) Ely Library Print and Microforms Collection customer.1410.4 1553732 raw 533 | Journal of clinical psychology. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1348731 raw 534 | Progress in physical geography. 1981 1997 Print issues: 5-21(1981-1997) print Print issues: 5-21(1981-1997) Ely Library Print and Microforms Collection customer.1410.4 3672747 raw 535 | American journal of botany. Print issues: Retains 2 years R2Y print Print issues: Retains 2 years Ely Library Print and Microforms Collection customer.1410.4 1480121 raw 536 | Instructor. [Microfilm=96:5-98:9 1987:Jan.-1989:May] R1Y print [Microfilm=96:5-98:9 1987:Jan.-1989:May] Ely Library Print and Microforms Collection customer.1410.4 20868525 raw 537 | Hastings constitutional law quarterly. 1987 1998 Print issues: 15-26(1987-1998); retains current year. print Print issues: 15-26(1987-1998). Ely Library Print and Microforms Collection customer.1410.4 1606931 raw 538 | Sociological spectrum :the official journal of the Mid-South Sociological Association. 1983 1998 Print issues: 3-18(1983-1998) print Print issues: 3-18(1983-1998) Ely Library Print and Microforms Collection customer.1410.4 7023725 raw 539 | Geography Teacher Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 71833424 raw 540 | Screen :the journal of the Society for Education in Film and Television. 1998 39 2014 55 Print issues: 39-(1998- to present) print Print issues: 39-55(1998-2014) Ely Library Print and Microforms Collection customer.1410.4 4303646 raw 541 | Exercise and sport sciences reviews. 2000 Print issues: 28-42(2000-2014) print Print issues: 28-(2000- to present) Ely Library Print and Microforms Collection customer.1410.4 1783628 raw 542 | Canadian journal of psychology.Revue canadienne de psychologie. Print issues: 37-46.(1983-1992.) print Print issues: 37-46.(1983-1992.) Ely Library Print and Microforms Collection customer.1410.4 1553157 raw 543 | Crime and delinquency. 1979 1996 Print issues: 25-42(1979-1996) print Print issues: 25-42(1979-1996) Ely Library Print and Microforms Collection customer.1410.4 1565415 raw 544 | New educator Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 53802460 raw 545 | German quarterly, The 1980 1995 Print issues: 53-68(1980-1995) print Print issues: 53-68(1980-1995) Ely Library Print and Microforms Collection customer.1410.4 raw 546 | American journal of political science. Print issues: Retains past 2 years. R2Y print Print issues: Retains past 2 years. Ely Library Print and Microforms Collection customer.1410.4 1789847 raw 547 | Canoe & kayak. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 29681851 raw 548 | Focus / 1988 1990 Print issues: 38-40(1988-1990) print Print issues: 38-40(1988-1990) Ely Library Print and Microforms Collection customer.1410.4 1334365 raw 549 | Exceptional children :journal of the International Council for Exceptional Children. 1951 1988 Print issues: 1951-1988 (vols. 18-54); Retains current year. print 1951-1988 (vols 18-54). Ely Library Print and Microforms Collection customer.1410.4 1568566 raw 550 | Journal of experimental education, The 1993 1994 Print issues: 62(1993-1994); retains current year print Print issues: 62(1993-1994); retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 551 | Journal of experimental education, The Print issues: 62(1993-1994); retains current year R1Y fulltext Print issues: 62(1993-1994); retains current year Ely Library Print and Microforms Collection customer.1410.4 raw 552 | Natural New England. 2000 2005 Print issues: 1-25 (2000-2005) print Print issues: 1-25 (2000-2005) Ely Library Print and Microforms Collection customer.1410.4 42879727 raw 553 | National teaching & learning forum, The Print issues: Retains 3 years. print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 raw 554 | Adapted physical activity quarterly :APAQ. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 9159651 raw 555 | American politics quarterly. 1983 1998 Print issues: 11-26(1983-1998) print Print issues: 11-26(1983-1998) Ely Library Print and Microforms Collection customer.1410.4 1784726 raw 556 | Nation's business. [Microfilm=66-81 1978-1993] print [Microfilm=66-81 1978-1993] Ely Library Print and Microforms Collection customer.1410.4 1759465 raw 557 | Booklist, The Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 558 | Booklist, The Print issues: Retains current year. R1Y fulltext Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 559 | Communications and the law. 1986 8 1995 17 Print issues: 8-17(1986-1995) print Print issues: 8-17(1986-1995) Ely Library Print and Microforms Collection customer.1410.4 4252472 raw 560 | Musician. 1991 1999 Print issues: No. 147-245 (1991-1999:Apr.) print Print issues: No. 147-245 (1991-1999:Apr.) Ely Library Print and Microforms Collection customer.1410.4 8480685 raw 561 | Comparative education review. 1974 1994 Print issues: 18-38(1974-1994); retains current year. print Print issues: 18-38(1974-1994); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564552 raw 562 | Comparative education review. Print issues: 18-38(1974-1994); retains current year. R1Y print Print issues: 18-38(1974-1994); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564552 raw 563 | Focus on autistic behavior. 1991 1995 Print issues: 6-10(1991-1995) print Print issues: 6-10(1991-1995) Ely Library Print and Microforms Collection customer.1410.4 13113682 raw 564 | American educator. 1998 22 Print issues: 22-(1998- to present) print Print issues: 22-(1998- to present) Ely Library Print and Microforms Collection customer.1410.4 2866801 raw 565 | Modern language review, The 1971 1974 Print issues: 6669-(1971-1974). print Print issues: 6669-(1971-1974). Ely Library Print and Microforms Collection customer.1410.4 raw 566 | FBI law enforcement bulletin. 1979 2010 Print issues: 48-79(1979-2010) print Print issues: 48-79(1979-2010) Ely Library Print and Microforms Collection customer.1410.4 2557429 raw 567 | American political science review, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 568 | Reference librarian, The Print issues: 1-62 (1981-1998) print Print issues: 1-62 (1981-1998) Ely Library Print and Microforms Collection customer.1410.4 raw 569 | Science education. 1973 1995 Print issues: 57-79(1973-1995) print Print issues: 57-79(1973-1995) Ely Library Print and Microforms Collection customer.1410.4 1697181 raw 570 | Developmental biology. 1992 1997 Print issues: 151-181(1992-1997) print Print issues: 151-181(1992-1997) Ely Library Print and Microforms Collection customer.1410.4 1718504 raw 571 | Pastoral music. 1983 2001 Print issues: 8-25(1983-2001) print Print issues: 8-25(1983-2001) Ely Library Print and Microforms Collection customer.1410.4 2560837 raw 572 | Perceptual and motor skills. 1976 42 2014 119 Print issues: 42-119 (1976-2014) print Print issues: 42-119 (1976-2014) Ely Library Print and Microforms Collection customer.1410.4 4704366 raw 573 | Physical therapy. 1981 1988 Print issues: 61-68 (1981-1988); retains current year. print Print issues: 61-68 (1981-1988); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1762333 raw 574 | Physical therapy. Print issues: 61-68 (1981-1988); retains current year. R1Y fulltext Print issues: 61-68 (1981-1988); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1762333 raw 575 | Inc. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4251282 raw 576 | Exceptional Child Education Abstracts 1969 1977 Print issues: 1-8(1969-1977) print Print issues: 1-8(1969-1977) Ely Library Print and Microforms Collection customer.1410.4 1568565 raw 577 | School library journal :SLJ. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1798621 raw 578 | American annals of the deaf. 1973 118 1979 124 Print issues: 118-124(1973-1979) print Print issues: 118-141(1973-1996) Ely Library Print and Microforms Collection customer.1410.4 5695496 raw 579 | Criminal justice and behavior. 1985 1997 Print issues: 12-24(1985-1997) print Print issues: 12-24(1985-1997) Ely Library Print and Microforms Collection customer.1410.4 1793415 raw 580 | Omega :an international journal for the study of dying, death, bereavement, suicide, and other lethal behaviors. 1975 1999 Print issues: 6-39 (1975-1999) print Print issues: 6-39 (1975-1999) Ely Library Print and Microforms Collection customer.1410.4 1761236 raw 581 | Urban review, The 1978 1997 Print issues: 10-29(1978-1997); retains current year. print Print issues: 10-29(1978-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 582 | Urban review, The Print issues: 10-29(1978-1997); retains current year. R1Y print Print issues: 10-29(1978-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 583 | Down beat. 1992 Print issues: 59-(1992- to present) print Print issues: 59-(1992- to present) Ely Library Print and Microforms Collection customer.1410.4 2260489 raw 584 | Mid-America;an historical review. 1973 1995 Print issues: 55-77(1973-1995) print Print issues: 55-77(1973-1995) Ely Library Print and Microforms Collection customer.1410.4 1757398 raw 585 | Educational technology research and development :ETR & D. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 18956055 raw 586 | Massachusetts law review. 1979 Print issues: 64-(1979- to present) print Print issues: 64-(1979- to present) Ely Library Print and Microforms Collection customer.1410.4 3829364 raw 587 | New times international. 1993 1995 Print issues: 1993-1995 print Print issues: 1993-1995 Ely Library Print and Microforms Collection customer.1410.4 25902144 raw 588 | Fortune. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1569892 raw 589 | Smithsonian. 2011 Print issues: 41 (2011)- print Print issues: 41 (2011)- Ely Library Print and Microforms Collection customer.1410.4 1359769 raw 590 | Drama review :TDR, The 1972 1978 Print issues: 16-22, 28-38 (1972-1978,1984-1994) print Print issues: 16-22, 28-38 (1972-1978,1984-1994) Ely Library Print and Microforms Collection customer.1410.4 raw 591 | Drama review :TDR, The 1984 1994 Print issues: 16-22, 28-38 (1972-1978,1984-1994) print Print issues: 16-22, 28-38 (1972-1978,1984-1994) Ely Library Print and Microforms Collection customer.1410.4 raw 592 | Issue. 1973 1995 Print issues: 3-23(1973-1995) print Print issues: 3-23(1973-1995) Ely Library Print and Microforms Collection customer.1410.4 1241350 raw 593 | Musical quarterly, The 1969 2002 Print issues: 55-86(1969-2002) print Print issues: 55-86(1969-2002) Ely Library Print and Microforms Collection customer.1410.4 raw 594 | Public management. 1981 1994 Print issues: 63-76 (1981-1994) print Print issues: 63-76 (1981-1994) Ely Library Print and Microforms Collection customer.1410.4 2970720 raw 595 | Basic and applied social psychology. 1984 1996 Print issues: 5-18(1984-1996). print Print issues: 5-18(1984-1996). Ely Library Print and Microforms Collection customer.1410.4 6006710 raw 596 | School arts. 1987 1988 v.87-88 (1987-1989); 107 (2007)- print v.87-88 (1987-1989); 107 (2007)- Ely Library Print and Microforms Collection customer.1410.4 5457273 raw 597 | School arts. 2007 v.87-88 (1987-1989); 107 (2007)- print v.87-88 (1987-1989); 107 (2007)- Ely Library Print and Microforms Collection customer.1410.4 5457273 raw 598 | Strength and conditioning journal. 1999 2003 Print issues: 21-25(1999-2003); retains current year. print Print issues: 21-25(1999-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 40885525 raw 599 | American journalism review :AJR. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 27363765 raw 600 | Entrepreneur. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4026654 raw 601 | Professional school counseling. 2009 2011 Print issues: 13-15:2 (2009-2011) print Print issues: 13-15:2 (2009-2011) Ely Library Print and Microforms Collection customer.1410.4 37745006 raw 602 | Literacy today. 2411-7862 2411-7862 R1Y print Retains current year. Prior name: Reading Today Ely Library Print and Microforms Collection customer.1410.4 914741579 914741579 raw 603 | Swimming technique :official publication of the American Swimming Coaches Association. 1983 1995 Print issues: 20-32 (1983-1995) print Print issues: 20-32 (1983-1995) Ely Library Print and Microforms Collection customer.1410.4 1696565 raw 604 | Swimming world magazine 2008 Print issues: 49 (2008)- print Print issues: 49 (2008)- Ely Library Print and Microforms Collection customer.1410.4 58400447 raw 605 | Orbis. 1977 1998 Print issues: 21-42(1977-1998) print Print issues: 21-42(1977-1998) Ely Library Print and Microforms Collection customer.1410.4 1761361 raw 606 | Media and methods. 1984 1998 Print issues: 21-34 (1984-1998) print Print issues: 21-34 (1984-1998) Ely Library Print and Microforms Collection customer.1410.4 817432 raw 607 | Teaching tolerance. 2004 2010 Print issues: 25-38 (2004-1010) print Print issues: 25-38 (2004-1010) Ely Library Print and Microforms Collection customer.1410.4 26707781 raw 608 | Journal of organizational behavior management. 1989 2002 Print issues: 10-22(1989-2002) print Print issues: 10-22(1989-2002) Ely Library Print and Microforms Collection customer.1410.4 3271654 raw 609 | Learning and leading with technology :the ISTE journal of educational technology practice and policy. 1996 2000 Print issues: 24-27 (1996-2000) print Print issues: 24-27 (1996-2000) Ely Library Print and Microforms Collection customer.1410.4 32411727 raw 610 | Justice Quarterly 0741-8825 1984 1 1997 14 Print issues: 1 - 14 (1984 - 1997), Retains current year print Ely Library Print and Microforms Collection customer.1410.4 10232906 raw 611 | Justice Quarterly 0741-8825 Print issues: 1 - 14 (1984 - 1997), Retains current year R1Y print Ely Library Print and Microforms Collection customer.1410.4 10232906 raw 612 | English language notes. 1963 1974 Print issues: 1-11 (1963-1974); retains current year. print Print issues: 1-11 (1963-1974); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567963 raw 613 | English language notes. Print issues: 1-11 (1963-1974); retains current year. R1Y print Print issues: 1-11 (1963-1974); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1567963 raw 614 | Journal of childhood communication disorders :JCCD / 1987 1999 Print issues: 11-20 (1987-1999) print Print issues: 11-20 (1987-1999) Ely Library Print and Microforms Collection customer.1410.4 6849737 raw 615 | Foreign language annals. 1980 2003 Print issues: 13-36(1980-2003); retains current year. print Print issues: 13-36(1980-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1334424 raw 616 | Foreign language annals. Print issues: 13-36(1980-2003); retains current year. R1Y print Print issues: 13-36(1980-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1334424 raw 617 | High school magazine, The 1993 1999 Print issues: 1-6(1993-1999) print Print issues: 1-6(1993-1999) Ely Library Print and Microforms Collection customer.1410.4 raw 618 | Journal of heredity, The 1988 1995 Print issues: 79-86(1988-1995) print Print issues: 79-86(1988-1995) Ely Library Print and Microforms Collection customer.1410.4 raw 619 | Educational leadership. 1994 1996 Print issues: 52-53(1994-1996); retains current year. print Print issues: 52-53(1994-1996); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2576039 raw 620 | Educational leadership. Print issues: 52-53(1994-1996); retains current year. R1Y print Print issues: 52-53(1994-1996); retains current year. Ely Library Print and Microforms Collection customer.1410.4 2576039 raw 621 | Arts in psychotherapy, The 1983 10 1996 23 Print issues: 10-23(1983-1996) print Print issues: 10-23(1983-1996) Ely Library Print and Microforms Collection customer.1410.4 raw 622 | Music review, The 1991 1994 Print issues: 52-55(1991-1994) print Print issues: 52-55(1991-1994) Ely Library Print and Microforms Collection customer.1410.4 raw 623 | Essential teacher :ET. 2003 2009 Print issues: 1-6(2003-2009) print Print issues: 1-6(2003-2009) Ely Library Print and Microforms Collection customer.1410.4 52635307 raw 624 | Topics in language disorders. 1992 1999 Print issues: 13-19 (1992-1999). print Print issues: 13-19 (1992-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 6690806 raw 625 | Topics in language disorders. Print issues: 13-19 (1992-1999). R1Y print Print issues: 13-19 (1992-1999); retains current year. Ely Library Print and Microforms Collection customer.1410.4 6690806 raw 626 | Teachers College record / 1980 1999 Print issues: 82-100 (1980-1999); Retains current year print Print issues: 82-100 (1980-1999); Retains current year Ely Library Print and Microforms Collection customer.1410.4 1590002 raw 627 | Teachers College record / Print issues: 82-100 (1980-1999); Retains current year R1Y fulltext Print issues: 82-100 (1980-1999); Retains current year Ely Library Print and Microforms Collection customer.1410.4 1590002 raw 628 | French review, The 1975 Print issues: 49-(1975- to present) print Print issues: 49-(1975- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 629 | Journal of drug education. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1022664 raw 630 | Spectrum 1992 1995 Print issues: 65-68 (1992-1995) print Print issues: 65-68 (1992-1995) Ely Library Print and Microforms Collection customer.1410.4 1752538 raw 631 | Infant behavior & development. 1999 2002 Print issues: 22-24 (1999-2002) print Print issues: 22-24 (1999-2002) Ely Library Print and Microforms Collection customer.1410.4 3834915 raw 632 | Contemporary sociology. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 958948 raw 633 | Comparative education. 1973 9 1989 25 Print issues: 9-25(1973-1989.) print Print issues: 9-25(1973-1989.) Ely Library Print and Microforms Collection customer.1410.4 1564551 raw 634 | Journal of athletic training. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 25538987 raw 635 | College English. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564053 raw 636 | Journal of applied sport psychology. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 18717831 raw 637 | College music symposium. 1993 33 2004 44 Print issues: 33-44(1993-2004) print Print issues: 33-44(1993-2004) Ely Library Print and Microforms Collection customer.1410.4 1022678 raw 638 | Studies in short fiction. 1966 1974 Print issues: 4-11(1966-1974) print Print issues: 4-11(1966-1974) Ely Library Print and Microforms Collection customer.1410.4 1605955 raw 639 | Deviant behavior. 1998 2001 Print issues: 19-22(1998-2001) print Print issues: 19-22(1998-2001) Ely Library Print and Microforms Collection customer.1410.4 4540788 raw 640 | Education and training in developmental disabilities. 2003 2010 Print issues: 38-45(2003- to 2010) print Print issues: 38-45(2003- to 2010) Ely Library Print and Microforms Collection customer.1410.4 51822274 raw 641 | Foreign affairs. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1569702 raw 642 | American poetry review, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 643 | Educational forum, The 1972 2000 Print issues: 37-65(1972-2000); Retains current year. print Print issues: 37-65(1972-2000); Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 644 | Educational forum, The Print issues: 37-65(1972-2000); Retains current year. R1Y print Print issues: 37-65(1972-2000); Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 645 | Communications, Culture and Critique Print issues: 1-(2008- to present) print Print issues: 1-(2008- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 646 | Journal of applied social psychology. 1983 2001 Print issues: 13-31,33-(1983-2001,2003- to present) print Print issues: 13-31,33-(1983-2001,2003- to present) Ely Library Print and Microforms Collection customer.1410.4 855160 raw 647 | Journal of applied social psychology. 2003 Print issues: 13-31,33-(1983-2001,2003- to present) print Print issues: 13-31,33-(1983-2001,2003- to present) Ely Library Print and Microforms Collection customer.1410.4 855160 raw 648 | Humanist, The [Microfilm=30-53 1970-1993] print [Microfilm=30-53 1970-1993] Ely Library Print and Microforms Collection customer.1410.4 raw 649 | Journal of crime & justice / 1995 Print issues: 18-(1995- to present) print Print issues: 18-(1995- to present) Ely Library Print and Microforms Collection customer.1410.4 8420063 raw 650 | Contemporary education / 1994 1998 Print issues: 66-69(1994-1998) print Print issues: 66-69(1994-1998) Ely Library Print and Microforms Collection customer.1410.4 1564957 raw 651 | Instructor. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 20868525 raw 652 | College and research libraries. 1971 32 1990 51 Print issues: 32-51(1971-1990) print Print issues: 32-51(1971-1990) Ely Library Print and Microforms Collection customer.1410.4 2354797 raw 653 | British journal for the philosophy of science, The 1973 24 1992 43 Print issues: 24-43(1973-1992.) print Print issues: 24-43(1973-1992.) Ely Library Print and Microforms Collection customer.1410.4 raw 654 | Black Art 1976 1 1981 5 2 Print issues: 1-5:2(1976-1981) print Print issues: 1-5:2(1976-1981) Ely Library Print and Microforms Collection customer.1410.4 2792353 raw 655 | Action in teacher education. Print issues: Past 2 years Only R2Y print Print issues: Past 2 years Only Ely Library Print and Microforms Collection customer.1410.4 4115808 raw 656 | Cognitive psychology. 1977 9 1996 31 Print issues: 9-31(1977-1996) print Print issues: 9-31(1977-1996) Ely Library Print and Microforms Collection customer.1410.4 1411264 raw 657 | Journal of rehabilitation. 1973 1974 Print issues: 39-40 (1973-1974); retains current year. print Print issues: 39-40 (1973-1974). Ely Library Print and Microforms Collection customer.1410.4 1640621 raw 658 | Journal of criminal justice education :JCJE. 1994 1997 Print issues: 5-8(1994-1997); retains current year. print Print issues: 5-8(1994-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 60620540 raw 659 | Journal of criminal justice education :JCJE. Print issues: 5-8(1994-1997); retains current year. R1Y fulltext Print issues: 5-8(1994-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 60620540 raw 660 | Photo techniques. 1996 2013 Print issues: 17-(1996- to present) print Print issues: 17-(1996- to present) Ely Library Print and Microforms Collection customer.1410.4 32908258 raw 661 | New scientist Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2378350 raw 662 | Granta, The 2005 Print issues: 89-(2005- to present) print Print issues: 89-(2005- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 663 | Climbing. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4040888 raw 664 | Journal of international affairs. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2552399 raw 665 | Child Development Perspectives 2014 Print issues: (2014-). print Print issues: (2014-) Ely Library Print and Microforms Collection customer.1410.4 174114249 raw 666 | Multicultural education :the magazine of the National Association for Multicultural Education. 1998 2000 Print issues: 5:3 (1998)-7 (2000). print Print issues: 5:3 (1998)-7 (2000). Ely Library Print and Microforms Collection customer.1410.4 27667643 raw 667 | Canadian journal of history of sport =Revue canadienne de l'histoire des sports. 1977 8 1994 25 Print issues: 8-25(1977-1994) print Print issues: 8-25(1977-1994) Ely Library Print and Microforms Collection customer.1410.4 7616520 raw 668 | Quarterly journal of economics, The [Microfilm=85-92 1971-1978] print [Microfilm=85-92 1971-1978] Ely Library Print and Microforms Collection customer.1410.4 raw 669 | Hudson review, The 1968 2001 Print issues: 21-53(1968-2001); current year print Print issues: 21-53(1968-2001); current year Ely Library Print and Microforms Collection customer.1410.4 raw 670 | Hudson review, The Print issues: 21-53(1968-2001); current year R1Y print Print issues: 21-53(1968-2001); current year Ely Library Print and Microforms Collection customer.1410.4 raw 671 | Crime & justice international. 1999 Print issues: 15-(1999- to present) print Print issues: 15-(1999- to present) Ely Library Print and Microforms Collection customer.1410.4 36428624 raw 672 | Career development quarterly, The 1986 35 1990 38 Print issues: 35-38(1986-1990) print Print issues: 35-45(1986-1996) Ely Library Print and Microforms Collection customer.1410.4 raw 673 | Journal of modern history, The Print issues: 60-66(1988-1994) print Print issues: 60-66(1988-1994) Ely Library Print and Microforms Collection customer.1410.4 raw 674 | Education and training in mental retardation and developmental disabilities. 1994 2002 Print issues: 29-37(1994-2002) print Print issues: 29-37(1994-2002) Ely Library Print and Microforms Collection customer.1410.4 30016773 raw 675 | Physics teacher, The 1977 Print issues: 15-(1977- to present) print Print issues: 15-(1977- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 676 | Journal of sport and social issues. 1980 2008 Print issues: 4-32 (1980-2008) print Print issues: 4-32 (1980-2008) Ely Library Print and Microforms Collection customer.1410.4 4233486 raw 677 | Perspectives on Politics 1537-5927 Print issues: Retains past 2 years R2Y print Ely Library Print and Microforms Collection customer.1410.4 48238953 raw 678 | Beijing review =Beijing zhou bao. 1995 38 1996 39 Print issues: 38-39, 49-57(1995-1996, 2006- 2014) print Print issues: 38-39, 49-57(1995-1996, 2006-2014) Ely Library Print and Microforms Collection customer.1410.4 4550608 raw 679 | Beijing review =Beijing zhou bao. 2006 49 2014 57 Print issues: 38-39, 49-57(1995-1996, 2006- 2014) print Print issues: 38-39, 49-57(1995-1996, 2006-2014) Ely Library Print and Microforms Collection customer.1410.4 4550608 raw 680 | Monitor on psychology :a publication of the American Psychological Association. 2000 2014 Print issues: 31-(2000- to Jan 2015) print Print issues: 31-(2000- to Jan 2015) Ely Library Print and Microforms Collection customer.1410.4 43255268 raw 681 | Techniques. Print issues: Retains 3 years. R3Y print Print issues: 85 (2010)- Ely Library Print and Microforms Collection customer.1410.4 35516825 raw 682 | Journal of wildlife management, The 1973 2003 Print issues: 37-67(1973-2003); retains current year. print Print issues: 37-67(1973-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 683 | Journal of wildlife management, The Print issues: 37-67(1973-2003); retains current year. R1Y fulltext Print issues: 37-67(1973-2003); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 684 | Studies in history and philosophy of science. 1981 1995 Print issues: 12-26(1981-1995) print Print issues: 12-26(1981-1995) Ely Library Print and Microforms Collection customer.1410.4 1343146 raw 685 | Journal of politics, The Print issues: 74 (2012)- R1Y print Print issues: 74 (2012)- Ely Library Print and Microforms Collection customer.1410.4 raw 686 | Discover. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 6560726 raw 687 | Instrumentalist, The 1984 Print issues: 38-(1984- to present) print Print issues: 38-(1984- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 688 | Journal of police and criminal psychology. 1988 Print issues: 4-(1988- to present) print Print issues: 4-(1988- to present) Ely Library Print and Microforms Collection customer.1410.4 11735084 raw 689 | Studies in applied mathematics. 1977 1993 Print issues: 56-90(1977-1993.) print Print issues: 56-90(1977-1993.) Ely Library Print and Microforms Collection customer.1410.4 2246121 raw 690 | Science and children. 1984 1997 Print issues: 22-34(1984-1998); current 3 years print Print issues: 22-34(1984-1998); current 3 years Ely Library Print and Microforms Collection customer.1410.4 1607110 raw 691 | Science and children. Print issues: 22-34(1984-1998); current 3 years R3Y print Print issues: 22-34(1984-1998); current 3 years Ely Library Print and Microforms Collection customer.1410.4 1607110 raw 692 | American cinematographer. 1984 65 1995 76 Print issues: 65-76(1984-1995) print Print issues: 65-76(1984-1995) Ely Library Print and Microforms Collection customer.1410.4 1479664 raw 693 | Sound & vision. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 45693990 raw 694 | Metaphilosophy. 1980 1994 Print issues: 11-25(1980-1994) print Print issues: 11-25(1980-1994) Ely Library Print and Microforms Collection customer.1410.4 1606437 raw 695 | Memory & cognition. 1973 2001 Print issues: 1-29(1973-2001) print Print issues: 1-29(1973-2001) Ely Library Print and Microforms Collection customer.1410.4 1788000 raw 696 | Computer security journal. 1981 1 1998 13 Print issues: 1-13(1981-1998) print Print issues: 1-13(1981-1998) Ely Library Print and Microforms Collection customer.1410.4 7480018 raw 697 | International gymnast Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 14944601 raw 698 | Christian century, The [Microfilm=69-109 1952-1992] print [Microfilm=69-109 1952-1992] Ely Library Print and Microforms Collection customer.1410.4 raw 699 | Percussive notes. 1990 2001 Print issues: 29-39 (1990-2001) print Print issues: 29-39 (1990-2001) Ely Library Print and Microforms Collection customer.1410.4 1762096 raw 700 | CPA journal, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 701 | Learning 1985 1998 Print issues: 14-26 (1985-1998) print Print issues: 14-26 (1985-1998) Ely Library Print and Microforms Collection customer.1410.4 1785013 raw 702 | Mid-Atlantic almanack :the journal of the Mid-Atlantic Popular/American Culture Association, The 1992 1996 Print issues: 1-5(1992-1996) print Print issues: 1-5(1992-1996) Ely Library Print and Microforms Collection customer.1410.4 raw 703 | Language, speech & hearing services in schools / 1980 1993 Print issues: 11-24(1980-1993) print Print issues: 11-24(1980-1993) Ely Library Print and Microforms Collection customer.1410.4 2280683 raw 704 | Politics & society. 1980 1997 Print issues: 10-25 (1980-1997) print Print issues: 10-25 (1980-1997) Ely Library Print and Microforms Collection customer.1410.4 1315994 raw 705 | History teacher, The 1986 2000 Print issues: 20-34(1986-2000); retains current year. print Print issues: 20-34(1986-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 706 | History teacher, The Print issues: 20-34(1986-2000); retains current year. R1Y print Print issues: 20-34(1986-2000); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 707 | Signs. 1975 1994 Print issues: 1-19 (1975-1994) print Print issues: 1-19 (1975-1994) Ely Library Print and Microforms Collection customer.1410.4 1362618 raw 708 | Human communication research. 1978 1998 Print issues: 5-24(1978-1998); current year. print Print issues: 5-24(1978-1998). Ely Library Print and Microforms Collection customer.1410.4 1875171 raw 709 | State and local government review. 1984 Print issues: 16 (1984)- print Print issues: 16 (1984)- Ely Library Print and Microforms Collection customer.1410.4 2256696 raw 710 | Prison journal, The Print issues: 64-74(1984-1994); 88-89:1 (2008-2009) print Print issues: 64-74(1984-1994); 88-89:1 (2008-2009) Ely Library Print and Microforms Collection customer.1410.4 raw 711 | Piano & keyboard :the bimonthly piano quarterly. 1993 1997 Print issues: 160-189 (1993-1997) print Print issues: 160-189 (1993-1997) Ely Library Print and Microforms Collection customer.1410.4 27194480 raw 712 | Journal of educational research, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 713 | Society. 1984 1986 Print issues: 22-23(1984-1986). print Print issues: 22-23(1984-1986). Ely Library Print and Microforms Collection customer.1410.4 2162353 raw 714 | Journal of medicine and philosophy, The 1979 1996 Print issues: 4-21(1979-1996) print Print issues: 4-21(1979-1996) Ely Library Print and Microforms Collection customer.1410.4 raw 715 | Educational and Psychological Measurement 1959 19 1980 40 Print issues: 19-40, 48-58 (1959-1980, 1988-1998) print Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 716 | Educational and Psychological Measurement 1988 48 1998 58 Print issues: 19-40, 48-58 (1959-1980, 1988-1998) print Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 717 | Educational and Psychological Measurement Print issues: 19-40, 48-58 (1959-1980, 1988-1998) R1Y print Ely Library Print and Microforms Collection customer.1410.4 1567567 raw 718 | MSE- Massachusetts Studies in English 1978 1986 Print issues: 7-10 (1978-1986) print Print issues: 7-10 (1978-1986) Ely Library Print and Microforms Collection customer.1410.4 8089926 raw 719 | Western New England. 1910 1 1913 3 Print issues: 1-3(1910-1913) print Print issues: 1-3(1910-1913) Ely Library Print and Microforms Collection customer.1410.4 17687732 raw 720 | Family process. 1981 1996 Print issues: 20-35(1981-1996) print Print issues: 20-35(1981-1996) Ely Library Print and Microforms Collection customer.1410.4 1285012 raw 721 | Behavioral science. 1980 25 1989 34 Print issues: 25-34 (1980-1989) print Print issues: 25-34 (1980-1989) Ely Library Print and Microforms Collection customer.1410.4 1425889 raw 722 | Journal of social psychology, The 1952 1974 Print issues: 35-94 (1952-1974). print Print issues: 35-94 (1952-1974). Ely Library Print and Microforms Collection customer.1410.4 raw 723 | New England quarterly, The 1969 1996 Print issues: 42-69 (1969-1996). print Print issues: 42-69 (1969-1996). Ely Library Print and Microforms Collection customer.1410.4 raw 724 | Harper's. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4532730 raw 725 | Journal of pediatric psychology. 1980 1995 Print issues: 5-20(1980-1995) print Print issues: 5-20(1980-1995). Ely Library Print and Microforms Collection customer.1410.4 3042988 raw 726 | New Yorker, The Retains current year. Microfilm=56-79 1980-9/2004. R1Y print Retains current year. Microfilm=56-79 1980-9/2004. Ely Library Print and Microforms Collection customer.1410.4 472479797 raw 727 | American history illustrated. 1980 15 26 1991 Print issues: 15-26(1980-1991) print Print issues: 15-26(1980-1991) Ely Library Print and Microforms Collection customer.1410.4 1479976 raw 728 | Piano today. 1995 2008 Print issues: 15-28 (1995-2008) print Print issues: 15-28 (1995-2008) Ely Library Print and Microforms Collection customer.1410.4 32426675 raw 729 | Common school journal, The 1838 1 1848 10 Print issues: 1-10(1838-1848) print Print issues: 1-10(1838-1848) Ely Library Print and Microforms Collection customer.1410.4 raw 730 | American organist, The 1983 17 1998 32 Print issues: 17-32(1983-1998) print Print issues: 17-32(1983-1998) Ely Library Print and Microforms Collection customer.1410.4 475517548 raw 731 | Boston globe, The Print issues: Retains 2 weeks. Available on the Internet [Microfilm=1984-1998] R14D print Print issues: Retains 2 weeks. Available on the Internet [Microfilm=1984-1998] Ely Library Print and Microforms Collection customer.1410.4 raw 732 | British journal of sociology, The 1999 50 2001 52 Print issues: 50-52(1999-2001) print Print issues: 50-52(1999-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 733 | Backpacker. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1639834 raw 734 | Industry week. [Microfilm=204-246 1980-1997] print [Microfilm=204-246 1980-1997] Ely Library Print and Microforms Collection customer.1410.4 1753122 raw 735 | Journal for higher education management :a journal of the American Association of University Administrators. 1987 1995 Print issues: 3-10(1987-1995) print Print issues: 3-10(1987-1995) Ely Library Print and Microforms Collection customer.1410.4 13029495 raw 736 | Psychology today. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1081160 raw 737 | Early childhood research quarterly. 1998 2005 Print issues: 13-19(1998-2005) print Print issues: 13-19(1998-2005) Ely Library Print and Microforms Collection customer.1410.4 12603670 raw 738 | Psychobiology :a journal of the Psychonomic Society, Inc. Print issues: 15-28(1987-2000) print Print issues: 15-28(1987-2000) Ely Library Print and Microforms Collection customer.1410.4 13979047 raw 739 | American art review. 2001 13 Print issues: 13-(2001- to present) print Print issues: 13-(2001- to present) Ely Library Print and Microforms Collection customer.1410.4 1789238 raw 740 | Book links Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 23189539 raw 741 | Motor trend. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1696683 raw 742 | Clearing house, The [Microfilm=31-52 1956-1979] print [Microfilm=31-52 1956-1979] Ely Library Print and Microforms Collection customer.1410.4 raw 743 | Atlantic, The [Microfilm=247:4-272:4 1981:Apr.-1993:Oct.] R1Y print [Microfilm=247:4-272:4 1981:Apr.-1993:Oct.] Ely Library Print and Microforms Collection customer.1410.4 raw 744 | Equity & excellence in education :University of Massachusetts School of Education journal. 1998 2001 Print issues: 31-34(1998-2001) print Print issues: 31-34(1998-2001) Ely Library Print and Microforms Collection customer.1410.4 26997551 raw 745 | Manchester school of economic and social studies, The 1950 1997 Print issues: 1-65 (1930-1997) print Print issues: 1-65 (1930-1997) Ely Library Print and Microforms Collection customer.1410.4 raw 746 | Canadian journal of political and social theory =Revue canadienne de théorie politique et sociale. 1977 1 1991 15 Print issues: 1-15(1977-1991.) print Print issues: 1-15(1977-1991.) Ely Library Print and Microforms Collection customer.1410.4 3452855 raw 747 | Musical times. 1973 1997 Print issues: 114-138(1973-1997) print Print issues: 114-138(1973-1997) Ely Library Print and Microforms Collection customer.1410.4 5472115 raw 748 | Journal of orthopaedic and sports physical therapy, The 1985 1994 Print issues: 7-19,29-(1985-1994,1999-2009) print Print issues: 7-19,29-(1985-1994,1999- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 749 | Journal of orthopaedic and sports physical therapy, The 1999 2009 Print issues: 7-19,29-(1985-1994,1999-2009) print Print issues: 7-19,29-(1985-1994,1999- to present) Ely Library Print and Microforms Collection customer.1410.4 raw 750 | Journal of health & social behavior. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1695738 raw 751 | American city, The 1909 1 1927 36 Print issues: 1-36(1909-1927) print Print issues: 1-36(1909-1927) Ely Library Print and Microforms Collection customer.1410.4 raw 752 | American literature; a journal of literary history, criticism and bibliography. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1480320 raw 753 | School administrator, The 1992 1993 Print issues: 49-50 (1992-1993; retains current year. print Print issues: 49-50 (1992-1993; retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 754 | School administrator, The Print issues: 49-50 (1992-1993; retains current year. R1Y fulltext Print issues: 49-50 (1992-1993; retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 755 | Z magazine. 1991 4 Print issues: 4-(1991- to present) print Ely Library Print and Microforms Collection customer.1410.4 20864508 raw 756 | MIT Technology Review Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 39058693 raw 757 | Journal of sport management. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 13609168 raw 758 | Foreign policy. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1785489 raw 759 | Journal of psychohistory, The 1976 2002 Print issues: 4-29(1976-2002) print Print issues: 4-29(1976-2002) Ely Library Print and Microforms Collection customer.1410.4 raw 760 | Dwight's journal of music. 1852 1881 Print issues: 1-41(1852-1881) print Print issues: 1-41(1852-1881) Ely Library Print and Microforms Collection customer.1410.4 904048 raw 761 | Instructor and teacher. Print issues: Microfilm=99:1-99:4 1989:Aug.-1989:Dec. print Print issues: Microfilm=99:1-99:4 1989:Aug.-1989:Dec. Ely Library Print and Microforms Collection customer.1410.4 7372889 raw 762 | Behavior therapy. 1978 9 2003 34 Print issues: 9-34(1978-2003) print Print issues: 9-34(1978-2003) Ely Library Print and Microforms Collection customer.1410.4 811889 raw 763 | Smith College studies in social work. 1982 1998 Print issues: 53-68 (1982-1998); retains 2 years. print Print issues: 53-68 (1982-1998); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 1765645 raw 764 | Smith College studies in social work. Print issues: 53-68 (1982-1998); retains 2 years. R2Y fulltext Print issues: 53-68 (1982-1998); retains 2 years. Ely Library Print and Microforms Collection customer.1410.4 1765645 raw 765 | Journal of research in crime & delinquency. 1979 1996 Print issues: 16-33 (1979-1996) print Print issues: 16-33, 45 (1979-1996, 2008) Ely Library Print and Microforms Collection customer.1410.4 1783073 raw 766 | Volleyball USA. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 31165992 raw 767 | International journal of comparative and applied criminal justice. 0192-4036 0192-4036 1996 20 2014 38 print vol.20-38 (1996-2014). Ely Library Print and Microforms Collection customer.1410.4 3824725 3824725 raw 768 | Computers in the schools. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 9500831 raw 769 | Family relations. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 5885388 raw 770 | Africa report. 1968 13 1991 36 Print issues: 13-36(1968-1991) print Print issues: 13-36(1968-1991) Ely Library Print and Microforms Collection customer.1410.4 1461376 raw 771 | Journal of nursery education. 1945 1959 Print issues: 1-14(1945-1959) print Print issues: 1-14(1945-1959) Ely Library Print and Microforms Collection customer.1410.4 6629823 raw 772 | Cross currents. 1986 1990 Print issues: 36-39(1986-1990) print Print issues: 36-39(1986-1990) Ely Library Print and Microforms Collection customer.1410.4 1565510 raw 773 | Consumer reports. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1564931 raw 774 | Studies in philosophy and education. 1991 1995 Print issues: 11-13(1991-1995) print Print issues: 11-13(1991-1995) Ely Library Print and Microforms Collection customer.1410.4 1604448 raw 775 | Coach and athletic director. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 33998979 raw 776 | Asha :a journal of the American Speech-Language-Hearing Association. Print issues: 22-41(1980-1999) print Print issues: 22-41(1980-1999) Ely Library Print and Microforms Collection customer.1410.4 5700026 raw 777 | American journal of criminal law. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1774780 raw 778 | Environment and behavior. 1991 1997 Print issues: 23-29(1991-1997) print Print issues: 23-29(1991-1997) Ely Library Print and Microforms Collection customer.1410.4 1568065 raw 779 | Journal of school psychology. 1973 2003 Print issues: 11-41, 49 (1973-2003, 2011) print Print issues: 11-41, 49 (1973-2003, 2011) Ely Library Print and Microforms Collection customer.1410.4 1783330 raw 780 | Journal of school psychology. 2011 2011 Print issues: 11-41, 49 (1973-2003, 2011) print Print issues: 11-41, 49 (1973-2003, 2011) Ely Library Print and Microforms Collection customer.1410.4 1783330 raw 781 | Print. 1993 Print issues: 47-(1993- to present) print Print issues: 47-(1993- to present) Ely Library Print and Microforms Collection customer.1410.4 1762867 raw 782 | Broadcasting & cable. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 27653186 raw 783 | Parnassus: poetry in review. 1972 1990 Print issues: 1-16 (1972-1990); Retains past 3 years print Print issues: 1-16 (1972-1990); 31 (2010)- Ely Library Print and Microforms Collection customer.1410.4 2142037 raw 784 | Parnassus: poetry in review. Print issues: 1-16 (1972-1990); Retains past 3 years R3Y print Print issues: 1-16 (1972-1990); 31 (2010)- Ely Library Print and Microforms Collection customer.1410.4 2142037 raw 785 | Journal of physical education, recreation & dance. 0730-3084 Print issues: Retains Current Year; Microfilm=52:5-61 1981:May-1990 R1Y print Print issues: Retains Current Year; Microfilm=52:5-61 1981:May-1990 JOPERD Ely Library Print and Microforms Collection customer.1410.4 7374247 raw 786 | New York review of books, The Print issues: Retains current year. R1Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 raw 787 | ACSM's health & fitness journal. 2001 4 2003 7 Print issues: 4-(2001- to present) print Print issues: 4-(2001- to present) Ely Library Print and Microforms Collection customer.1410.4 35828420 raw 788 | International journal of clinical and experimental hypnosis, The 1979 2001 Print issues: 27-49(1979-2001) print Print issues: 27-49(1979-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 789 | Forbes. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 6465733 raw 790 | Medium aevum. 1989 1992 Print issues: 58-61 (1989-1992) print Print issues: 58-61 (1989-1992) Ely Library Print and Microforms Collection customer.1410.4 1607862 raw 791 | Massachusetts music news :official publication of the Massachusetts Music Educators Association. 1977 2007 Print issues: 26-60 (1977-2012) print Print issues: 26-60 (1977-2012) Ely Library Print and Microforms Collection customer.1410.4 3122362 raw 792 | Teaching education Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 16014679 raw 793 | Government and opposition. 1980 2001 Print issues: 15-36(1980-2001) print Print issues: 15-36(1980-2001) Ely Library Print and Microforms Collection customer.1410.4 843083 raw 794 | Commonweal. [Microfilm=94-120 1971-1993] print [Microfilm=94-120 1971-1993] Ely Library Print and Microforms Collection customer.1410.4 1564424 raw 795 | Social work in health care. 1982 1995 Print issues: 8-21(1982-1995) print Print issues: 8-21(1982-1995) Ely Library Print and Microforms Collection customer.1410.4 2246514 raw 796 | Oceanus. 1990 1994 Print issues: 33-36 (1990-1994); 45 (2006)- print Print issues: 33-36 (1990-1994); 45 (2006)- Ely Library Print and Microforms Collection customer.1410.4 1761014 raw 797 | Oceanus. 2006 Print issues: 33-36 (1990-1994); 45 (2006)- fulltext Print issues: 33-36 (1990-1994); 45 (2006)- Ely Library Print and Microforms Collection customer.1410.4 1761014 raw 798 | Monthly Review 1980 1993 Print issues: 32-34 (1980-1993) fulltext Print issues: 32-34 (1980-1993) Ely Library Print and Microforms Collection customer.1410.4 60637629 raw 799 | Journal of research in music education. 2007 2009 Print issues: 55-57 (2007-2009) print Print issues: 55-57 (2007-2009) Ely Library Print and Microforms Collection customer.1410.4 1782663 raw 800 | Congressional digest. Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 6183469 raw 801 | International journal of aging & human development, The 1991 1999 Print issues: 27-48(1991-1999) print Print issues: 27-48(1991-1999) Ely Library Print and Microforms Collection customer.1410.4 raw 802 | New York times Saturday review of books and art, The [Microfilm=1896:Oct.-1911:Jan.] print [Microfilm=1896:Oct.-1911:Jan.] Ely Library Print and Microforms Collection customer.1410.4 raw 803 | ARTnews. 1984 83 2001 100 Print issues: 83-100(1984-2001) print Print issues: 83-100(1984-2001) Ely Library Print and Microforms Collection customer.1410.4 2392716 raw 804 | Journal of marriage and the family. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1641520 raw 805 | Learning disability quarterly :journal of the Division for Children with Learning Disabilities. 2008 Print issues: 31 (2008)- print Print issues: 31 (2008)- Ely Library Print and Microforms Collection customer.1410.4 4783529 raw 806 | Time. Retains current year. [Microfilm=1-150 1923-1997] R1Y print Retains current year. [Microfilm=1-150 1923-1997] Ely Library Print and Microforms Collection customer.1410.4 1767509 raw 807 | Journal of learning disabilities. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1604299 raw 808 | Le Francais Dans Le Monde 1993 2005 Print issues: 254-341 (1993-2005) fulltext Print issues: 254-341 (1993-2005) Ely Library Print and Microforms Collection customer.1410.4 raw 809 | Economist, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 810 | International criminal justice review. 1991 1995 Print issues: 1-5(1991-1995) print Print issues: 1-5(1991-1995) Ely Library Print and Microforms Collection customer.1410.4 24059483 raw 811 | Health & social work. 1983 1992 Print issues: 8-17(1983-1992). print Print issues: 8-17(1983-1992). Ely Library Print and Microforms Collection customer.1410.4 2198019 raw 812 | American transcendental quarterly. 1972 1974 Print issues: no.20-22,no.45-62(1972-1974,1980-1986) print Print issues: no.20-22,no.45-62,no. 1-4(1972-1974,1980-1986, 1987-1990) Ely Library Print and Microforms Collection customer.1410.4 1480916 raw 813 | American transcendental quarterly. 1980 1986 Print issues: no.20-22,no.45-62(1972-1974,1980-1986) print Print issues: no.20-22,no.45-62,no. 1-4(1972-1974,1980-1986, 1987-1990) Ely Library Print and Microforms Collection customer.1410.4 1480916 raw 814 | Yale law journal, The 1972 82 1982 92 Print issues: 82-92(1972-1982) print Print issues: 82-92(1972-1982) Ely Library Print and Microforms Collection customer.1410.4 raw 815 | NAEA news. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1955811 raw 816 | PC world. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 9468047 raw 817 | Landscape and urban planning. 1986 1995 Print issues: 13-33(1986-1995) print Print issues: 13-33(1986-1995) Ely Library Print and Microforms Collection customer.1410.4 13491237 raw 818 | Social justice :a journal of crime, conflict & world order. Print issues: 37 (2011)- R1Y print Print issues: 37 (2011)- Ely Library Print and Microforms Collection customer.1410.4 18176236 raw 819 | Social education. 1984 1989 Print issues: 48-53 (1984-1989) print Print issues: 48-53 (1984-1989) Ely Library Print and Microforms Collection customer.1410.4 1682295 raw 820 | Boston. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 10844924 raw 821 | Journal of marketing education :JME / 1988 1999 Print issues: 10-21(1988-1999) print Print issues: 10-21(1988-1999) Ely Library Print and Microforms Collection customer.1410.4 5733672 raw 822 | Adult education quarterly. 1983 34 1997 47 Print issues: 34-47 (1983-1997) print Print issues: 34-47 (1983-1997) Ely Library Print and Microforms Collection customer.1410.4 9406042 raw 823 | Journal of gerontological social work. 1982 1997 Print issues: 5-27(1982-1997) print Print issues: 5-27(1982-1997) Ely Library Print and Microforms Collection customer.1410.4 4392786 raw 824 | New-York daily times. [Microfilm=1851:Sept.-1857:Sept.] print [Microfilm=1851:Sept.-1857:Sept.] Ely Library Print and Microforms Collection customer.1410.4 7919228 raw 825 | Sports illustrated. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1766364 raw 826 | Reference Librarian 1981 1998 Print issues: 1-62 (1981-1998) print Print issues: 1-62 (1981-1998) Ely Library Print and Microforms Collection customer.1410.4 7374895 raw 827 | Physical educator, The 1967 1989 Print issues: 24-46(1967-1989); Retains past 3 years print Print issues: 24-46(1967-1989); Retains past 3 years Ely Library Print and Microforms Collection customer.1410.4 raw 828 | Physical educator, The Print issues: 24-46(1967-1989); Retains past 3 years R3Y fulltext Print issues: 24-46(1967-1989); Retains past 3 years Ely Library Print and Microforms Collection customer.1410.4 raw 829 | Wired. Print issues: Retains current year. R1Y print Ely Library Print and Microforms Collection customer.1410.4 24479723 raw 830 | Kenyon review, The Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 831 | American economic journal: macroeconomics R1Y print Ely Library Print and Microforms Collection customer.1410.4 244300144 raw 832 | Audubon. 1994 96 Print issues: 96-(1994- to present) print Print issues: 96-(1994- to present) Ely Library Print and Microforms Collection customer.1410.4 1587520 raw 833 | Rolling stone. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1787396 raw 834 | Archives of sexual behavior. 1978 7 1993 22 Print issues: 7-22(1978-1993) print Print issues: 7-22(1978-1993) Ely Library Print and Microforms Collection customer.1410.4 1183760 raw 835 | Writer, The Print issues: 103(1990) print Print issues: 103(1990) Ely Library Print and Microforms Collection customer.1410.4 raw 836 | Exceptional Child Education Resources 1977 1999 Print issues: 9-30 (1977-1999) print Print issues: 9-30 (1977-1999) Ely Library Print and Microforms Collection customer.1410.4 3429088 raw 837 | North American society for sport history 1995 2006 Print issues: 1995-2006 print Print issues: 1995-2006 Ely Library Print and Microforms Collection customer.1410.4 905642933 raw 838 | Cartographica. 1980 17 1993 30 Print issues: 17-30(1980-1993) print Print issues: 17-30(1980-1993) Ely Library Print and Microforms Collection customer.1410.4 6809484 raw 839 | Journal of African history. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1783006 raw 840 | Journal of urban planning and development. 1987 1999 Print issues: 113-125 (1987-1999). print Print issues: 113-125 (1987-1999). Ely Library Print and Microforms Collection customer.1410.4 8674763 raw 841 | Computers in human behavior. 1985 1 1997 13 Print issues: 1-13(1985-1997) print Print issues: 1-13(1985-1997) Ely Library Print and Microforms Collection customer.1410.4 10746756 raw 842 | Small group research. 1990 1999 Print issues: 21-30(1990-1999) print Print issues: 21-30(1990-1999) Ely Library Print and Microforms Collection customer.1410.4 20429782 raw 843 | NEA research bulletin. [Microfilm=36-50 1958-1972] print [Microfilm=36-50 1958-1972] Ely Library Print and Microforms Collection customer.1410.4 4769080 raw 844 | Journal of cost management. 1987 2003 Print issues: 1-17 (1987-2003) print Print issues: 1-17 (1987-2003) Ely Library Print and Microforms Collection customer.1410.4 25500412 raw 845 | Canadian journal of history of sport and physical education. 1972 1980 Print issues: 3-11(1972-1980) print Print issues: 3-11(1972-1980) Ely Library Print and Microforms Collection customer.1410.4 1856161 raw 846 | Schools in the middle / 1991 2000 Print issues: 1-9(1991-2000) print Print issues: 1-9(1991-2000) Ely Library Print and Microforms Collection customer.1410.4 7370677 raw 847 | Atlantis 1988 14 1995 20 Print issues: 14-20(1988-1995) print Print issues: 14-20(1988-1995) Ely Library Print and Microforms Collection customer.1410.4 raw 848 | Astronomy. 1982 1987 Print issues: 10-15 (1982-1987); retains current year. print Print issues: 10-15 (1982-1987); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1787772 raw 849 | Astronomy. Print issues: 10-15 (1982-1987); retains current year. R1Y print Print issues: 10-15 (1982-1987); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1787772 raw 850 | Volta review, The 1973 1995 Print issues: 75-97(1973-1995); Retains current year print Print issues: 75-97(1973-1995); Retains Current Year Ely Library Print and Microforms Collection customer.1410.4 raw 851 | Volta review, The Print issues: 75-97(1973-1995); Retains current year R1Y print Print issues: 75-97(1973-1995); Retains Current Year Ely Library Print and Microforms Collection customer.1410.4 raw 852 | Journal of police science and administration. 1973 1990 Print issues: 1-17(1973-1990) print Print issues: 1-17(1973-1990) Ely Library Print and Microforms Collection customer.1410.4 1786119 raw 853 | William and Mary quarterly, The Print issues: Retains 3 years. R3Y print Ely Library Print and Microforms Collection customer.1410.4 raw 854 | National wildlife. 1972 1989 Print issues: 10-27 (1972-1989); 48 (2010)- print Print issues: 10-27 (1972-1989); 48 (2010)- Ely Library Print and Microforms Collection customer.1410.4 1587904 raw 855 | National wildlife. 2010 Print issues: 10-27 (1972-1989); 48 (2010)- print Print issues: 10-27 (1972-1989); 48 (2010)- Ely Library Print and Microforms Collection customer.1410.4 1587904 raw 856 | Journal of criminal justice. 1976 1979 Print issues: 4-7, 13-29, 31(1976-9, 1985-2001, 2003) print Print issues: 4-7, 13-29, 31(1976-9,1985-2001, 2003) Ely Library Print and Microforms Collection customer.1410.4 1788590 raw 857 | Journal of criminal justice. 1985 2001 Print issues: 4-7, 13-29, 31(1976-9, 1985-2001, 2003) print Print issues: 4-7, 13-29, 31(1976-9,1985-2001, 2003) Ely Library Print and Microforms Collection customer.1410.4 1788590 raw 858 | Journal of criminal justice. 2003 2003 Print issues: 4-7, 13-29, 31(1976-9, 1985-2001, 2003) fulltext Print issues: 4-7, 13-29, 31(1976-9,1985-2001, 2003) Ely Library Print and Microforms Collection customer.1410.4 1788590 raw 859 | Lincoln herald. 1939 1952 Print issues: 41-54(1939-1952) print Print issues: 41-54(1939-1952) Ely Library Print and Microforms Collection customer.1410.4 5041025 raw 860 | Political Science and Politics 2008 Print issues: 41- (2008)- print Print issues: 41- (2008)- Ely Library Print and Microforms Collection customer.1410.4 19491865 raw 861 | Journal of ecumenical studies. 1980 1994 Print issues: 17-31(1980-1994) print Print issues: 17-31(1980-1994) Ely Library Print and Microforms Collection customer.1410.4 1754547 raw 862 | Human development. 1983 1996 Print issues: 26-39(1983-1996) print Print issues: 26-39(1983-1996) Ely Library Print and Microforms Collection customer.1410.4 1641127 raw 863 | National geographic kids. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 50562283 raw 864 | Journal of sport rehabilitation. 2009 2010 Print issues: 18-19 (2009-2010); retains current year. print Print issues: 18-19 (2009-1010); retains current year. Ely Library Print and Microforms Collection customer.1410.4 23819570 raw 865 | Journal of sport rehabilitation. Print issues: 18-19 (2009-2010); retains current year. R1Y print Print issues: 18-19 (2009-1010); retains current year. Ely Library Print and Microforms Collection customer.1410.4 23819570 raw 866 | Language educator 2006 Print issues: 1 (2006)- print Print issues: 1 (2006)- Ely Library Print and Microforms Collection customer.1410.4 62083939 raw 867 | Technology & learning. Print issues: 11(1990) print Print issues: 11(1990) Ely Library Print and Microforms Collection customer.1410.4 22361990 raw 868 | Journal of Advertising Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 1786755 raw 869 | Utne reader, The Print issues: Retains current year. R1Y print Ely Library Print and Microforms Collection customer.1410.4 raw 870 | Choral Journal 1984 25 1999 39 Print issues: 25-39(1984-1999) print Print issues: 25-39(1984-1999) Ely Library Print and Microforms Collection customer.1410.4 1554417 raw 871 | Journal of security administration. 1994 2003 Print issues: 17-26 (1994-2003) print Print issues: 17-26 (1994-2003) Ely Library Print and Microforms Collection customer.1410.4 5711993 raw 872 | Behaviour research and therapy. 1981 19 1996 34 Print issues: 19-34(1981-1996) print Print issues: 19-34(1981-1996) Ely Library Print and Microforms Collection customer.1410.4 1519349 raw 873 | Ploughshares. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 2256746 raw 874 | British journal of psychology. 1973 64 1974 65 Print issues: 64-65(1973-1974) print Print issues: 64-65(1973-1974) Ely Library Print and Microforms Collection customer.1410.4 6370793 raw 875 | Inquiry :an interdisciplinary journal of philosophy and the social sciences. Print issues: 32-40(1989-1997) print Print issues: 32-40(1989-1997) Ely Library Print and Microforms Collection customer.1410.4 1591883 raw 876 | Journal of Chemical Information and Computer Science 1988 1993 Print issues: 28-33(1988-1993) print Print issues: 28-33(1988-1993) Ely Library Print and Microforms Collection customer.1410.4 475617004 raw 877 | Chickadee. Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 4879660 raw 878 | Instructor and teacher. Print issues: Filed under: Instructor [Microfilm=90:10-96:4 1981:May-1986:Dec.] print Print issues: Filed under: Instructor [Microfilm=90:10-96:4 1981:May-1986:Dec.] Ely Library Print and Microforms Collection customer.1410.4 7372889 raw 879 | Journal of marine research. 1972 1992 Print issues: 30-50(1972-1992); retains current year. print Print issues: 30-50(1972-1992). Ely Library Print and Microforms Collection customer.1410.4 1782330 raw 880 | Family therapy networker, The 1986 2001 Print issues: 10-25(1986-2001) print Print issues: 10-25(1986-2001) Ely Library Print and Microforms Collection customer.1410.4 raw 881 | Current musicology. 1973 1997 Print issues: no.15-62(1973-1997) print Print issues: no.15-62(1973-1997) Ely Library Print and Microforms Collection customer.1410.4 1565661 raw 882 | International journal of offender therapy and comparative criminology :official organ of the Association for Psychiatric Treatment of Offenders (APTO). 1974 1998 Print issues: 18-43;52 (1974-1998;2008) print Print issues: 18-43;52 (1974-1998;2008) Ely Library Print and Microforms Collection customer.1410.4 1250617 raw 883 | International journal of offender therapy and comparative criminology :official organ of the Association for Psychiatric Treatment of Offenders (APTO). 2008 2008 Print issues: 18-43;52 (1974-1998;2008) print Print issues: 18-43;52 (1974-1998;2008) Ely Library Print and Microforms Collection customer.1410.4 1250617 raw 884 | Women & criminal justice. 1989 2006 Print issues: 1-18(1989-2006). print Print issues: 1-18(1989-2006). Ely Library Print and Microforms Collection customer.1410.4 17501958 raw 885 | Criminologica. [Microfilm=v.1-7 1963:May-1970:Feb.] print [Microfilm=v.1-7 1963:May-1970:Feb.] Ely Library Print and Microforms Collection customer.1410.4 1565443 raw 886 | Pre- and peri-natal psychology journal :official journal of the Pre and Peri-natal Psychology Association of North America (PPPANA). 1986 1995 Print issues: 1-9(1986-1995) print Print issues: 1-9(1986-1995) Ely Library Print and Microforms Collection customer.1410.4 12118151 raw 887 | Architectural record. 1994 182 Print issues: 182-(1994- to present) print Print issues: 182-(1994- to present) Ely Library Print and Microforms Collection customer.1410.4 1481864 raw 888 | New republic, The Retains current year. Microfilm=112-215 1945-1996 R1Y print Retains current year. Microfilm=112-215 1945-1996 Ely Library Print and Microforms Collection customer.1410.4 raw 889 | Sewanee review, The 1966 1989 Print issues: 74-97 (1966-1989); retains current year. print Print issues: 74-97 (1966-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 890 | Sewanee review, The Print issues: 74-97 (1966-1989); retains current year. R1Y print Print issues: 74-97 (1966-1989); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 891 | Educational record, The 1972 1994 Print issues: 53-75(1972-1994) print Print issues: 53-75(1972-1994) Ely Library Print and Microforms Collection customer.1410.4 raw 892 | Science scope / 1988 1997 Print issues: 12-20(1988-1997); retains current year. print Print issues: 12-20(1988-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 10518686 raw 893 | Science scope / Print issues: 12-20(1988-1997); retains current year. R1Y print Print issues: 12-20(1988-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 10518686 raw 894 | Ranger Rick / Print issues: Retains current year. print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 9542474 raw 895 | Editor & publisher. [Microfilm=113-130 1980-1997] print [Microfilm=113-130 1980-1997] Ely Library Print and Microforms Collection customer.1410.4 1567511 raw 896 | Journal of studies on alcohol and drugs Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 77007393 raw 897 | International Review of African-American Art 1985 2013 Print issues: 6-24(1985-2013) incomplete print Print issues: 6-24(1985-2013) incomplete Ely Library Print and Microforms Collection customer.1410.4 10955508 raw 898 | Journal of baccalaureate social work, The 1996 Print issues: 1:2 (1996:Apr.)- print Print issues: 1:2 (1996:Apr.)- Ely Library Print and Microforms Collection customer.1410.4 raw 899 | North American review, The 2007 Print issues: 292 (2007)- print Print issues: 292 (2007)- Ely Library Print and Microforms Collection customer.1410.4 raw 900 | Journal of strength and conditioning research. 2011 2014 Print issues: 25 (2011-2014) print Print issues: 25 (2011-2014) Ely Library Print and Microforms Collection customer.1410.4 26407413 raw 901 | Black scholar, The [Microfilm=1-24 1969-1993] print [Microfilm=1-24 1969-1993] Ely Library Print and Microforms Collection customer.1410.4 raw 902 | Harvard business review. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1751795 raw 903 | Poets & writers. 1987 2003 Print issues: 15-31 (1987-2003); Retains current year print Print issues: 15-31 (1987-2003); Retains current year Ely Library Print and Microforms Collection customer.1410.4 14929081 raw 904 | Poets & writers. Print issues: 15-31 (1987-2003); Retains current year R1Y print Print issues: 15-31 (1987-2003); Retains current year Ely Library Print and Microforms Collection customer.1410.4 14929081 raw 905 | Journal of consulting and clinical psychology Print issues: Microfilm: v.32-61, 1968-1993 print Print issues: Microfilm: v.32-61, 1968-1993 Ely Library Print and Microforms Collection customer.1410.4 1590721 raw 906 | GeoWorld. 1998 2013 Print issues: 11:11-26:3(1998:Nov.- 2013) print Print issues: 11:11-26:3(1998:Nov.- 2013) Ely Library Print and Microforms Collection customer.1410.4 40195029 raw 907 | Violence and victims Print issues: Retains 3 years. R3Y print Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 12956058 raw 908 | In these times. 1992 1995 v.17-20(1992-1995); retains current year print v.17-20(1992-1995); retains current year Ely Library Print and Microforms Collection customer.1410.4 60620754 raw 909 | In these times. v.17-20(1992-1995); retains current year R1Y fulltext v.17-20(1992-1995); retains current year Ely Library Print and Microforms Collection customer.1410.4 60620754 raw 910 | Harper's weekly [Microfilm=v. 2-9 1858-1865] print [Microfilm=v. 2-9 1858-1865] Ely Library Print and Microforms Collection customer.1410.4 2441043 raw 911 | Journal of the history of the behavioral sciences. 1981 1988 Print issues: 17-24(1981-1988) print Print issues: 17-24(1981-1988) Ely Library Print and Microforms Collection customer.1410.4 1783134 raw 912 | American Literary History 1989 1990 Print issues: 1-2(1989-1990) print Print issues: 1-2(1989-1990) Ely Library Print and Microforms Collection customer.1410.4 17275100 raw 913 | Education and urban society. 1973 1999 Print issues: 6-31(1973-1999) print Print issues: 6-31(1973-1999) Ely Library Print and Microforms Collection customer.1410.4 1567533 raw 914 | Jazz educators journal :official magazine of the National Association of Jazz Educators. 1981 2001 Print issues: 13:no.2-34:no.2(1981:Jan.-2001:Sept.) print Print issues: 13:no.2-34:no.2(1981:Jan.-2001:Sept.) Ely Library Print and Microforms Collection customer.1410.4 7074117 raw 915 | Special education law update. Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 27022757 raw 916 | American choral review. 1972 14 1990 32 Print issues: 14-32(1972-1990.) print Print issues: 14-32(1972-1990.) Ely Library Print and Microforms Collection customer.1410.4 1479659 raw 917 | Journal of corporate taxation, The 1988 1994 Print issues: 15-20(1988-1994.) print Print issues: 15-20(1988-1994.) Ely Library Print and Microforms Collection customer.1410.4 raw 918 | Campus technology. 2005 19 2007 20 Print issues: 19-20(2005-2007) print Print issues: 19-20(2005-2007) Ely Library Print and Microforms Collection customer.1410.4 56668389 raw 919 | Journal of consulting and clinical psychology. Print issues: 62-(1994- to present) print Print issues: 62-(1994- to present) Ely Library Print and Microforms Collection customer.1410.4 1590721 raw 920 | Science activities. 1975 1990 Print issues: 12-27 (1975-1990); retains current year print Print issues: 12-27 (1975-1990); retains current year Ely Library Print and Microforms Collection customer.1410.4 1781192 raw 921 | Science activities. Print issues: 12-27 (1975-1990); retains current year R1Y print Print issues: 12-27 (1975-1990); retains current year Ely Library Print and Microforms Collection customer.1410.4 1781192 raw 922 | Journal of sport psychology. 1979 1987 Print issues: 1-9(1979-1987) print Print issues: 1-9(1979-1987) Ely Library Print and Microforms Collection customer.1410.4 4393115 raw 923 | College & research libraries news. 1990 51 2003 64 Print issues: 51-64 (1990-2003) print Print issues: 51-64 (1990-2003) Ely Library Print and Microforms Collection customer.1410.4 2102916 raw 924 | Journal of research on technology in education Print issues: Retains 2 years R2Y print Print issues: Retains 2 years Ely Library Print and Microforms Collection customer.1410.4 48646757 raw 925 | Language arts. 1980 1988 Print issues: 57-65 (1980-1988); retains past 2 years print Print issues: 57-65 (1980-1988); retains past 2 years Ely Library Print and Microforms Collection customer.1410.4 2244875 raw 926 | Language arts. Print issues: 57-65 (1980-1988); retains past 2 years R2Y print Print issues: 57-65 (1980-1988); retains past 2 years Ely Library Print and Microforms Collection customer.1410.4 2244875 raw 927 | College Board review, The 1983 130 2004 202 Print issues: no.130-202(1983-2004) print Print issues: no.130-202(1983-2004) Ely Library Print and Microforms Collection customer.1410.4 raw 928 | Reading improvement. 1997 2000 Print issues: 34-37(1997-2000) print Print issues: 34-37(1997-2000). Ely Library Print and Microforms Collection customer.1410.4 2244315 raw 929 | American artist. 1984 48 1990 54 Print issues: 48-54 (1984-1990) print Print issues: 48-54 (1984-1990) Ely Library Print and Microforms Collection customer.1410.4 1479320 raw 930 | American cartographer, The 1985 12 1989 16 Print issues: 12-16(1985-1989) print Print issues: 12-16(1985-1989) Ely Library Print and Microforms Collection customer.1410.4 raw 931 | Journal of sports medicine and physical fitness. 1972 12 1980 20 Print issues: 12-20, 27-38 (1972-1980, 1987-1998). print Print issues: 12-20, 27-38 (1972-1980, 1987-1998). Ely Library Print and Microforms Collection customer.1410.4 1590778 raw 932 | Journal of sports medicine and physical fitness. 1987 27 1998 38 Print issues: 12-20, 27-38 (1972-1980, 1987-1998). print Print issues: 12-20, 27-38 (1972-1980, 1987-1998). Ely Library Print and Microforms Collection customer.1410.4 1590778 raw 933 | Educational technology. 1994 Print issues: 34-present (1994-present) print Print issues: 34-present (1994-present) Ely Library Print and Microforms Collection customer.1410.4 1567622 raw 934 | Human organization :journal of the Society for Applied Anthropology. 1972 1995 Print issues: 31-54(1972-1995); retains current year. print Print issues: 31-54(1972-1995); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4970693 raw 935 | Sky and telescope. 1989 1992 Print issues: 77-84 (1989-1992); retains current year. print Print issues: 77-84 (1989-1992); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1765612 raw 936 | Sky and telescope. Print issues: 77-84 (1989-1992); retains current year. R1Y print Print issues: 77-84 (1989-1992); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1765612 raw 937 | Behavioral disorders :journal of the Council for Children with Behavioral Disorders. 1987 13 1997 22 Print issues: 13-22(1987-1997); retains current year. print Print issues: 13-22(1987-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4030659 raw 938 | Behavioral disorders :journal of the Council for Children with Behavioral Disorders. Print issues: 13-22(1987-1997); retains current year. R1Y print Print issues: 13-22(1987-1997); retains current year. Ely Library Print and Microforms Collection customer.1410.4 4030659 raw 939 | Bloomberg Business week. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1537921 raw 940 | Education update / Print issues: Retains 3 years. R3Y print Print issues: Retains 3 years. Ely Library Print and Microforms Collection customer.1410.4 31827853 raw 941 | Journal of counseling and development :JCD. Print issues: 73-76(1994-1998) print Print issues: 73-76(1994-1998) Ely Library Print and Microforms Collection customer.1410.4 11046863 raw 942 | Police studies 1978 1996 Print issues: 1-19 (1978-1996) print Print issues: 1-19 (1978-1996) Ely Library Print and Microforms Collection customer.1410.4 3834971 raw 943 | Current history. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1565627 raw 944 | Computer music journal 1984 8 2001 25 Print issues: 8-25(1984-2001) print Print issues: 8-25(1984-2001) Ely Library Print and Microforms Collection customer.1410.4 3393019 raw 945 | American journal of orthopsychiatry. 1980 50 2001 71 Print issues: 50-71(1980-2001) print Print issues: 50-71(1980-2001) Ely Library Print and Microforms Collection customer.1410.4 1480170 raw 946 | Creative classroom. 1997 2003 Print issues: 11:no.4-17:no.5(1997:Jan.-2003:Apr.) print Print issues: 11:no.4-17:no.5(1997:Jan.-2003:Apr.) Ely Library Print and Microforms Collection customer.1410.4 13622374 raw 947 | American School Board Journal 1994 2001 Print issues: 181-188(1994-2001) print Print issues: 181-188(1994-2001) Ely Library Print and Microforms Collection customer.1410.4 1480706 raw 948 | Popular photography & imaging. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 50741701 raw 949 | Animal behaviour. 1967 15 1995 50 Print issues: 15-50(1967-1995) print Print issues: 15-50(1967-1995) Ely Library Print and Microforms Collection customer.1410.4 4699737 raw 950 | Book Review Digest 1905 Print issues: 1905 - Current print Print issues: 1905 - Current Ely Library Print and Microforms Collection customer.1410.4 6038062 raw 951 | Clinical journal of sport medicine :official journal of the Canadian Academy of Sport Medicine. 1998 8 4 2000 8 10 Print issues: 8:4-10(1998:Oct.- 2000) print Print issues: 8:4-10(1998- 2000) Ely Library Print and Microforms Collection customer.1410.4 21569253 raw 952 | Experimental aging research. 1983 1996 Print issues: 9-22(1983-1996) print Print issues: 9-22(1983-1996) Ely Library Print and Microforms Collection customer.1410.4 1950825 raw 953 | American Economic Journal: Economic Policy R1Y print Ely Library Print and Microforms Collection customer.1410.4 244206729 raw 954 | Urban affairs review. 1995 1997 Print issues: 30:no.3-32(1995-1997) print Print issues: 30:no.3-32(1995-1997) Ely Library Print and Microforms Collection customer.1410.4 30991918 raw 955 | Journal of the American Academy of Psychoanalysis and Dynamic Psychiatry, The 1983 2011 Print issues: 11-39 (1983-2011) print Print issues: 11-39 (1983-2011) Ely Library Print and Microforms Collection customer.1410.4 raw 956 | Child development. Print issues: Retains current year. R1Y print Print issues: Retains current year. Ely Library Print and Microforms Collection customer.1410.4 1554210 raw 957 | Bulletin on narcotics. 1979 31 2000 52 Print issues: 31-52(1979-2000) print Print issues: 31-52(1979-2000) Ely Library Print and Microforms Collection customer.1410.4 1537787 raw 958 | Learning disabilities research :a publication of the Division for Learning Disabilities. 1985 1990 Print issues: 1-5(1985-1990) print Print issues: 1-5(1985-1990) Ely Library Print and Microforms Collection customer.1410.4 15207882 raw 959 | Washington journalism review :WJR. 1983 5 1993 15 1 Print issues: 5-15:1(1983-1993:Feb.) print Print issues: 5-15:1(1983-1993:Feb.) Ely Library Print and Microforms Collection customer.1410.4 10218965 raw 960 | Administration in social work. 1983 7 1994 18 Print issues: 7-18(1983-1994) print Print issues: 7-18(1983-1994) Ely Library Print and Microforms Collection customer.1410.4 3113247 raw 961 | Monthly review. Print issues: 32-34 (1980-1983) print Print issues: 32-34 (1980-1983) Ely Library Print and Microforms Collection customer.1410.4 1758661 raw 962 | Mineralogical record, The 1970 1974 Print issues: 1-5, 9 (1970-1974; 1978); retains current year. print Print issues: 1-9 (1970-1978); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 963 | Mineralogical record, The 1978 1978 Print issues: 1-5, 9 (1970-1974; 1978); retains current year. print Print issues: 1-9 (1970-1978); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 964 | Mineralogical record, The Print issues: 1-5, 9 (1970-1974; 1978); retains current year. R1Y fulltext Print issues: 1-9 (1970-1978); retains current year. Ely Library Print and Microforms Collection customer.1410.4 raw 965 | Journal of teaching in social work. 1987 1996 Print issues: 1-13(1987-1996) print Print issues: 1-13(1987-1996) Ely Library Print and Microforms Collection customer.1410.4 12308254 raw 966 | Psychology in the schools. 1964 1995 Print issues: 1-32 (1964-1995); retains current year. print Print issues: 1-32 (1964-1995); retains current year. Ely Library Print and Microforms Collection customer.1410.4 1763062 raw -------------------------------------------------------------------------------- /pykbart/test/test_kbart.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | from __future__ import (absolute_import, division, 5 | print_function, unicode_literals) 6 | 7 | import datetime 8 | import unittest 9 | 10 | import pytest 11 | 12 | from pykbart.kbartrecord import KbartRecord 13 | from pykbart.exceptions import (ProviderNotFound, UnknownEmbargoFormat, 14 | InvalidRP, IncompleteDateInformation) 15 | 16 | 17 | class TestKbart(unittest.TestCase): 18 | 19 | def setUp(self): 20 | # Fewer fields defined than exist in an RP2 KbartRecord file, 21 | # will define the undefined fields as empty string 22 | self._data = ('My Journal', '1111-2222', '1111-2222', 23 | '2015-01-01', '1', '1', '2016-01-01', '2', 24 | '2', 'http://www.example.com', '', '', '', 25 | '', '', '', 'My Publisher', 'journal') 26 | self.kbart = KbartRecord(self._data) 27 | 28 | def test_invalid_rp(self): 29 | with pytest.raises(InvalidRP): 30 | KbartRecord(rp=3) 31 | 32 | def test_valid_rp(self): 33 | rp1_kbart = KbartRecord(rp=1) 34 | last_key = rp1_kbart.fields[-1] 35 | assert last_key == 'coverage_notes' 36 | 37 | def test_unsupported_provider(self): 38 | with pytest.raises(ProviderNotFound): 39 | KbartRecord(provider='Myself') 40 | 41 | def test_supported_provider(self): 42 | oclc_kbart = KbartRecord(provider='oclc') 43 | last_key = oclc_kbart.fields[-1] 44 | assert last_key == 'ACTION' 45 | 46 | def test_holdings_pretty_print(self): 47 | correct_holdings = '2015-01-01, Vol: 1, Issue: 1 - 2016-01-01, Vol: 2, Issue: 2' 48 | assert correct_holdings == self.kbart.coverage 49 | 50 | def test_repr_with_no_data_or_fields(self): 51 | assert repr(KbartRecord(rp=2)) == 'KbartRecord(data=[], provider=None, rp=2, fields=[\'publication_title\', \'print_identifier\', \'online_identifier\', \'date_first_issue_online\', \'num_first_vol_online\', \'num_first_issue_online\', ...])' 52 | 53 | def test_repr_with_data_no_fields(self): 54 | assert repr(self.kbart) == 'KbartRecord(data=[\'My Journal\', \'1111-2222\', \'1111-2222\', \'2015-01-01\', \'1\', \'1\', ...], provider=None, rp=2, fields=[\'publication_title\', \'print_identifier\', \'online_identifier\', \'date_first_issue_online\', \'num_first_vol_online\', \'num_first_issue_online\', ...])' 55 | 56 | def test_comparing_coverage_ranges(self): 57 | data = ('My Journal', '1111-2222', '1111-2222', '2014-01-01', '1', '1', 58 | '2016-01-01', '2', '2', 'http://www.example.com', '', '', '', 59 | '', '', '', 'My Publisher', 'journal') 60 | assert self.kbart.compare_coverage(KbartRecord(data)) == -365 61 | 62 | def test_coverage_with_embargo_R(self): 63 | data = ('My Journal', '1111-2222', '1111-2222', '', '', '', 64 | '', '', '', 'http://www.example.com', '', '', 'R1Y', 65 | '', '', '', 'My Publisher', 'journal') 66 | assert KbartRecord(data).coverage_length.days == 365 67 | 68 | def test_coverage_with_embargo_P(self): 69 | fake_coverage_begins = datetime.date.today() - datetime.timedelta(360) 70 | data = ('My Journal', '1111-2222', '1111-2222', 71 | fake_coverage_begins.strftime('%Y-%m-%d'), '', '', 72 | '', '', '', 'http://www.example.com', '', '', 'P6M', 73 | '', '', '', 'My Publisher', 'journal') 74 | assert KbartRecord(data).coverage_length.days == 180 75 | 76 | def test_incorrect_embargo_format(self): 77 | with pytest.raises(UnknownEmbargoFormat): 78 | self.kbart.embargo = 'L3Y' 79 | 80 | def test_correct_embargo_format(self): 81 | new_kbart = KbartRecord(self._data) 82 | new_kbart.embargo = 'R3Y' 83 | assert new_kbart.embargo == 'R3Y' 84 | 85 | if __name__ == '__main__': 86 | unittest.main() 87 | -------------------------------------------------------------------------------- /pykbart/test/test_reader.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | from __future__ import (absolute_import, division, 5 | print_function, unicode_literals) 6 | 7 | import os.path 8 | import unittest 9 | 10 | from pykbart.reader import KbartReader 11 | 12 | 13 | class TestKbartReader(unittest.TestCase): 14 | 15 | def test_general_runthrough(self): 16 | directory = os.path.dirname(os.path.realpath(__file__)) 17 | num_of_records = 0 18 | with KbartReader(os.path.join(directory, 'printHoldings.txt')) as reader: 19 | for record in reader: 20 | num_of_records += 1 21 | self.assertEqual(num_of_records, 965) 22 | 23 | 24 | if __name__ == '__main__': 25 | unittest.main() 26 | -------------------------------------------------------------------------------- /pykbart/writer.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Class and context manager for writing KbartRecord class to csv file.""" 3 | # coding: utf-8 4 | 5 | from __future__ import (absolute_import, division, 6 | print_function, unicode_literals) 7 | 8 | import contextlib 9 | 10 | import six 11 | import unicodecsv as csv 12 | 13 | 14 | # TODO: make a better way to write the header when working from a reader object 15 | class Writer(object): 16 | """Write a KbartRecord class to a csv file.""" 17 | 18 | def __init__(self, file_handle, delimiter='\t'): 19 | """ 20 | Set variables and open the csv writer using utf-8 encoding per 21 | KBART spec. 22 | """ 23 | self.file_handle = file_handle 24 | self.delimiter = delimiter 25 | self.writer = csv.writer(file_handle, 26 | delimiter=self.delimiter, 27 | encoding='utf-8') 28 | 29 | def writerow(self, kbart_record): 30 | """Write csv row from a KbartRecord record.""" 31 | self.writer.writerow(list(kbart_record.values())) 32 | 33 | def writeheader(self, kbart_record): 34 | self.writer.writerow(kbart_record.fields) 35 | 36 | 37 | @contextlib.contextmanager 38 | def KbartWriter(file_path, delimiter='\t'): 39 | """ 40 | Context manager for writing a KbartRecord. Written in camel-case to maintain 41 | similarity to PyMARC. 42 | 43 | Args: 44 | file_path: The path to the KBART file to be written. 45 | delimiter: KBART spec specifies tab-delimited, leaving this an option 46 | though for the time being 47 | """ 48 | f = open(file_path, 'wb') 49 | try: 50 | yield Writer(f, delimiter=delimiter) 51 | finally: 52 | f.close() 53 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | six==1.10.0 2 | unicodecsv==0.14.1 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | [metadata] 4 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | setup( 4 | name='pykbart', 5 | version='0.1.0a1', 6 | packages=['pykbart'], 7 | url='https://github.com/chill17/pykbart', 8 | license='MIT', 9 | author='Ed Hill', 10 | long_description='pykbart is a library for dealing with data created according to the [KBART standard](http://www.niso.org/workrooms/kbart, "Kbart page on NISO"). It should work under Python 2.7 or 3.x, and should also work for KBART Recommended Practice 1 and 2. It is mostly a convenience wrapper for reading and representing TSV files containing knowledge base data, but can also be used to modify item data in bulk or create KBART files of data from other formats.', 11 | author_email='hill.charles2@gmail.com', 12 | install_requires=['six>=1', 'unicodecsv'], 13 | test_suite='pykbart.test', 14 | description='Models, reads, and writes KBART files', 15 | classifiers=[ 16 | 'Development Status :: 3 - Alpha', 17 | 'Intended Audience :: Developers', 18 | 'License :: OSI Approved :: MIT License', 19 | 'Programming Language :: Python :: 2', 20 | 'Programming Language :: Python :: 2.7', 21 | 'Programming Language :: Python :: 3', 22 | 'Programming Language :: Python :: 3.3', 23 | 'Programming Language :: Python :: 3.4', 24 | 'Programming Language :: Python :: 3.5', 25 | ], 26 | keywords=['libraries', 'library holdings', 'e-resources', 'KBART', 27 | 'Knowledge Bases'] 28 | ) 29 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | envlist = py27, py33, py34, py35 3 | [testenv] 4 | commands=py.test 5 | deps = pytest 6 | -rrequirements.txt --------------------------------------------------------------------------------