{"id":13800078,"url":"https://github.com/martisak/3gpp-citations","last_synced_at":"2025-05-13T08:32:42.885Z","repository":{"id":45783687,"uuid":"94019123","full_name":"martisak/3gpp-citations","owner":"martisak","description":"Generate .bib-file for 3GPP specifications","archived":false,"fork":false,"pushed_at":"2023-11-01T17:51:01.000Z","size":94,"stargazers_count":63,"open_issues_count":5,"forks_count":12,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-31T13:52:38.142Z","etag":null,"topics":["3gpp","bibtex","citations","python","references"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/martisak.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-11T17:01:30.000Z","updated_at":"2024-09-22T07:50:24.000Z","dependencies_parsed_at":"2022-07-17T00:00:45.409Z","dependency_job_id":null,"html_url":"https://github.com/martisak/3gpp-citations","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martisak%2F3gpp-citations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martisak%2F3gpp-citations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martisak%2F3gpp-citations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martisak%2F3gpp-citations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/martisak","download_url":"https://codeload.github.com/martisak/3gpp-citations/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225190773,"owners_count":17435488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["3gpp","bibtex","citations","python","references"],"created_at":"2024-08-04T00:01:09.015Z","updated_at":"2024-11-18T14:31:33.403Z","avatar_url":"https://github.com/martisak.png","language":"Python","funding_links":[],"categories":["Docs","Tools"],"sub_categories":["Writeups","Diameter"],"readme":"# 3GPP Bibtex entry generator\n\n[![Build Status](https://travis-ci.org/martisak/3gpp-citations.svg?branch=master)](https://travis-ci.org/martisak/3gpp-citations) ![](https://img.shields.io/github/issues-raw/martisak/3gpp-citations.svg?style=flat) ![](https://img.shields.io/github/license/martisak/3gpp-citations.svg?style=flat) [![Coverage Status](https://coveralls.io/repos/github/martisak/3gpp-citations/badge.svg?branch=master)](https://coveralls.io/github/martisak/3gpp-citations?branch=master) [![Gitter chat](https://badges.gitter.im/martisak/3gpp-citations.png)](https://gitter.im/3gpp-citations/community \"Gitter chat\") [![](https://img.shields.io/pypi/v/3gpp-citations.svg?style=flat)](https://pypi.org/project/3gpp-citations/) ![](https://img.shields.io/pypi/dd/3gpp-citations.svg?style=flat) ![](https://img.shields.io/pypi/pyversions/3gpp-citations.svg?style=flat) [![HitCount](http://hits.dwyl.io/martisak/3gpp-citations.svg)](http://hits.dwyl.io/martisak/3gpp-citations) ![](https://img.shields.io/codeclimate/maintainability/martisak/3gpp-citations.svg?style=flat)\n\nThis project aims to generate [BiBTeX](http://www.bibtex.org/) files that\ncan be used when citing [3GPP](3gpp.org) specifications. The input is a\ndocument list exported from the [3GPP Portal](https://portal.3gpp.org/).\n\n## Installation\n\n`pip install 3gpp-citations`\n\nTo also install test dependencies run\n\n`pip install 3gpp-citations[test]`\n\n## Instructions\n\n1. Go to the [3GPP Portal](https://portal.3gpp.org/#55936-specifications)\n1. Generate the list of specifications you want.\n1. Download to Excel and save file\n1. Run `python 3gpp-citations.py -i exported.xlsx -o 3gpp.bib`\n1. Use in LaTeX.\n\n*Optionally* use the provided `3gpp.bib` directly.\n\n## Things to note\n\n* The output `bibtex` class is set to `@techreport`.\n* If you add the option `--xelatex`, break-symbols `\\-` will be used in url-fields.\n* The version and date are read from 3gpp.org, but it is slow so it takes a while to parse the list. If you find an easy solution to this, let me know.\n\n## Example output\n\n~~~\n@techreport{3gpp.36.331,\n author = {3GPP},\n day = {20},\n institution = {{3rd Generation Partnership Project (3GPP)}},\n month = {04},\n note = {Version 14.2.2},\n number = {36.331},\n title = {{Evolved Universal Terrestrial Radio Access (E-UTRA); Radio Resource Control (RRC); Protocol specification}},\n type = {Technical Specification (TS)},\n url = {https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=2440},\n year = {2017}\n}\n~~~\n\n## Contribute\n\nSee our [contribution guidelines](CONTRIBUTING.md) and our [Code of Conduct](CODE_OF_CONDUCT.md).\n\n## Other\n\nA presentation about the CI-pipeline used in this project [can be found here](https://martisak.gitlab.io/wasp_sw_course_testing/).\n\n## Acknowledgment\n\nThis project has been updated as part of the [WASP](http://wasp-sweden.org)\n[Software and Cloud Technology](http://wasp-sweden.org/graduate-school/courses/software-and-cloud-technology-spring-2019/) course.\n\nThis work was partially supported by the Wallenberg AI, Autonomous Systems and\nSoftware Program (WASP) funded by the Knut and Alice Wallenberg Foundation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartisak%2F3gpp-citations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmartisak%2F3gpp-citations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartisak%2F3gpp-citations/lists"}