
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Retrieves information from Sinta (Science and Technology Index) via scraping.
pip install sinta-scraper
Dependencies (installed automatically using the above command): beautifulsoup4
, requests
, dicttoxml
, dict2xml
, python-string-utils
, and flatdict
.
import sinta
author()
Retrieves an author's information by Sinta ID. For example:
author_id = 6082456
author = sinta.author(author_id)
print(author)
The output format is the Python dictionary. The structure is given in the following sample output.
{'affiliation': {'id': 404,
'name': 'Universitas Brawijaya',
'url': 'https://sinta.kemdikbud.go.id/affiliations/profile/404'},
'articles': {'scholar': 103, 'scopus': 14, 'wos': 0},
'citations': {'scholar': 266, 'scopus': 52, 'wos': 0},
'cited_docs': {'scholar': 0, 'scopus': 9, 'wos': 0},
'department': 'S1 - Teknik Informatika',
'g-index': {'scholar': 1, 'scopus': 1, 'wos': ''},
'h-index': {'scholar': 9, 'scopus': 4, 'wos': ''},
'i10-index': {'scholar': 9, 'scopus': 1, 'wos': ''},
'id': 6082456,
'name': 'RANDY CAHYA WIHANDIKA',
'score': {'3_years': 122,
'affiliation': 0,
'affiliation_3_years': 0,
'overall': 451},
'subjects': ['Image Processing', 'Computer Vision'],
'url': 'https://sinta.kemdikbud.go.id/authors/profile/6082456'}
Multiple authors can also be retrieved at once:
author_ids = 5975467, 6019743
authors = sinta.author(author_ids)
affiliation()
Retrieves information about an affiliation. For example:
affiliation_id = 404
affiliation_info = sinta.affiliation(affiliation_id)
Output:
{'abbreviation': 'UB',
'articles': {'garuda': 8783, 'scholar': 100142, 'scopus': 9181, 'wos': 1260},
'authors': 2330,
'citation_per_researcher': {'garuda': 0.46,
'scholar': 462.17,
'scopus': 49.15,
'wos': 7.96},
'citations': {'garuda': 428, 'scholar': 431668, 'scopus': 45910, 'wos': 7432},
'cited_documents': {'garuda': 265,
'scholar': 44142,
'scopus': 5622,
'wos': 778},
'code': '001019',
'departments': 177,
'id': 404,
'journals': 67,
'last_update': '2022-06-15 09:00:53',
'location': 'KOTA MALANG - JAWA TIMUR, ID',
'name': 'Universitas Brawijaya',
'sinta_score': {'3_years': 220241,
'overall': 568684,
'productivity': 277,
'productivity_3_years': 107},
'url': 'https://sinta.kemdikbud.go.id/affiliations/profile/404'}
Other formats can be used by specifying the output_format
argument. For example:
author = sinta.author(id, output_format='json')
Avalable output formats:
'dict'
(default)'dict-flat'
'json'
'json-pretty'
'xml'
'xml-flat'
You can also pretty-print a dictionary using pprint
:
from pprint import pprint
pprint(result_dict)
FAQs
Retrieves information from Sinta (Science and Technology Index) via scraping.
We found that sinta-scraper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.