{"id":39440393,"url":"https://github.com/panel-extensions/panel-full-calendar","last_synced_at":"2026-01-18T04:19:13.961Z","repository":{"id":270539626,"uuid":"892348092","full_name":"panel-extensions/panel-full-calendar","owner":"panel-extensions","description":"Extends HoloViz Panel with FullCalendar","archived":false,"fork":false,"pushed_at":"2026-01-01T05:28:36.000Z","size":898,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-05T23:53:26.878Z","etag":null,"topics":["calendar","extension","fullcalendar","panel"],"latest_commit_sha":null,"homepage":"https://panel-extensions.github.io/panel-full-calendar/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/panel-extensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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-11-22T00:10:46.000Z","updated_at":"2025-10-27T04:52:51.000Z","dependencies_parsed_at":"2025-12-02T16:00:11.110Z","dependency_job_id":null,"html_url":"https://github.com/panel-extensions/panel-full-calendar","commit_stats":null,"previous_names":["panel-extensions/panel-full-calendar"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/panel-extensions/panel-full-calendar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-full-calendar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-full-calendar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-full-calendar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-full-calendar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/panel-extensions","download_url":"https://codeload.github.com/panel-extensions/panel-full-calendar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panel-extensions%2Fpanel-full-calendar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28529500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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":["calendar","extension","fullcalendar","panel"],"created_at":"2026-01-18T04:19:13.897Z","updated_at":"2026-01-18T04:19:13.951Z","avatar_url":"https://github.com/panel-extensions.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ✨ panel-full-calendar\n\n[![CI](https://img.shields.io/github/actions/workflow/status/panel-extensions/panel-full-calendar/ci.yml?style=flat-square\u0026branch=main)](https://github.com/panel-extensions/panel-full-calendar/actions/workflows/ci.yml)\n[![pypi-version](https://img.shields.io/pypi/v/panel-full-calendar.svg?logo=pypi\u0026logoColor=white\u0026style=flat-square)](https://pypi.org/project/panel-full-calendar)\n[![python-version](https://img.shields.io/pypi/pyversions/panel-full-calendar?logoColor=white\u0026logo=python\u0026style=flat-square)](https://pypi.org/project/panel-full-calendar)\n\nExtends HoloViz Panel with FullCalendar capabilities\n\n![Clipboard-20250116-183814-139](https://github.com/user-attachments/assets/54a6d396-926e-4a3b-a9f1-0428776201ce)\n\n## Features\n\n`panel-full-calendar` integrates the powerful [FullCalendar](https://fullcalendar.io/) JavaScript library with the [Panel](https://panel.holoviz.org/) ecosystem, enabling interactive calendar widgets directly in Python applications. It provides the ability to:\n\n- Display and interact with calendars in various views (day, week, month).\n- Add, update, and remove events programmatically or through user interactions.\n- Customize the calendar's appearance, event handling, and toolbar controls.\n- Enable event dragging, resizing, and date selection callbacks.\n- Handle recurring events and complex scheduling logic.\n\nThis widget is perfect for building dashboards, scheduling applications, and any interface that requires robust calendar functionality.\n\n---\n\n## Pin Your Version\n\nThis project is **in its early stages**, so if you find a version that suits your needs, it’s recommended to **pin your version**, as updates may introduce breaking changes.\n\nTo pin your version in `requirements.txt`, specify the version explicitly:\n\n```text\npanel-full-calendar==0.x.x\n```\n\nOr in `pyproject.toml`:\n\n```toml\n[tool.poetry.dependencies]\npanel-full-calendar = \"0.x.x\"\n```\n\n---\n\n## Installation\n\nInstall `panel-full-calendar` via `pip`:\n\n```bash\npip install panel-full-calendar\n```\n\nAlternatively, add it to your `pyproject.toml`:\n\n```toml\n[tool.poetry.dependencies]\npanel-full-calendar = \"^0.x.x\"\n```\n\n---\n\n## Usage\n\nTo use the calendar in a Panel application:\n\n```python\nimport panel as pn\nfrom panel_full_calendar import Calendar\n\npn.extension(\"fullcalendar\")\n\n# Create a basic calendar widget\ncalendar = Calendar(sizing_mode=\"stretch_width\")\ncalendar.show()\n```\n\n## Development\n\n```bash\ngit clone https://github.com/panel-extensions/panel-full-calendar\ncd panel-full-calendar\n```\n\nFor a simple setup use [`uv`](https://docs.astral.sh/uv/):\n\n```bash\nuv venv\nsource .venv/bin/activate # on linux. Similar commands for windows and osx\nuv pip install -e .[dev]\npre-commit run install\npytest tests\n```\n\nFor the full Github Actions setup use [pixi](https://pixi.sh):\n\n```bash\npixi run pre-commit-install\npixi run postinstall\npixi run test\n```\n\nThis repository is based on [copier-template-panel-extension](https://github.com/panel-extensions/copier-template-panel-extension).\nTo update to the latest template version run:\n\n```bash\npixi exec --spec copier --spec ruamel.yaml -- copier update --defaults --trust\n```\n\nNote: `copier` will show `Conflict` for files with manual changes during an update. This is normal. As long as there are no merge conflict markers, all patches applied cleanly.\n\n## ❤️ Contributing\n\nContributions are welcome 🤗! Please follow these steps to contribute:\n\n1. Fork the repository.\n2. Create a new branch: `git checkout -b feature/YourFeature`.\n3. Make your changes and commit them: `git commit -m 'Add some feature'`.\n4. Push to the branch: `git push origin feature/YourFeature`.\n5. Open a pull request.\n\nPlease ensure your code adheres to the project's coding standards and passes all tests.\n\nIf you encounter issues or want to request features, please submit a [GitHub issue](https://github.com/panel-extensions/panel-full-calendar/issues/new/choose).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanel-extensions%2Fpanel-full-calendar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpanel-extensions%2Fpanel-full-calendar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanel-extensions%2Fpanel-full-calendar/lists"}