blob: 70802876a33bed225608e8247e5359c59e38ce54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
Meetup Find Events RSS
======================
Generates an RSS feed of upcoming events on [Meetup][1]. This makes it easier to
be informed of meetups even in groups you don’t participate in.
The program is designed to run locally at a recurring interval (via `cron` or
`launchd` for example), generating an XML feed file.
## Usage
The following shell script generates a new feed and writes it to the
`meetup-upcoming.xml` file:
#!/bin/sh
meetup-find-events-rss \
--meetup-api-token YOUR_TOKEN \
--latitude 48.8692 \
--longitude 2.34777 \
--end-date 2018-04-15 \
> ~/meetup-upcoming.xml
A Meetup API token can be obtained from [TODO][2].
## Example
Here's a demonstration of the result of the above script in Newsboat.
echo '~/meetup-upcoming.xml' >> ~/.newsboat/urls
[TODO demo gif]
## Install
A binary built for Mac OS X is available on the [releases][3] page. Download the
binary and put it in your `PATH`.
To compile from source:
$ cargo install --git https://github.com/teddywing/meetup-find-events-rss.git --root /usr/local
## Uninstall
$ cargo uninstall --root /usr/local meetup-find-events-rss
## License
Copyright © 2018 Teddy Wing. Licensed under the GNU GPLv3+ (see the included
COPYING file).
[1]: https://www.meetup.com/
[2]: TODO
[3]: https://github.com/teddywing/meetup-find-events-rss/releases
|