معرفی شرکت ها


camerge-0.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Merge multiple ical/ics calendars to one.
ویژگی مقدار
سیستم عامل -
نام فایل camerge-0.0.3
نام camerge
نسخه کتابخانه 0.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Lukas Forst
ایمیل نویسنده lukas@forst.dev
آدرس صفحه اصلی https://github.com/LukasForst/camerge
آدرس اینترنتی https://pypi.org/project/camerge/
مجوز -
# Camerge [![PyPi version](https://badgen.net/pypi/v/camerge/)](https://pypi.python.org/pypi/camerge) [![PyPI license](https://img.shields.io/pypi/l/camerge.svg)](https://pypi.python.org/pypi/camerge/) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/camerge.svg)](https://pypi.python.org/pypi/camerge/) A simple library for merging multiple calendars into one. It also allows anonymization of the events, so nobody will be able to see the summary of the event. What this solves: You have multiple calendars, and you want to share availability in `ical` format with some other people. This tool takes your private calendars (in `ical` format), merges them, optionally anonymize them and creates new `ical` calendar with the correct availability data. This project is a minimal library but can be very easily used as an API for example: ```python import datetime from fastapi import FastAPI, Response from camerge import merge_calendars app = FastAPI() @app.get("/") async def calendar(): """ This method generates ical data for any calendar app. """ ical = merge_calendars( calendar_name='My Availability', calendar_domain='my.calendar.example.com', calendar_data=[ # take this google ical stream and anonymize events (no event names shown) ("https://calendar.google.com/calendar/ical/me@me.com/private-x/basic.ics", True), # take this event stream and do not anonymize event summary ("https://p30-caldav.icloud.com/published/2/xxx", False), ], # take event availability from these email addresses, these should be your own # email addresses associated with the calendar accounts known_emails=[ 'me@example.com', 'otherme@example.com' ], # do not include events that are older than this skip_events_before=datetime.date(2021, 1, 1) ) return Response(content=ical, media_type='text/calendar') ``` ## Dependencies This project is based on [icalendar](https://github.com/collective/icalendar).


نیازمندی

مقدار نام
>=4.1.0 icalendar
- check-manifest
- coverage


زبان مورد نیاز

مقدار نام
>=3.7, <4 Python


نحوه نصب


نصب پکیج whl camerge-0.0.3:

    pip install camerge-0.0.3.whl


نصب پکیج tar.gz camerge-0.0.3:

    pip install camerge-0.0.3.tar.gz