├── .gitignore ├── .travis.yml ├── README.md ├── pyalma ├── __init__.py └── alma.py ├── requirements.txt ├── setup.py ├── speedtest ├── coroutines_speedtest.py └── time_get_bibs.py └── test ├── __init__.py ├── availability.dat ├── bib.dat ├── bib.dat.xml ├── bib2.dat ├── bib2.dat.xml ├── hold.dat ├── hold2.dat ├── holds.dat ├── item.dat ├── item2.dat ├── item_loan.dat ├── items.dat ├── loan.dat ├── mms.csv ├── mms_holding.csv ├── mms_holding_item.csv ├── mms_holding_item_data.csv ├── mms_holdings_items_with_requests.csv ├── request.dat ├── request2.dat ├── test_alma.py └── test_coroutines.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/README.md -------------------------------------------------------------------------------- /pyalma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyalma/alma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/pyalma/alma.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/setup.py -------------------------------------------------------------------------------- /speedtest/coroutines_speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/speedtest/coroutines_speedtest.py -------------------------------------------------------------------------------- /speedtest/time_get_bibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/speedtest/time_get_bibs.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/availability.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/availability.dat -------------------------------------------------------------------------------- /test/bib.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/bib.dat -------------------------------------------------------------------------------- /test/bib.dat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/bib.dat.xml -------------------------------------------------------------------------------- /test/bib2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/bib2.dat -------------------------------------------------------------------------------- /test/bib2.dat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/bib2.dat.xml -------------------------------------------------------------------------------- /test/hold.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/hold.dat -------------------------------------------------------------------------------- /test/hold2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/hold2.dat -------------------------------------------------------------------------------- /test/holds.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/holds.dat -------------------------------------------------------------------------------- /test/item.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/item.dat -------------------------------------------------------------------------------- /test/item2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/item2.dat -------------------------------------------------------------------------------- /test/item_loan.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/item_loan.dat -------------------------------------------------------------------------------- /test/items.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/items.dat -------------------------------------------------------------------------------- /test/loan.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/loan.dat -------------------------------------------------------------------------------- /test/mms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/mms.csv -------------------------------------------------------------------------------- /test/mms_holding.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/mms_holding.csv -------------------------------------------------------------------------------- /test/mms_holding_item.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/mms_holding_item.csv -------------------------------------------------------------------------------- /test/mms_holding_item_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/mms_holding_item_data.csv -------------------------------------------------------------------------------- /test/mms_holdings_items_with_requests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/mms_holdings_items_with_requests.csv -------------------------------------------------------------------------------- /test/request.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/request.dat -------------------------------------------------------------------------------- /test/request2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/request2.dat -------------------------------------------------------------------------------- /test/test_alma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/test_alma.py -------------------------------------------------------------------------------- /test/test_coroutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegetty/pyalma/HEAD/test/test_coroutines.py --------------------------------------------------------------------------------