{"id":15008918,"url":"https://github.com/basemax/colorconvertpy","last_synced_at":"2025-11-01T09:02:34.359Z","repository":{"id":151535260,"uuid":"178404439","full_name":"BaseMax/ColorConvertPy","owner":"BaseMax","description":"Tiny library to convert various colored units. (rgb, hex)","archived":false,"fork":false,"pushed_at":"2019-03-31T01:18:05.000Z","size":52,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-09T01:47:50.630Z","etag":null,"topics":["color","color-conversion","color-convert","color-converter","python","python-2","python-3","python-3-6","python-library","python-script","python2","python27","python3","python36"],"latest_commit_sha":null,"homepage":"","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/BaseMax.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-29T12:49:19.000Z","updated_at":"2024-03-29T16:45:38.000Z","dependencies_parsed_at":"2023-07-10T14:01:09.461Z","dependency_job_id":null,"html_url":"https://github.com/BaseMax/ColorConvertPy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FColorConvertPy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FColorConvertPy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FColorConvertPy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FColorConvertPy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BaseMax","download_url":"https://codeload.github.com/BaseMax/ColorConvertPy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253176440,"owners_count":21866142,"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":["color","color-conversion","color-convert","color-converter","python","python-2","python-3","python-3-6","python-library","python-script","python2","python27","python3","python36"],"created_at":"2024-09-24T19:21:43.122Z","updated_at":"2025-11-01T09:02:34.209Z","avatar_url":"https://github.com/BaseMax.png","language":"Python","readme":"# Color Convert Python\n\nTiny library to convert various colored units. (rgb, hex)\n\n## Sample\n\n#### Import\n\n```python\nfrom ColorConvert import *\n```\n\n### Using\n\n```python\nhex = rgb2hex((255,255,255))\nprint( hex ) # FFFFFF\nprint( hex2rgb( hex ) ) # (255, 255, 255)\n```\n\n## Install\n\n**$ sudo python setup.py install**\n\n```\nrunning install\nrunning bdist_egg\nrunning egg_info\ncreating ColorConvert.egg-info\nwriting ColorConvert.egg-info/PKG-INFO\nwriting top-level names to ColorConvert.egg-info/top_level.txt\nwriting dependency_links to ColorConvert.egg-info/dependency_links.txt\nwriting manifest file 'ColorConvert.egg-info/SOURCES.txt'\nreading manifest file 'ColorConvert.egg-info/SOURCES.txt'\nwriting manifest file 'ColorConvert.egg-info/SOURCES.txt'\ninstalling library code to build/bdist.freebsd-12.0-RELEASE-amd64/egg\nrunning install_lib\nwarning: install_lib: 'build/lib' does not exist -- no Python modules to install\n\ncreating build\ncreating build/bdist.freebsd-12.0-RELEASE-amd64\ncreating build/bdist.freebsd-12.0-RELEASE-amd64/egg\ncreating build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO\ninstalling scripts to build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO/scripts\nrunning install_scripts\nrunning build_scripts\ncreating build/scripts-2.7\ncopying and adjusting ColorConvert.py -\u003e build/scripts-2.7\nchanging mode of build/scripts-2.7/ColorConvert.py from 644 to 755\ncreating build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO/scripts\ncopying build/scripts-2.7/ColorConvert.py -\u003e build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO/scripts\nchanging mode of build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO/scripts/ColorConvert.py to 755\ncopying ColorConvert.egg-info/PKG-INFO -\u003e build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO\ncopying ColorConvert.egg-info/SOURCES.txt -\u003e build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO\ncopying ColorConvert.egg-info/dependency_links.txt -\u003e build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO\ncopying ColorConvert.egg-info/top_level.txt -\u003e build/bdist.freebsd-12.0-RELEASE-amd64/egg/EGG-INFO\nzip_safe flag not set; analyzing archive contents...\ncreating dist\ncreating 'dist/ColorConvert-1.0-py2.7.egg' and adding 'build/bdist.freebsd-12.0-RELEASE-amd64/egg' to it\nremoving 'build/bdist.freebsd-12.0-RELEASE-amd64/egg' (and everything under it)\nProcessing ColorConvert-1.0-py2.7.egg\nCopying ColorConvert-1.0-py2.7.egg to /usr/local/lib/python2.7/site-packages\nAdding ColorConvert 1.0 to easy-install.pth file\nInstalling ColorConvert.py script to /usr/local/bin\n\nInstalled /usr/local/lib/python2.7/site-packages/ColorConvert-1.0-py2.7.egg\nProcessing dependencies for ColorConvert==1.0\nFinished processing dependencies for ColorConvert==1.0\n```\n\n\n---------\n\n## Useful Resources\n\n- https://docs.python.org/2/install/\n- https://packaging.python.org/tutorials/installing-packages/\n- https://python-packaging-tutorial.readthedocs.io/en/latest/setup_py.html\n- https://python-packaging.readthedocs.io/en/latest/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbasemax%2Fcolorconvertpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbasemax%2Fcolorconvertpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbasemax%2Fcolorconvertpy/lists"}