{"id":18466124,"url":"https://github.com/tomosfps/aerialog","last_synced_at":"2026-01-23T13:47:21.471Z","repository":{"id":258815962,"uuid":"875797457","full_name":"tomosfps/aerialog","owner":"tomosfps","description":"Simple Python Logger, built for personal projects.","archived":false,"fork":false,"pushed_at":"2024-10-20T21:44:39.000Z","size":3969,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T09:48:37.077Z","etag":null,"topics":["colourful","logger","logging","python3"],"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/tomosfps.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":"2024-10-20T21:07:52.000Z","updated_at":"2024-10-20T21:44:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"c0079a73-6ef5-4082-96df-0d125e9013db","html_url":"https://github.com/tomosfps/aerialog","commit_stats":null,"previous_names":["devtomos/aerialog","eeius/aerialog","tomosfps/aerialog"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomosfps%2Faerialog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomosfps%2Faerialog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomosfps%2Faerialog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomosfps%2Faerialog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomosfps","download_url":"https://codeload.github.com/tomosfps/aerialog/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247804658,"owners_count":20999023,"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":["colourful","logger","logging","python3"],"created_at":"2024-11-06T09:15:15.888Z","updated_at":"2026-01-23T13:47:21.435Z","avatar_url":"https://github.com/tomosfps.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aerialog\n\nA simple, yet effective logger built in Python.\n\n## Features\n\n- [x] Easily log to terminal or file\n- [x] Coloured coded (only within terminal)\n- [x] Log to file later on, and remove it\n- [x] Lightweight, only needing one extra dependency\n- [x] Load Log Level through .env or set it through the class\n\n## Using Aerialog\n\n1.  Run `python3 -m venv env` and then activate the environment through `source env/bin/activate` (may differ on Windows)\n2.  Install the dependency using your preferred method `pip install aerialog`\n3.  Import the dependency into your code `import aerialog.logger import Logger`\n4.  Initalise the class and freely use it `log = Logger()`\n\nYou may also use `.env` files and directly set the log_level through that too\n\n```env\n\n#FATAL, ERROR, WARN, INFO, DEBUG, SILLY\n# If not any of those above, it will default to DEBUG\n# If it's not called LOG_LEVEL it will also default to DEBUG\nLOG_LEVEL=DEBUG\n```\n\n\n## Example\n\n```python\n\nfrom aerialog import Logger\n\nlog = Logger()\n\ndef main():\n    log.info(\"This is a really interesting info message!\", \"Main\")\n    log.error(\"Oh no! an error happened here\", \"Error\")\n\n\ndef file_setup():\n    log.set_file(\"awesome-project.log\")\n    log.info(\"This now gets logged to the file!\", \"File\")\n    log.remove_file() # It will now log back to the terminal\n```\n\n## Licence\nThis project uses the following license: [PYTHON PACKAGING AUTHORITY](https://github.com/devtomos/aerialog/blob/main/LICENSE.md).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomosfps%2Faerialog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomosfps%2Faerialog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomosfps%2Faerialog/lists"}