ics-query 0.3.2b0__py3-none-any.whl → 0.3.4__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/_version.py +2 -2
- ics_query/version.py +5 -2
- {ics_query-0.3.2b0.dist-info → ics_query-0.3.4.dist-info}/METADATA +41 -8
- {ics_query-0.3.2b0.dist-info → ics_query-0.3.4.dist-info}/RECORD +7 -7
- {ics_query-0.3.2b0.dist-info → ics_query-0.3.4.dist-info}/WHEEL +0 -0
- {ics_query-0.3.2b0.dist-info → ics_query-0.3.4.dist-info}/entry_points.txt +0 -0
- {ics_query-0.3.2b0.dist-info → ics_query-0.3.4.dist-info}/licenses/LICENSE +0 -0
ics_query/_version.py
CHANGED
ics_query/version.py
CHANGED
|
@@ -27,15 +27,18 @@ Components:
|
|
|
27
27
|
modules = [
|
|
28
28
|
"recurring-ical-events",
|
|
29
29
|
"icalendar",
|
|
30
|
-
"pytz",
|
|
31
30
|
"python-dateutil",
|
|
31
|
+
"pytz",
|
|
32
32
|
"click",
|
|
33
33
|
"tzdata",
|
|
34
34
|
"x-wr-timezone",
|
|
35
35
|
]
|
|
36
36
|
modules.sort()
|
|
37
37
|
for module in modules:
|
|
38
|
-
|
|
38
|
+
try:
|
|
39
|
+
cli_version += f"{module}: {get_version(module)}\n"
|
|
40
|
+
except ModuleNotFoundError: # noqa: PERF203
|
|
41
|
+
cli_version += f"{module}: not installed\n"
|
|
39
42
|
|
|
40
43
|
__all__ = [
|
|
41
44
|
"__version__",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ics-query
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
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/5eb1d793ecdf1c2b176fb60139226cc8366540a7.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 :: 5 - Production/Stable
|
|
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
|
|
@@ -696,11 +696,14 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
696
696
|
Classifier: Programming Language :: Python :: 3.12
|
|
697
697
|
Classifier: Topic :: Office/Business :: Scheduling
|
|
698
698
|
Requires-Python: >=3.9
|
|
699
|
-
Requires-Dist: click
|
|
700
|
-
Requires-Dist: icalendar
|
|
701
|
-
Requires-Dist:
|
|
702
|
-
Requires-Dist:
|
|
703
|
-
Requires-Dist:
|
|
699
|
+
Requires-Dist: click==8.1.7
|
|
700
|
+
Requires-Dist: icalendar==6.0.0
|
|
701
|
+
Requires-Dist: python-dateutil==2.9.0.post0
|
|
702
|
+
Requires-Dist: recurring-ical-events==3.3.2
|
|
703
|
+
Requires-Dist: six==1.16.0
|
|
704
|
+
Requires-Dist: tzdata==2024.2
|
|
705
|
+
Requires-Dist: tzlocal==5.2
|
|
706
|
+
Requires-Dist: x-wr-timezone==1.0.1
|
|
704
707
|
Provides-Extra: test
|
|
705
708
|
Requires-Dist: pytest; extra == 'test'
|
|
706
709
|
Description-Content-Type: text/markdown
|
|
@@ -736,7 +739,20 @@ For **Windows**, you can download `ics-query.exe` from our [Releases].
|
|
|
736
739
|
We accept donations to sustain our work, once or regular.
|
|
737
740
|
Consider donating money to open-source as everyone benefits.
|
|
738
741
|
|
|
742
|
+
## Supported Features
|
|
739
743
|
|
|
744
|
+
This library is based on
|
|
745
|
+
|
|
746
|
+
- [recurring-ical-events]
|
|
747
|
+
- [icalendar]
|
|
748
|
+
- [x-wr-timezone]
|
|
749
|
+
|
|
750
|
+
[recurring-ical-events]: https://pypi.org/project/recurring-ical-events/
|
|
751
|
+
[icalendar]: https://pypi.org/project/icalendar/
|
|
752
|
+
[x-wr-timezone]: https://pypi.org/project/x-wr-timezone/
|
|
753
|
+
|
|
754
|
+
For a list of supported features and RFC compatibility,
|
|
755
|
+
please refer to their documentation, too.
|
|
740
756
|
|
|
741
757
|
## Usage
|
|
742
758
|
|
|
@@ -744,6 +760,10 @@ Consider donating money to open-source as everyone benefits.
|
|
|
744
760
|
accessible and easy.
|
|
745
761
|
This section walks you though the different functionalities.
|
|
746
762
|
|
|
763
|
+
```shell
|
|
764
|
+
ics-query --help
|
|
765
|
+
```
|
|
766
|
+
|
|
747
767
|
### Examples
|
|
748
768
|
|
|
749
769
|
You can get a calendar from the web and see what is on.
|
|
@@ -1074,6 +1094,19 @@ To release new versions,
|
|
|
1074
1094
|
|
|
1075
1095
|
## Changelog
|
|
1076
1096
|
|
|
1097
|
+
We automatically release the versions that only update dependencies.
|
|
1098
|
+
If the version you installed does not show up here, only the dependencies
|
|
1099
|
+
have been updated.
|
|
1100
|
+
|
|
1101
|
+
- v0.3.4
|
|
1102
|
+
|
|
1103
|
+
- Update dependencies
|
|
1104
|
+
- Start automatic release of dependencies increasing the version number
|
|
1105
|
+
|
|
1106
|
+
- v0.3.3b
|
|
1107
|
+
|
|
1108
|
+
- Update dependencies
|
|
1109
|
+
|
|
1077
1110
|
- v0.3.2b
|
|
1078
1111
|
|
|
1079
1112
|
- Fix that `--tz localtime` would use `localtime` as timezone name instead of the local timezone name.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
ics_query/__init__.py,sha256=BBd-FYDFf3jY_ApkMRkivqGti2uMeP4OT6KtgZDixic,917
|
|
2
2
|
ics_query/__main__.py,sha256=1rFDbZZcd6llmQ-X_611jWdrua4HMOnpOclKRvf03Us,737
|
|
3
|
-
ics_query/_version.py,sha256=
|
|
3
|
+
ics_query/_version.py,sha256=gK2CDe_mbvAwKw5ZjOIg75LuB0kCZ4LyDYjtXPapvJw,411
|
|
4
4
|
ics_query/cli.py,sha256=VPXcSCjtaWZJtSzMsHqLfcTgStnJsoyY9K8Q0VZUs3o,19993
|
|
5
5
|
ics_query/parse.py,sha256=AO2TBoe98exzfzTKsoF5ZAvJOg3hN2qRpP15DAQKZaM,2415
|
|
6
6
|
ics_query/query.py,sha256=9HSSWJ1y7avU6mRDXBQKKTkk9oeG9qEwhr3k0piHbaU,2692
|
|
7
|
-
ics_query/version.py,sha256=
|
|
7
|
+
ics_query/version.py,sha256=GlR3hXBY_p6-SE3WH0_feOgYitLvkgDNHvJAYU4FOCw,1461
|
|
8
8
|
ics_query/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
ics_query/tests/conftest.py,sha256=MmxzXtpXHN3pf8jDmVGXvxcNXfepRwrJ03EF68zRSrY,3668
|
|
10
10
|
ics_query/tests/test_command_line.py,sha256=mB_v-WqjpYRcxtROdi7GfvUGTEHYZ-3Z-sWevp7lFYc,2524
|
|
@@ -37,8 +37,8 @@ ics_query/tests/runs/calendars/recurring-work-events.ics,sha256=4ASS_-xZl2pVv1kZ
|
|
|
37
37
|
ics_query/tests/runs/calendars/simple-journal.ics,sha256=U6_YMQM6EHwPDaszWgJDo-pR4WIqbJx8CRlHg4iu9zA,457
|
|
38
38
|
ics_query/tests/runs/calendars/simple-todo.ics,sha256=l9uHQD4eyiCE8STvd2tj5lAVaBrqUtpF_M8Pv6yf1es,327
|
|
39
39
|
ics_query/tests/runs/calendars/three-events.ics,sha256=YvPfthOzMCR0DQhGR6uj_1Bltgax3uA1ETlkI4JUI08,828
|
|
40
|
-
ics_query-0.3.
|
|
41
|
-
ics_query-0.3.
|
|
42
|
-
ics_query-0.3.
|
|
43
|
-
ics_query-0.3.
|
|
44
|
-
ics_query-0.3.
|
|
40
|
+
ics_query-0.3.4.dist-info/METADATA,sha256=ht9xgKmBSHYxsrP-5taQmy3FQCdHScIUKJEwaD-hk5Q,54394
|
|
41
|
+
ics_query-0.3.4.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
42
|
+
ics_query-0.3.4.dist-info/entry_points.txt,sha256=Jq_39vCKVOkNZjL7Wngf_04V_n_QRszLgLT2CbJKiH4,49
|
|
43
|
+
ics_query-0.3.4.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
44
|
+
ics_query-0.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|