Project COUNTER/NISO SUSHI statistics
Project description
pycounter makes working with COUNTER usage statistics in Python easy, including fetching statistics with NISO SUSHI.
A simple command-line client for fetching JR1 reports from SUSHI servers and outputting them as tab-separated COUNTER 4 reports is included.
Developed by the Health Sciences Library System of the University of Pittsburgh to support importing usage data into our in-house Electronic Resources Management (ERM) system.
Licensed under the MIT license. See the file LICENSE for details.
pycounter is tested on Python 2.7, 3.4, 3.5, 3.6 and pypy2 (if you’re still stuck on Python 2.6 or 3.3, please use version 0.16.1 of pycounter)
Documentation is on Read the Docs.
Installing
From pypi:
pip install pycounter
From inside the source distribution:
pip install [-e] .
(use -e if you plan to work on the source itself, so your changes are used in your installation. Probably do all of this in a virtualenv. The PyPA has a good explanation of how to get started.)
Usage
Parsing COUNTER reports (currently supports COUNTER 3 and 4, in .csv, .tsv, or .xlsx files, reports JR1, DB1, DB2, BR1, and BR2):
>>> import pycounter.report >>> report = pycounter.report.parse("COUNTER4_2015.tsv") # filename or path to file >>> print(report.metric) FT Article Requests >>> for journal in report: ... print(journal.title) Sqornshellous Swamptalk Acta Mattressica >>> for stat in report.pubs[0]: ... print(stat) (datetime.date(2015, 1, 1), 'FT Article Requests', 120) (datetime.date(2015, 2, 1), 'FT Article Requests', 42) (datetime.date(2015, 3, 1), 'FT Article Requests', 23)
Fetching SUSHI data:
>>> import pycounter.sushi >>> import datetime >>> report = pycounter.sushi.get_report(wsdl_url='http://www.example.com/SushiService', ... start_date=datetime.date(2015,1,1), end_date=datetime.date(2015,1,31), ... requestor_id="myreqid", customer_reference="refnum", report="JR1", ... release=4) >>> for journal in report: ... print(journal.title) Sqornshellous Swamptalk Acta Mattressica
Output of report as TSV:
>>> report.write_tsv("/tmp/counterreport.tsv")
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size pycounter-1.0.2-py2.py3-none-any.whl (33.4 kB) | File type Wheel | Python version py2.py3 | Upload date | Hashes View hashes |
Filename, size pycounter-1.0.2.tar.gz (79.7 kB) | File type Source | Python version None | Upload date | Hashes View hashes |
Hashes for pycounter-1.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33f686a0ce6459db911f34506f2e1ab1c80d600e80e7b75fe367e4958845957a |
|
MD5 | 75883a5216388fcdd092ac15fd786177 |
|
BLAKE2-256 | 4c1383768065c67f0523dd0f239a57c6a8bc6bef3ba2fa9b2ffb1d3a81cd1944 |