Drew Perttula
Drew Perttula
FYE, it seems to almost work to run just this and serve up port 8080: ``` gunicorn -c /opt/apprise/webapp/gunicorn.conf.py -b :8080 --worker-tmp-dir /dev/shm core.wsgi ``` This let me run local...
```py g = Dataset() g.parse(file=Path('fixed_config.n3').open('rt'), format='n3') g.parse(file=Path('ui_selections.n3').open('rt'), format='n3') g.parse(source='http://10.43.160.4/graph/currentEvents', format='trig') for ev in g.quads((cal, EV['event'], None, None)): log.info(f' found an event1 {ev}') for ev in g.objects((cal, EV['event'], None, None)): log.info(f'...
## Describe the bug In files.replace, my regex doesn't match , so sed is never run. Also, my flag isn't passed to grep. ## To Reproduce What I ran: ```...