https://github.com/cphyc/conferences
Keep track of conferences in astronomy and astrophysics
https://github.com/cphyc/conferences
Last synced: 15 days ago
JSON representation
Keep track of conferences in astronomy and astrophysics
- Host: GitHub
- URL: https://github.com/cphyc/conferences
- Owner: cphyc
- Created: 2019-11-28T12:43:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-29T10:07:03.000Z (over 6 years ago)
- Last Synced: 2025-02-23T19:15:18.188Z (over 1 year ago)
- Language: Python
- Size: 253 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Query the list of international conferences in astronomy and astrophysics, store them locally and highlight the recently annouced ones.

# Install
Clone the repository, install the requirements and run `conferences.py`.
```
git clone https://github.com/cphyc/conferences.git
cd conferences
pip install -r Requirements.txt
```
# Options
```
usage: conferences.py [-h] [-u] [-f START [START ...]] [-t END [END ...]] [-s]
Interact with conferences from conference-service.com
optional arguments:
-h, --help show this help message and exit
-u, --update Update database.
-f START [START ...], --from START [START ...]
Earliest date when printing (default: now).
-t END [END ...], --to END [END ...]
Latest date when printing.
-s, --silent Do not print conferences.
```
Note that the input format for `-f` and `-t` is *very* flexible. It accepts human-formatted dates, including for example `--to next year`, `--from 31 Dec. 2019`, etc. It relies on the awesome https://github.com/scrapinghub/dateparser for this.