https://github.com/dkatz23238/pybot-log
pybot logging REST API
https://github.com/dkatz23238/pybot-log
Last synced: 3 months ago
JSON representation
pybot logging REST API
- Host: GitHub
- URL: https://github.com/dkatz23238/pybot-log
- Owner: dkatz23238
- Created: 2019-04-09T02:06:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T19:05:55.000Z (about 6 years ago)
- Last Synced: 2025-01-19T08:28:10.214Z (4 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pybot-log: Flask REST + PSQL
``` docker-compose up -d```
# Endpoints
## /api/bots
``` python
{'creation_date': '2019-04-08T23:01:24.880394',
'rpa_id': '5abcab29-5a3b-48d8-b1e3-86395279e5c7',
'rpa_name': 'NewTestRobot001'}
```- GET
- POST
- DELETE## /api/logs
``` python
{'idx': 0,
'log_id': 'fa8e0efa-6844-4219-8f9c-a02b2c3b13dc',
'message': 'This is a test message',
'rpa_id': '5abcab29-5a3b-48d8-b1e3-86395279e5c7',
'tag': 'test',
'timestamp': '2019-04-08T23:02:26.952311',
'tz': 'EST'}
```- GET
- POST
- DELETE