ics-query 0.1.1a0__py3-none-any.whl → 0.3.1b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ics_query/__init__.py +18 -2
- ics_query/__main__.py +15 -0
- ics_query/_version.py +2 -2
- ics_query/cli.py +455 -23
- ics_query/parse.py +41 -4
- ics_query/query.py +71 -0
- ics_query/tests/conftest.py +15 -0
- ics_query/tests/runs/all --tz Singapore one-event.ics -.run +9 -0
- ics_query/tests/runs/all three-events.ics -.run +33 -0
- ics_query/tests/runs/at 2024-08-20 Berlin-Los-Angeles.ics -.run +23 -0
- ics_query/tests/runs/between 20240823 4d recurring-work-events.ics -.run +24 -0
- ics_query/tests/runs/calendars/Berlin-Los-Angeles.ics +381 -0
- ics_query/tests/runs/calendars/empty-calendar.ics +7 -0
- ics_query/tests/runs/calendars/empty-file.ics +0 -0
- ics_query/tests/runs/calendars/recurring-work-events.ics +223 -0
- ics_query/tests/runs/calendars/simple-journal.ics +15 -0
- ics_query/tests/runs/calendars/simple-todo.ics +15 -0
- ics_query/tests/runs/calendars/three-events.ics +37 -0
- ics_query/tests/runs/first -c VJOURNAL -c VEVENT one-event.ics -.run +9 -0
- ics_query/tests/runs/first -c VJOURNAL one-event.ics -.run +0 -0
- ics_query/tests/runs/first -c VJOURNAL simple-journal.ics -.run +12 -0
- ics_query/tests/runs/first -c VTODO -c VJOURNAL simple-todo.ics -.run +10 -0
- ics_query/tests/runs/first -c VTODO simple-todo.ics -.run +10 -0
- ics_query/tests/runs/first empty-calendar.ics -.run +0 -0
- ics_query/tests/runs/first empty-file.ics -.run +0 -0
- ics_query/tests/runs/first recurring-work-events.ics -.run +12 -0
- ics_query/tests/test_command_line.py +34 -0
- ics_query/tests/test_parse_date.py +23 -5
- ics_query/tests/test_parse_timedelta.py +40 -0
- ics_query/version.py +33 -3
- {ics_query-0.1.1a0.dist-info → ics_query-0.3.1b0.dist-info}/METADATA +247 -51
- ics_query-0.3.1b0.dist-info/RECORD +43 -0
- ics_query-0.1.1a0.dist-info/RECORD +0 -22
- {ics_query-0.1.1a0.dist-info → ics_query-0.3.1b0.dist-info}/WHEEL +0 -0
- {ics_query-0.1.1a0.dist-info → ics_query-0.3.1b0.dist-info}/entry_points.txt +0 -0
- {ics_query-0.1.1a0.dist-info → ics_query-0.3.1b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ics-query
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1b0
|
|
4
4
|
Summary: Find out what happens in ICS calendar files - query and filter RFC 5545 compatible .ics files for events, journals, TODOs and more.
|
|
5
5
|
Project-URL: Homepage, https://github.com/niccokunzmann/ics-query/
|
|
6
6
|
Project-URL: Repository, https://github.com/niccokunzmann/ics-query/
|
|
7
|
-
Project-URL: source_archive, https://github.com/niccokunzmann/ics-query/archive/
|
|
7
|
+
Project-URL: source_archive, https://github.com/niccokunzmann/ics-query/archive/985400ff5c4df0ea4ad62422ef5c5c5e98face07.zip
|
|
8
8
|
Project-URL: Issues, https://github.com/niccokunzmann/ics-query/issues
|
|
9
9
|
Project-URL: Documentation, https://github.com/niccokunzmann/ics-query/
|
|
10
10
|
Project-URL: Changelog, https://github.com/niccokunzmann/ics-query/#changelog
|
|
@@ -686,7 +686,7 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
|
686
686
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
687
687
|
License-File: LICENSE
|
|
688
688
|
Keywords: calendar,command line,icalendar,ics,rfc5545,scheduling
|
|
689
|
-
Classifier: Development Status ::
|
|
689
|
+
Classifier: Development Status :: 4 - Beta
|
|
690
690
|
Classifier: Intended Audience :: Developers
|
|
691
691
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
692
692
|
Classifier: Operating System :: OS Independent
|
|
@@ -695,38 +695,59 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
695
695
|
Classifier: Programming Language :: Python :: 3.11
|
|
696
696
|
Classifier: Programming Language :: Python :: 3.12
|
|
697
697
|
Classifier: Topic :: Office/Business :: Scheduling
|
|
698
|
-
Requires-Python: >=3.
|
|
698
|
+
Requires-Python: >=3.9
|
|
699
699
|
Requires-Dist: click
|
|
700
700
|
Requires-Dist: icalendar
|
|
701
|
-
Requires-Dist: recurring-ical-events
|
|
701
|
+
Requires-Dist: recurring-ical-events<4,>=3.2.0
|
|
702
|
+
Requires-Dist: x-wr-timezone
|
|
702
703
|
Provides-Extra: test
|
|
703
704
|
Requires-Dist: pytest; extra == 'test'
|
|
704
705
|
Description-Content-Type: text/markdown
|
|
705
706
|
|
|
706
707
|
# ics-query
|
|
707
708
|
|
|
709
|
+
[][GitHub Actions]
|
|
710
|
+
[][PyPI]
|
|
711
|
+
[][PyPI]
|
|
712
|
+
[][Open Collective]
|
|
713
|
+
[][Polar]
|
|
714
|
+
|
|
708
715
|
<!-- Change description also in pyproject.toml -->
|
|
709
716
|
Find out what happens in ICS calendar files - query and filter RFC 5545 compatible `.ics` files for events, journals, TODOs and more.
|
|
710
717
|
|
|
711
718
|
## Installation
|
|
712
719
|
|
|
713
|
-
You can install this package from the [PyPI]
|
|
720
|
+
You can install this package from the [PyPI].
|
|
714
721
|
|
|
715
722
|
```shell
|
|
716
723
|
pip install ics-query
|
|
717
724
|
```
|
|
718
725
|
|
|
726
|
+
## Support
|
|
727
|
+
|
|
728
|
+
- Support using [GitHub Sponsors]
|
|
729
|
+
- Fund specific issues using [Polar]
|
|
730
|
+
- Support using [Open Collective]
|
|
731
|
+
- Support using [thanks.dev]
|
|
732
|
+
|
|
733
|
+
We accept donations to sustain our work, once or regular.
|
|
734
|
+
Consider donating money to open-source as everyone benefits.
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
719
738
|
## Usage
|
|
720
739
|
|
|
721
|
-
|
|
740
|
+
`ics-query` is a command line tool that aims to make icalendar occurance calculations
|
|
741
|
+
accessible and easy.
|
|
742
|
+
This section walks you though the different functionalities.
|
|
722
743
|
|
|
723
744
|
### Examples
|
|
724
745
|
|
|
725
|
-
You can
|
|
726
|
-
In this example, we show which German National Holidays
|
|
746
|
+
You can get a calendar from the web and see what is on.
|
|
747
|
+
In this example, we show which German National Holidays happening in August 2024:
|
|
727
748
|
|
|
728
749
|
```shell
|
|
729
|
-
$ wget -qO- 'https://www.calendarlabs.com/ical-calendar/ics/46/Germany_Holidays.ics' |
|
|
750
|
+
$ wget -qO- 'https://www.calendarlabs.com/ical-calendar/ics/46/Germany_Holidays.ics' | ics-query at 2024-08 - -
|
|
730
751
|
BEGIN:VEVENT
|
|
731
752
|
SUMMARY:Assumption Day (BY\, SL)
|
|
732
753
|
DTSTART;VALUE=DATE:20240815
|
|
@@ -767,100 +788,212 @@ BEGIN:VEVENT
|
|
|
767
788
|
...
|
|
768
789
|
```
|
|
769
790
|
|
|
791
|
+
#### Piping calendars
|
|
792
|
+
|
|
793
|
+
You can pipe one or more calendars into the input.
|
|
794
|
+
|
|
795
|
+
```shell
|
|
796
|
+
cat calendar.ics | ics-query first -
|
|
797
|
+
```
|
|
798
|
+
|
|
770
799
|
### Events at Certain Times
|
|
771
800
|
|
|
772
801
|
You can query which events happen at certain times:
|
|
773
802
|
|
|
774
803
|
```shell
|
|
775
|
-
ics-query at
|
|
804
|
+
ics-query at TIME calendar.ics -
|
|
776
805
|
```
|
|
777
806
|
|
|
778
|
-
|
|
807
|
+
The format of TIME:
|
|
808
|
+
|
|
809
|
+
| TIME | description |
|
|
810
|
+
| ------- | ----------- |
|
|
811
|
+
| `2019` | the whole year 2019 |
|
|
812
|
+
| `2019-08` | August 2019 |
|
|
813
|
+
| `2019-08-12` | 12th of August 2019 |
|
|
814
|
+
| `2019-08-12T17` | 17:00-18:00 at the 12th of August 2019 |
|
|
815
|
+
| `2019-08-12T17:20` | 17:20-17:21 at the 12th of August 2019 |
|
|
816
|
+
| `2019-08-12T17:20:00` | 17:20 at the 12th of August 2019 |
|
|
817
|
+
|
|
779
818
|
|
|
780
819
|
Please see the command documentation for more help:
|
|
781
820
|
|
|
782
821
|
```shell
|
|
783
|
-
ics-query --help
|
|
784
822
|
ics-query at --help
|
|
823
|
+
ics-query --help
|
|
785
824
|
```
|
|
786
825
|
|
|
787
|
-
|
|
826
|
+
You can get all **events** that happen at a certain **day**.
|
|
788
827
|
|
|
789
|
-
|
|
828
|
+
```shell
|
|
829
|
+
ics-query at --components VEVENT 2029-12-24 calendar.ics
|
|
830
|
+
```
|
|
831
|
+
|
|
832
|
+
You can get all **events** that happen **today**.
|
|
790
833
|
|
|
791
|
-
|
|
834
|
+
```shell
|
|
835
|
+
ics-query at --components VEVENT `date +%Y-%m-%d` calendar.ics
|
|
836
|
+
```
|
|
792
837
|
|
|
793
|
-
You can get all **
|
|
838
|
+
You can get all **TODO**s that happen in a certain **month**.
|
|
794
839
|
|
|
795
840
|
```shell
|
|
796
|
-
ics-query --components
|
|
841
|
+
ics-query at --components VTODO 2029-12-24 calendar.ics
|
|
797
842
|
```
|
|
798
843
|
|
|
799
|
-
|
|
844
|
+
### Events within a Time Span
|
|
845
|
+
|
|
846
|
+
You can query which events happen between certain times:
|
|
800
847
|
|
|
801
848
|
```shell
|
|
802
|
-
ics-query
|
|
849
|
+
ics-query between START END calendar.ics -
|
|
850
|
+
ics-query between START DURATION calendar.ics -
|
|
803
851
|
```
|
|
804
852
|
|
|
805
|
-
|
|
853
|
+
Please see the command documentation for more help:
|
|
806
854
|
|
|
807
855
|
```shell
|
|
808
|
-
ics-query --
|
|
856
|
+
ics-query between --help
|
|
857
|
+
ics-query --help
|
|
809
858
|
```
|
|
810
859
|
|
|
811
|
-
|
|
860
|
+
The format of START and END with examples:
|
|
812
861
|
|
|
862
|
+
| START or END | Description |
|
|
863
|
+
| ------- | ----------- |
|
|
864
|
+
| `2019` | the whole year 2019 |
|
|
865
|
+
| `2019-08` | August 2019 |
|
|
866
|
+
| `2019-08-12` | 12th of August 2019 |
|
|
867
|
+
| `2019-08-12T17` | 17:00-18:00 at the 12th of August 2019 |
|
|
868
|
+
| `2019-08-12T17:20` | 17:20-17:21 at the 12th of August 2019 |
|
|
869
|
+
| `2019-08-12T17:20:00` | 17:20 at the 12th of August 2019 |
|
|
813
870
|
|
|
814
|
-
|
|
871
|
+
Instead of an absolute time, you can specify a duration after the START.
|
|
872
|
+
The `+` is optional.
|
|
815
873
|
|
|
874
|
+
| DURATION | Description |
|
|
875
|
+
| ------- | ----------- |
|
|
876
|
+
| `+1d` | one more day |
|
|
877
|
+
| `+1h` | one more hour |
|
|
878
|
+
| `+1m` | one more minute |
|
|
879
|
+
| `+1s` | one more second |
|
|
880
|
+
| `+3600s` | one more hour or 3600 seconds |
|
|
881
|
+
| `+5d10h` | five more days and 10 more hours |
|
|
816
882
|
|
|
817
|
-
###
|
|
883
|
+
### Time Span Examples
|
|
818
884
|
|
|
885
|
+
This example returns the occurrences within the **next week**:
|
|
819
886
|
|
|
820
|
-
|
|
887
|
+
```shell
|
|
888
|
+
ics-query between `date +%Y%m%d` +7d calendar.ics -
|
|
889
|
+
```
|
|
821
890
|
|
|
822
|
-
|
|
891
|
+
This example saves the **events** from the **1st of May 2024 to the 10th of June** in
|
|
892
|
+
events.ics:
|
|
893
|
+
|
|
894
|
+
```shell
|
|
895
|
+
ics-query between --component VEVENT 2024-5-1 2024-6-10 calendar.ics events.ics
|
|
896
|
+
```
|
|
897
|
+
|
|
898
|
+
In this example, you can check what is happening on **New Years Eve 2025** around
|
|
899
|
+
midnight:
|
|
900
|
+
|
|
901
|
+
```shell
|
|
902
|
+
ics-query between 2025-12-31T21:00 +6h calendar.ics events.ics
|
|
903
|
+
```
|
|
823
904
|
|
|
824
905
|
### `ics-query all` - the whole calendar
|
|
825
906
|
|
|
826
|
-
|
|
907
|
+
You can get everything that is happening in a calendar but that can be a lot!
|
|
827
908
|
|
|
828
909
|
```shell
|
|
829
|
-
ics-query
|
|
830
|
-
ics-query between dt duration
|
|
910
|
+
ics-query all calendar.ics
|
|
831
911
|
```
|
|
832
912
|
|
|
833
|
-
###
|
|
913
|
+
### Filtering Components
|
|
834
914
|
|
|
915
|
+
We support different component types: `VEVENT`, `VJOURNAL` and `VTODO`.
|
|
916
|
+
By default, we include all types in the result.
|
|
835
917
|
|
|
836
|
-
|
|
918
|
+
You can specify which components you would like to get using the
|
|
919
|
+
`--component` or `-c` parameter.
|
|
837
920
|
|
|
921
|
+
```shell
|
|
922
|
+
-c VEVENT # only events
|
|
923
|
+
-c VTODO # only TODOs
|
|
924
|
+
-c VJOURNAL # only journal entries
|
|
925
|
+
-c VEVENT -v VTODO # only events and journal entries
|
|
926
|
+
```
|
|
838
927
|
|
|
839
|
-
|
|
928
|
+
This example returns the first event of a calendar.
|
|
840
929
|
|
|
841
|
-
|
|
930
|
+
```shell
|
|
931
|
+
ics-query first -c VEVENT calendar.ics -
|
|
932
|
+
```
|
|
842
933
|
|
|
843
|
-
|
|
934
|
+
This option is also available as `ICS_QUERY_COMPONENT` variable.
|
|
844
935
|
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
936
|
+
```shell
|
|
937
|
+
export ICS_QUERY_COMPONENT=VEVENT
|
|
938
|
+
# from now on, you will get only events
|
|
939
|
+
ics-query first calendar.ics
|
|
940
|
+
```
|
|
850
941
|
|
|
851
|
-
|
|
942
|
+
Please see the command documentation for more help:
|
|
852
943
|
|
|
853
944
|
```shell
|
|
854
|
-
|
|
945
|
+
ics-query --help
|
|
855
946
|
```
|
|
856
947
|
|
|
857
|
-
## Notifications
|
|
858
948
|
|
|
859
|
-
|
|
949
|
+
### Timezones
|
|
860
950
|
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
951
|
+
You can set the timezone of the query, otherwise the event's local timezone is used and you
|
|
952
|
+
might miss events in your own timezone.
|
|
953
|
+
|
|
954
|
+
The first event at New Year 2000 in the **event's local time**:
|
|
955
|
+
|
|
956
|
+
```shell
|
|
957
|
+
ics-query at 2000-01-01 calendar.ics
|
|
958
|
+
```
|
|
959
|
+
|
|
960
|
+
The first event at New Year 2000 in **your local time**:
|
|
961
|
+
|
|
962
|
+
```shell
|
|
963
|
+
ics-query at --tz=localtime 2000-01-01 calendar.ics
|
|
964
|
+
```
|
|
965
|
+
|
|
966
|
+
The first event at New Year 2000 in **UTC**:
|
|
967
|
+
|
|
968
|
+
```shell
|
|
969
|
+
ics-query at --tz=UTC 2000-01-01 calendar.ics
|
|
970
|
+
```
|
|
971
|
+
|
|
972
|
+
The first event at New Year 2000 in **Berlin time**:
|
|
973
|
+
|
|
974
|
+
```shell
|
|
975
|
+
ics-query at --tz=Europe/Berlin 2000-01-01 calendar.ics
|
|
976
|
+
```
|
|
977
|
+
|
|
978
|
+
You can also use the `ICS_QUERY_TZ` variable.
|
|
979
|
+
|
|
980
|
+
```shell
|
|
981
|
+
export ICS_QUERY_TZ=localtime
|
|
982
|
+
# from now on, we use your local time
|
|
983
|
+
ics-query at 2000-01-01 calendar.ics
|
|
984
|
+
```
|
|
985
|
+
|
|
986
|
+
For all avaiable timezones see:
|
|
987
|
+
|
|
988
|
+
```shell
|
|
989
|
+
ics-query --available-timezones
|
|
990
|
+
```
|
|
991
|
+
|
|
992
|
+
Please see the command documentation for more help:
|
|
993
|
+
|
|
994
|
+
```shell
|
|
995
|
+
ics-query --help
|
|
996
|
+
```
|
|
864
997
|
|
|
865
998
|
## Version Fixing
|
|
866
999
|
|
|
@@ -877,7 +1010,7 @@ while `b` and `c` can change.
|
|
|
877
1010
|
|
|
878
1011
|
## Development
|
|
879
1012
|
|
|
880
|
-
This section should set you up for
|
|
1013
|
+
This section should set you up for developing `ics-query`.
|
|
881
1014
|
|
|
882
1015
|
### Testing
|
|
883
1016
|
|
|
@@ -920,13 +1053,13 @@ Run this to format the code and show problems:
|
|
|
920
1053
|
tox -e ruff
|
|
921
1054
|
```
|
|
922
1055
|
|
|
923
|
-
|
|
1056
|
+
### New Release
|
|
924
1057
|
|
|
925
1058
|
To release new versions,
|
|
926
1059
|
|
|
927
1060
|
1. edit the Changelog Section
|
|
928
1061
|
2. create a commit and push it
|
|
929
|
-
3. wait for [GitHub Actions]
|
|
1062
|
+
3. wait for [GitHub Actions] to finish the build
|
|
930
1063
|
4. create a tag and push it
|
|
931
1064
|
|
|
932
1065
|
```shell
|
|
@@ -938,10 +1071,28 @@ To release new versions,
|
|
|
938
1071
|
|
|
939
1072
|
## Changelog
|
|
940
1073
|
|
|
1074
|
+
- v0.3.1b
|
|
1075
|
+
|
|
1076
|
+
- Add `--license` option
|
|
1077
|
+
|
|
1078
|
+
- v0.3.0b
|
|
1079
|
+
|
|
1080
|
+
- Add `--tz` timezone parameter
|
|
1081
|
+
- Add `ics-query all` to get all occurrences
|
|
1082
|
+
|
|
1083
|
+
- v0.2.1a
|
|
1084
|
+
|
|
1085
|
+
- Add `--component` to filter component types VEVENT, VJOURNAL and VTODO
|
|
1086
|
+
|
|
1087
|
+
- v0.2.0a
|
|
1088
|
+
|
|
1089
|
+
- Add `ics-query first <calendar> <output>` for earliest occurrences
|
|
1090
|
+
- Add `ics-query between <span_start> <span_stop> <calendar> <output>` to query time ranges
|
|
1091
|
+
|
|
941
1092
|
- v0.1.1a
|
|
942
1093
|
|
|
943
1094
|
- Add `--version`
|
|
944
|
-
- Add `ics-query at <date>`
|
|
1095
|
+
- Add `ics-query at <date> <calendar> <output>`
|
|
945
1096
|
- Add support for multiple calendars in one input
|
|
946
1097
|
|
|
947
1098
|
- v0.1.0a
|
|
@@ -952,3 +1103,48 @@ To release new versions,
|
|
|
952
1103
|
- v0.0.1a
|
|
953
1104
|
|
|
954
1105
|
- first version
|
|
1106
|
+
|
|
1107
|
+
## Related Work
|
|
1108
|
+
|
|
1109
|
+
- [icalBuddy](https://hasseg.org/icalBuddy/)
|
|
1110
|
+
- [Blog Post](https://opencollective.com/open-web-calendar/updates/calendar-calculation-on-the-command-line-ics-query)
|
|
1111
|
+
- [#icsquery on mastodon](https://toot.wales/tags/icsquery)
|
|
1112
|
+
|
|
1113
|
+
## Vision
|
|
1114
|
+
|
|
1115
|
+
This section shows where we would like to get to.
|
|
1116
|
+
|
|
1117
|
+
### `ics-query --select-index` - reduce output size
|
|
1118
|
+
|
|
1119
|
+
Examples: `0,2,4` `0-10`
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
### `ics-query --select-uid` - filter by uid
|
|
1123
|
+
|
|
1124
|
+
### How to edit an event
|
|
1125
|
+
|
|
1126
|
+
To edit a component like an event, you can append it to the calendar and increase the sequence number.
|
|
1127
|
+
|
|
1128
|
+
Example:
|
|
1129
|
+
|
|
1130
|
+
1. get the event `--select-index=0`
|
|
1131
|
+
2. change the summary
|
|
1132
|
+
3. increase sequence number
|
|
1133
|
+
4. add the event to the end of the calendar file
|
|
1134
|
+
5. show that the occurrence has changed
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
### Notifications
|
|
1138
|
+
|
|
1139
|
+
Examples:
|
|
1140
|
+
|
|
1141
|
+
- There are x todos in the next hour
|
|
1142
|
+
- There are x events today
|
|
1143
|
+
- Please write a journal entry!
|
|
1144
|
+
|
|
1145
|
+
[PyPI]: https://pypi.org/project/ics-query/
|
|
1146
|
+
[GitHub Actions]: https://github.com/niccokunzmann/ics-query/actions
|
|
1147
|
+
[Open Collective]: https://opencollective.com/open-web-calendar/
|
|
1148
|
+
[Polar]: https://polar.sh/niccokunzmann/ics-query
|
|
1149
|
+
[GitHub Sponsors]: https://github.com/sponsors/niccokunzmann
|
|
1150
|
+
[thanks.dev]: https://thanks.dev
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
ics_query/__init__.py,sha256=BBd-FYDFf3jY_ApkMRkivqGti2uMeP4OT6KtgZDixic,917
|
|
2
|
+
ics_query/__main__.py,sha256=1rFDbZZcd6llmQ-X_611jWdrua4HMOnpOclKRvf03Us,737
|
|
3
|
+
ics_query/_version.py,sha256=c2CEW8svaXrg7VxTbX_h3WVVYqpNARBenswZBolcByk,413
|
|
4
|
+
ics_query/cli.py,sha256=_Em8oiTtaTtK9H5ZvqB0-F2v3OibBBaDM6lmBPgaeq4,19918
|
|
5
|
+
ics_query/parse.py,sha256=AO2TBoe98exzfzTKsoF5ZAvJOg3hN2qRpP15DAQKZaM,2415
|
|
6
|
+
ics_query/query.py,sha256=bmC0fcK-qHVj0tB4TPpwf4g6-qFmUyZxs_IjMovwBX8,2434
|
|
7
|
+
ics_query/version.py,sha256=Tx41PPl2wc6dQI6r93EzTANoUXjkFzUvwMYj5ARauNQ,1347
|
|
8
|
+
ics_query/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
ics_query/tests/conftest.py,sha256=E4rN037kKJzrGUj4QggIv2LyaAGXnxNknnkcbheJplQ,2943
|
|
10
|
+
ics_query/tests/test_command_line.py,sha256=iXLhdOOXb1I4MBsP82CSfTGu9kZM0s8PxNYLKO04PLw,1838
|
|
11
|
+
ics_query/tests/test_parse_date.py,sha256=EGD06AtO_kNDcYEY7vhI9rN45HiZPbRm2LkGZoVW6iw,2785
|
|
12
|
+
ics_query/tests/test_parse_timedelta.py,sha256=EpM013rw-G61wI0hyWjtFOtE7xXo2DNsU3vSIULGZ1k,1469
|
|
13
|
+
ics_query/tests/runs/all --tz Singapore one-event.ics -.run,sha256=sWF9T4kKzhnZYrgidUX5sgdJ5q95q1gp9vd8X65bIdk,218
|
|
14
|
+
ics_query/tests/runs/all three-events.ics -.run,sha256=gdcQ-LKaM0Bpre06txuoTTk2WYIh4Qe2-v0weO2Ckkc,768
|
|
15
|
+
ics_query/tests/runs/at 2019-03-04 multiple-calendars.ics -.run,sha256=Cyeg9DMK6BibiCwkM8nW0ZtULUYSZFIgDvKRlSo_jTw,482
|
|
16
|
+
ics_query/tests/runs/at 2019-03-04 one-event-twice.ics -.run,sha256=hc-0yJhWpnSVzPNB_0_tJfR6dskNMm9xdbHeAhsX1zI,452
|
|
17
|
+
ics_query/tests/runs/at 2019-03-04 one-event.ics -.run,sha256=GVVmVpqzFjQLw2_RuhxnVTpCnwflNqeWbkFZ6u5WXxA,226
|
|
18
|
+
ics_query/tests/runs/at 2019-03-07 multiple-calendars.ics -.run,sha256=ZlLXxPMIai7vvmQTL4NyXJwdCQzoU1scEn_FpjmkkUA,256
|
|
19
|
+
ics_query/tests/runs/at 2024-08-20 Berlin-Los-Angeles.ics -.run,sha256=KzQaFp65wntWfEu4fQwr3iH1kE-ooEmslA4UeA9-gkc,643
|
|
20
|
+
ics_query/tests/runs/between 20240823 4d recurring-work-events.ics -.run,sha256=2_sM7CkSW4SDk6wbwyLURZ8WZm2rT0hgmx1k7O07T3M,574
|
|
21
|
+
ics_query/tests/runs/first -c VJOURNAL -c VEVENT one-event.ics -.run,sha256=GVVmVpqzFjQLw2_RuhxnVTpCnwflNqeWbkFZ6u5WXxA,226
|
|
22
|
+
ics_query/tests/runs/first -c VJOURNAL one-event.ics -.run,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
ics_query/tests/runs/first -c VJOURNAL simple-journal.ics -.run,sha256=Av_N2nsE2sfku6owvJwguQ53699C-GTHV5tWS8j5mZ4,370
|
|
24
|
+
ics_query/tests/runs/first -c VTODO -c VJOURNAL simple-todo.ics -.run,sha256=-mcQWZIxMcIdSMOeHpdzAWDLXseGULNHOoGhy6ca8J0,224
|
|
25
|
+
ics_query/tests/runs/first -c VTODO simple-todo.ics -.run,sha256=-mcQWZIxMcIdSMOeHpdzAWDLXseGULNHOoGhy6ca8J0,224
|
|
26
|
+
ics_query/tests/runs/first empty-calendar.ics -.run,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
ics_query/tests/runs/first empty-file.ics -.run,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
+
ics_query/tests/runs/first recurring-work-events.ics -.run,sha256=-mGNYgI4vBSkBMMJ0WCYdkg97JpnOJ64rlaqdSKCi2Y,287
|
|
29
|
+
ics_query/tests/runs/calendars/Berlin-Los-Angeles.ics,sha256=_FFRUurDU_q7G8d8lSvfbCy3y1XvujaclLXei6GrW5U,9107
|
|
30
|
+
ics_query/tests/runs/calendars/empty-calendar.ics,sha256=78162P3KYUj6Qhbdnjsm3E84jv--_--p5U0h_jovrpw,153
|
|
31
|
+
ics_query/tests/runs/calendars/empty-file.ics,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
ics_query/tests/runs/calendars/multiple-calendars.ics,sha256=lS1Q9eSPpzLs2TRDKUiwF9HmpnJMw8xqjLudA0-KtY4,1516
|
|
33
|
+
ics_query/tests/runs/calendars/one-event-twice.ics,sha256=GZ5wE-U4kjO91N2nIaLsYZpSOLvQTjkoLPI6saMocOM,1450
|
|
34
|
+
ics_query/tests/runs/calendars/one-event.ics,sha256=-uwohttEzg-jsTETNb6tQ5dO9PE3DXzlicwRiXJs1KQ,725
|
|
35
|
+
ics_query/tests/runs/calendars/recurring-work-events.ics,sha256=4ASS_-xZl2pVv1kZ7nDOU9jpkmbo4zJC2KEAgHtpsNU,5115
|
|
36
|
+
ics_query/tests/runs/calendars/simple-journal.ics,sha256=U6_YMQM6EHwPDaszWgJDo-pR4WIqbJx8CRlHg4iu9zA,457
|
|
37
|
+
ics_query/tests/runs/calendars/simple-todo.ics,sha256=l9uHQD4eyiCE8STvd2tj5lAVaBrqUtpF_M8Pv6yf1es,327
|
|
38
|
+
ics_query/tests/runs/calendars/three-events.ics,sha256=YvPfthOzMCR0DQhGR6uj_1Bltgax3uA1ETlkI4JUI08,828
|
|
39
|
+
ics_query-0.3.1b0.dist-info/METADATA,sha256=pPdD_fvpGxjiWnkUYCpPCghCSnwMym-IwM8WViw5a00,53198
|
|
40
|
+
ics_query-0.3.1b0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
41
|
+
ics_query-0.3.1b0.dist-info/entry_points.txt,sha256=Jq_39vCKVOkNZjL7Wngf_04V_n_QRszLgLT2CbJKiH4,49
|
|
42
|
+
ics_query-0.3.1b0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
43
|
+
ics_query-0.3.1b0.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
ics_query/__init__.py,sha256=YxyZzqxwfA77sBVFjUyUj3_fvR2gL3bs0pkE93prRFY,216
|
|
2
|
-
ics_query/__main__.py,sha256=E6Gls0DNz8GQK2K-kOUIx8cYhgANW_CH54VKrfCfs14,52
|
|
3
|
-
ics_query/_version.py,sha256=cU7fSuITRwo1pTWU-OD7oXC6-FpABHrqGppdiounZFo,413
|
|
4
|
-
ics_query/cli.py,sha256=-ogJQ994ssQNNvU8tojCPDea4wJwFd4f9REoJ1hDCOs,6949
|
|
5
|
-
ics_query/parse.py,sha256=VkF4z5KR-uzg4YmEKaY7Zz67d4Ffxc4rsB6ezNtxBr8,1113
|
|
6
|
-
ics_query/version.py,sha256=LgqmHh_dcmWi9HMxfWJ8OhfmbzWsBTq3h08jIE18pYM,468
|
|
7
|
-
ics_query/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
ics_query/tests/conftest.py,sha256=MGwKXod7sFfepXK0mtvKkR8SaIiI1SZNW_rAhz6aSA0,2258
|
|
9
|
-
ics_query/tests/test_command_line.py,sha256=-XnpYWETEVEc1dJ5_dpd8dqBoMQFz1CyGaSoe_ETq5o,488
|
|
10
|
-
ics_query/tests/test_parse_date.py,sha256=ZMbllWHNCwuluGTr55xKlM7xBzoMNsoE7TQUC5uGlVA,1923
|
|
11
|
-
ics_query/tests/runs/at 2019-03-04 multiple-calendars.ics -.run,sha256=Cyeg9DMK6BibiCwkM8nW0ZtULUYSZFIgDvKRlSo_jTw,482
|
|
12
|
-
ics_query/tests/runs/at 2019-03-04 one-event-twice.ics -.run,sha256=hc-0yJhWpnSVzPNB_0_tJfR6dskNMm9xdbHeAhsX1zI,452
|
|
13
|
-
ics_query/tests/runs/at 2019-03-04 one-event.ics -.run,sha256=GVVmVpqzFjQLw2_RuhxnVTpCnwflNqeWbkFZ6u5WXxA,226
|
|
14
|
-
ics_query/tests/runs/at 2019-03-07 multiple-calendars.ics -.run,sha256=ZlLXxPMIai7vvmQTL4NyXJwdCQzoU1scEn_FpjmkkUA,256
|
|
15
|
-
ics_query/tests/runs/calendars/multiple-calendars.ics,sha256=lS1Q9eSPpzLs2TRDKUiwF9HmpnJMw8xqjLudA0-KtY4,1516
|
|
16
|
-
ics_query/tests/runs/calendars/one-event-twice.ics,sha256=GZ5wE-U4kjO91N2nIaLsYZpSOLvQTjkoLPI6saMocOM,1450
|
|
17
|
-
ics_query/tests/runs/calendars/one-event.ics,sha256=-uwohttEzg-jsTETNb6tQ5dO9PE3DXzlicwRiXJs1KQ,725
|
|
18
|
-
ics_query-0.1.1a0.dist-info/METADATA,sha256=cgssIiEuCQItTb7_5Iap9KFcfV6f9-z4DUfy-gd6MsU,48066
|
|
19
|
-
ics_query-0.1.1a0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
20
|
-
ics_query-0.1.1a0.dist-info/entry_points.txt,sha256=Jq_39vCKVOkNZjL7Wngf_04V_n_QRszLgLT2CbJKiH4,49
|
|
21
|
-
ics_query-0.1.1a0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
22
|
-
ics_query-0.1.1a0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|