├── .env.dev ├── .gitignore ├── LICENSE ├── README.md ├── assets └── example.jpeg ├── pyproject.toml ├── requirements.txt ├── setup.py └── starlistify ├── __init__.py ├── categorize_gh_stars.py ├── cli.py ├── cluster_gh_stars.py ├── fetch_gh_stars.py ├── update_gh_lists.py └── utils.py /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/.env.dev -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | .env 3 | *__pycache__/ 4 | .projectile 5 | *.egg-info -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/assets/example.jpeg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/setup.py -------------------------------------------------------------------------------- /starlistify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starlistify/categorize_gh_stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/starlistify/categorize_gh_stars.py -------------------------------------------------------------------------------- /starlistify/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/starlistify/cli.py -------------------------------------------------------------------------------- /starlistify/cluster_gh_stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/starlistify/cluster_gh_stars.py -------------------------------------------------------------------------------- /starlistify/fetch_gh_stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/starlistify/fetch_gh_stars.py -------------------------------------------------------------------------------- /starlistify/update_gh_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/starlistify/update_gh_lists.py -------------------------------------------------------------------------------- /starlistify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhtlongcs/StarListify/HEAD/starlistify/utils.py --------------------------------------------------------------------------------