{"id":19811296,"url":"https://github.com/diging/tethne","last_synced_at":"2025-05-07T13:02:12.736Z","repository":{"id":7325417,"uuid":"8645404","full_name":"diging/tethne","owner":"diging","description":"Python module for bibliographic network analysis.","archived":false,"fork":false,"pushed_at":"2020-10-13T01:07:23.000Z","size":438225,"stargazers_count":84,"open_issues_count":23,"forks_count":32,"subscribers_count":73,"default_branch":"python","last_synced_at":"2025-04-15T19:23:33.112Z","etag":null,"topics":["bibliometrics","network-analysis","python"],"latest_commit_sha":null,"homepage":"http://diging.github.io/tethne/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/diging.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-08T06:41:22.000Z","updated_at":"2025-01-23T05:51:48.000Z","dependencies_parsed_at":"2022-09-13T15:12:35.489Z","dependency_job_id":null,"html_url":"https://github.com/diging/tethne","commit_stats":null,"previous_names":[],"tags_count":48,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diging%2Ftethne","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diging%2Ftethne/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diging%2Ftethne/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diging%2Ftethne/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diging","download_url":"https://codeload.github.com/diging/tethne/tar.gz/refs/heads/python","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252883219,"owners_count":21819157,"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":["bibliometrics","network-analysis","python"],"created_at":"2024-11-12T09:25:40.883Z","updated_at":"2025-05-07T13:02:12.704Z","avatar_url":"https://github.com/diging.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Tethne [![Build Status](https://travis-ci.org/diging/tethne.svg?branch=python)](https://travis-ci.org/diging/tethne)\n======\nTethne is a Python package for integrated bibliographic and corpus analysis developed by\nthe Digital Innovation Group at Arizona State University. Tethne provides simple tools\nfor generating networks from bibliographic datasets, and provides a framework for weaving\ntogether techniques from scientometrics, computational linguistics, topic modeling, and\nsocial influence modeling. Rather than reinvent or re-implement existing algorithms,\nTethne is designed to interface with existing software packages, and to provide\nmechanisms for drawing the results and functionalities of those packages together.\n\nNeed help?\n----------\nWe now have a Google group for Tethne users: https://groups.google.com/forum/#!forum/tethne-users\n\nDocumentation\n-------------\nFor more information, see the Tethne [website](http://diging.github.io/tethne/).\n\nThe documentation project (ReST sources, etc.) can be found in [``tethne-docs``](https://github.com/diging/tethne-docs).\n\nKey features\n------------\n* Flexible core model for text and citation-data.\n* Provides core analytic features of popular citation-analysis software (e.g. Citespace).\n* Integrates popular topic modeling software (e.g. MALLET).\n* Export network models to mainstream formats (e.g. for visualization in Cytoscape).\n* Leverages powerful computational and network-analysis libraries in Python.\n\nHow to Contribute\n-----------------\n\n1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository.\n2. Check out the ``develop`` branch: ``git checkout develop``\n3. Create a new branch for your contribution, e.g. ``git checkout -b issue45``\n4. Make your changes. Be sure to include a docstring for each function and\n   class!\n5. Write tests. We aim for 95% test coverage. Put your tests in ``tests``, where\n   they belong.\n6. Ensure that all of your tests are passing. We use\n   [nose](https://nose.readthedocs.org/en/latest/). Test with:\n\n   ```shell\n   $ nosetests --with-coverage --cover-package=tethne --cover-min-percentage=95\n   ```\n7. Check for code cleanliness! Code should conform to\n   [PEP 0008](https://www.python.org/dev/peps/pep-0008/). We use\n   [Pylint](http://www.pylint.org/). For example:\n\n   ```shell\n   $ pylint tethne/mycontribution.py\n   ```\n8. Create a [pull request](https://help.github.com/articles/using-pull-requests).\n   Be sure to select ``diging/develop`` as the base branch.\n\nRequirements\n------------\nThese should be installed automatically when you install Tethne, but just in case they\naren't:\n\n```\nnetworkx\u003e=1.8.1\nUnidecode\u003e=0.04.16\niso8601\nrdflib\n```\n\nNew in v0.7\n-----------\nv0.7 was a nearly ground-up refactor, resulting in a more modular and testable codebase\nand a simplified API. Here are some of the most notable changes:\n* Network-building functions were made significantly more abstract and flexible.\n* Numpy and SciPy are no longer required. We weren't really taking advantage of the\n  performance gains afforded by those packages, and some users were running into\n  installation issues with SciPy.\n* Plotting functionality has been removed. This was causing bloat, and we were making\n  aesthetic and formatting decisions for the user that weren't easily customizable.\n* Huge improvements to the WoS reader. The old reader was bloated and suffered from some\n  nasty bugs.\n* Re-designed ``Corpus`` and ``Paper`` classes. See the docs for more information.\n* Introduced ``Feature`` and ``FeatureSet`` classes to provide a more consistent and\n  user-friendly mechanism for managing document features.\n\nContributors\n------------\n* [erickpeirson](http://github.com/erickpeirson)\n* [aabaker99](http://github.com/aabaker99)\n* [rsubra13](http://github.com/rsubra13)\n\nLicense\n-------\nTethne is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nTethne is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n[GNU General Public License](http://www.gnu.org/licenses/) for more details.\n\n![alt text](http://www.gnu.org/graphics/gplv3-127x51.png \"GNU GPL 3\")\n\nAbout\n-----\nTethne is developed by the\n[ASU Digital Innovation Group (DigInG)](http://devo-evo.lab.asu.edu/diging),\npart of the [Laubichler Lab](http://devo-evo.lab.asu.edu) in the Center for Biology \u0026\nSociety, School of Life Sciences.\n\nThis material is based upon work supported by the National Science Foundation Graduate\nResearch Fellowship Program under Grant No. 2011131209, and NSF Doctoral Dissertation\nResearch Improvement Grant No. 1256752.\n\n\n![Tethneus, an orb weaving spider](http://diging.github.io/tethne/doc/0.6.1-beta/_static/logo_round.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiging%2Ftethne","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiging%2Ftethne","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiging%2Ftethne/lists"}