Skip to main content

Python Altmetric API v1 wrapper

Project description

https://badge.fury.io/py/pyaltmetric.png

pyAltmetric is a python wrapper for Altmetric API v1. It provides an API for downloading and reading citations both individually and in bulk.

Installation

pip install pyaltmetric

Usage

Fetching by individual citations by identifiers:

from pyaltmetric import Altmetric

a = Altmetric()

a.id("241939")
a.doi("10.1038/news.2011.490")
a.pmid("21148220")
a.rxiv("1108.2455")
a.ads("2012apphl.100y3104b")

a = Altmetric("api_key_goes_here")

Querying the Altmetric.com database:

a.citations("1w", page=1, nlmid="0410462")

Reading a citation:

from pyaltmetric import Citation

b = a.id("241939")
c = Citation(b)

print c.title

for field in c:
    print field

Reading multiple citations:

form pyaltmetric import CitationCollection

b = Citation(a.id("241939"))
c = Citation(a.doi("10.1038/news.2011.490"))

d = CitationCollection()
d.add_citation(b, c)

for citation in c:
    print citation
  • Free software: BSD license

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyaltmetric-0.1.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page