{"id":31582142,"url":"https://github.com/animemoeus/freedium","last_synced_at":"2026-05-15T22:31:24.176Z","repository":{"id":317801941,"uuid":"1068875796","full_name":"animemoeus/freedium","owner":"animemoeus","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-03T04:39:58.000Z","size":21,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-03T06:23:03.327Z","etag":null,"topics":["fastapi","hacktoberfest","hacktoberfest2025","python"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/animemoeus.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2025-10-03T03:40:18.000Z","updated_at":"2025-10-03T04:38:53.000Z","dependencies_parsed_at":"2025-10-03T06:23:04.694Z","dependency_job_id":"d11cb047-f0d1-47ac-9e30-5ce169eb5fd4","html_url":"https://github.com/animemoeus/freedium","commit_stats":null,"previous_names":["animemoeus/freedium"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/animemoeus/freedium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animemoeus%2Ffreedium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animemoeus%2Ffreedium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animemoeus%2Ffreedium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animemoeus%2Ffreedium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/animemoeus","download_url":"https://codeload.github.com/animemoeus/freedium/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animemoeus%2Ffreedium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33081982,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["fastapi","hacktoberfest","hacktoberfest2025","python"],"created_at":"2025-10-05T22:31:50.416Z","updated_at":"2026-05-15T22:31:24.160Z","avatar_url":"https://github.com/animemoeus.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Freedium - FastAPI with Template Rendering\n\nA modern FastAPI application with Jinja2 template rendering, featuring a clean modular structure and both API and web interfaces.\n\n## Features\n\n- **FastAPI Backend**: Modern, fast web framework for building APIs\n- **Jinja2 Templates**: Server-side template rendering for web pages\n- **Modular Structure**: Clean separation of concerns with organized code\n- **Static File Serving**: CSS, JavaScript, and image assets\n- **Bootstrap UI**: Responsive web interface\n- **Form Handling**: HTML form processing with validation\n- **API Endpoints**: RESTful API alongside web interface\n\n## Project Structure\n\n```\nfreedium/\n├── app/\n│   ├── __init__.py\n│   ├── main.py              # FastAPI app configuration\n│   ├── config.py            # Application settings\n│   ├── routers/\n│   │   ├── __init__.py\n│   │   ├── api.py           # API endpoints\n│   │   └── web.py           # Web page routes\n│   └── services/\n│       ├── __init__.py\n│       └── url_service.py   # Business logic\n├── templates/\n│   ├── base.html            # Base template with layout\n│   ├── index.html           # Home page\n│   ├── about.html           # About page\n│   └── result.html          # Result page\n├── static/\n│   ├── css/\n│   │   └── style.css        # Custom styles\n│   └── js/\n│       └── main.js          # JavaScript functionality\n├── tests/\n│   └── test_url_service.py  # Unit tests\n├── main.py                  # Application entry point\n├── requirements.txt         # Python dependencies\n├── pyproject.toml           # Project configuration\n└── .gitignore              # Git ignore patterns\n```\n\n## Installation\n\n1. Create a virtual environment:\n```bash\npython -m venv .env\nsource .env/bin/activate  # On Windows: .env\\Scripts\\activate\n```\n\n2. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n## Running the Application\n\nStart the development server:\n```bash\npython main.py\n```\n\nThe application will be available at:\n- Web interface: http://localhost:8000\n- API documentation: http://localhost:8000/docs\n- Alternative docs: http://localhost:8000/redoc\n\n## API Endpoints\n\n- `GET /` - Home page (web interface)\n- `GET /about` - About page (web interface)\n- `POST /validate` - URL validation form handler\n- `GET /api/` - API root endpoint\n- `GET /api/validate-url?url=\u003curl\u003e` - URL validation API\n\n## Development\n\n### Running Tests\n```bash\npytest tests/\n```\n\n### Code Formatting\n```bash\nblack app/ tests/\n```\n\n### Type Checking\n```bash\nmypy app/\n```\n\n## Environment Variables\n\n- `DEBUG`: Enable debug mode (default: False)\n- `HOST`: Server host (default: 0.0.0.0)\n- `PORT`: Server port (default: 8000)\n\n## License\n\nMIT License","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanimemoeus%2Ffreedium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanimemoeus%2Ffreedium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanimemoeus%2Ffreedium/lists"}