{"id":31801132,"url":"https://github.com/bmayfi3ld/ticker_rss","last_synced_at":"2025-10-10T23:46:56.799Z","repository":{"id":317131756,"uuid":"806801599","full_name":"bmayfi3ld/ticker_rss","owner":"bmayfi3ld","description":"RSS feed generator and server for Oklahoma Mesonet Ticker. Not officially affiliated at all.","archived":false,"fork":false,"pushed_at":"2025-09-29T02:37:52.000Z","size":63,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-29T04:17:14.352Z","etag":null,"topics":["rss","rss-feed","rss-generator"],"latest_commit_sha":null,"homepage":"https://ticker.mesonet.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bmayfi3ld.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-27T23:55:15.000Z","updated_at":"2025-09-29T02:37:55.000Z","dependencies_parsed_at":"2025-09-29T04:17:17.976Z","dependency_job_id":"61ecef7f-14f5-436b-af5e-a5602722827b","html_url":"https://github.com/bmayfi3ld/ticker_rss","commit_stats":null,"previous_names":["bmayfi3ld/ticker_rss"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/bmayfi3ld/ticker_rss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmayfi3ld%2Fticker_rss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmayfi3ld%2Fticker_rss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmayfi3ld%2Fticker_rss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmayfi3ld%2Fticker_rss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmayfi3ld","download_url":"https://codeload.github.com/bmayfi3ld/ticker_rss/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmayfi3ld%2Fticker_rss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005583,"owners_count":26083921,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["rss","rss-feed","rss-generator"],"created_at":"2025-10-10T23:46:52.556Z","updated_at":"2025-10-10T23:46:56.793Z","avatar_url":"https://github.com/bmayfi3ld.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ticker RSS\n\nRSS feed generator and server for Oklahoma Mesonet Ticker.\n\nhttps://ticker.mesonet.org\n\n## Prerequisites\n\n- [uv](https://docs.astral.sh/uv/)\n- [just](https://github.com/casey/just)\n\n## Setup\n\nClone the repository and set up the project:\n\n```bash\njust setup\n```\n\n## Usage\n\n### Web Server Mode (Default)\n\nRun the application with built-in web server:\n\n```bash\njust run\n```\n\nThis starts:\n- Background RSS scraper that updates every hour\n- Web server on `http://0.0.0.0:5000` serving the RSS feed\n\n#### Web Server Endpoints\n\n- `/` - Main page with feed information\n- `/rss` - RSS feed (XML format)\n- `/status` - JSON status endpoint\n- `/download` - Download RSS file\n\n#### Custom Host/Port\n\n```bash\nFLASK_HOST=127.0.0.1 FLASK_PORT=8080 just run\n```\n\n### Environment Variables\n\n- `TICKER_DAYS` - Number of days to scrape (default: 30)\n- `RSS_FOLDER` - Output folder for the RSS file (default: \"./\")\n- `FLASK_HOST` - Web server host (default: \"0.0.0.0\")\n- `FLASK_PORT` - Web server port (default: 5000)\n- `DISABLE_FLASK` - Set to \"true\" to run scraper-only mode\n- `WAITRESS_THREADS` - Number of worker threads (default: 4)\n- `WAITRESS_CONNECTION_LIMIT` - Maximum simultaneous connections (default: 1000)\n- `WAITRESS_CLEANUP_INTERVAL` - Connection cleanup interval in seconds (default: 30)\n- `WAITRESS_CHANNEL_TIMEOUT` - Channel timeout in seconds (default: 120)\n\n### Available Just Commands\n\n```\nbuild-push-container TAG # Build and push container\nclean                    # Clean up generated files\nquick-test               # Quick test to verify dependencies are working\nrun                      # Run the web server (scraper + Flask server)\nsetup                    # Install dependencies and set up the project with uv\ntest                     # Test the web server (runs for a short time with limited days)\n```\n\n\n## Docker\n\nBuild and run with Docker:\n\n```bash\ndocker build -t ticker-rss .\ndocker run -p 5000:5000 ticker-rss\n```\n\n## Development\n\nThe project uses uv for dependency management. Dependencies are defined in `pyproject.toml` and locked in `uv.lock`.\n\nTo add development dependencies:\n```bash\nuv add --dev package-name\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmayfi3ld%2Fticker_rss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmayfi3ld%2Fticker_rss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmayfi3ld%2Fticker_rss/lists"}