pydexcom VS cgm-remote-monitor

Compare pydexcom vs cgm-remote-monitor and see what are their differences.

pydexcom

A simple Python API to interact with Dexcom Share service (by gagebenne)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
pydexcom cgm-remote-monitor
9 10
129 2,327
- 1.0%
7.5 7.2
7 months ago 7 days ago
Python JavaScript
MIT License GNU Affero General Public License v3.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pydexcom

Posts with mentions or reviews of pydexcom. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-09.

cgm-remote-monitor

Posts with mentions or reviews of cgm-remote-monitor. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-01.
  • Pixel can't save me..
    1 project | /r/GooglePixel | 10 May 2023
    https://xdrip.readthedocs.io/en/latest/ https://github.com/nightscout/cgm-remote-monitor https://androidaps.readthedocs.io/en/latest/index.html#
  • Are any C# coders here?
    10 projects | /r/dexcom | 1 May 2023
    Don't waste too much time doing things from the ground up. There are already a few projects that do this sort of thing. Take a look at the nightscout project. https://github.com/nightscout/cgm-remote-monitor
  • apps that changed your life
    22 projects | /r/selfhosted | 16 Jan 2023
    Nightscout for monitoring blood glucose levels: https://github.com/nightscout/cgm-remote-monitor
  • Nightscout – personal blood glucose monitoring as a service
    1 project | news.ycombinator.com | 25 Aug 2022
  • That sucks...Anyone have any free alternatives to Heroku for Nightscout?
    2 projects | /r/nightscout | 25 Aug 2022
    INSECURE_USE_HTTP: 'true' MONGO_CONNECTION: mongodb://mongo:27017/nightscout # CHANGEME below to a secret passphrase that is at least 12 characters long (this is your top secret password to get in) API_SECRET: CHANGEME # CHANGEMEs below: See https://github.com/nightscout/cgm-remote-monitor#plugins for options. To preserve my original config, I've left in my options and just removed stuff that has to be changed. Note that I'm using the Dexcom bridge. DISPLAY_UNITS: CHANGEME ENABLE: careportal boluscalc food bwp cage sage iage iob cob basal ar2 rawbg pushover bgi pump openaps bridge BRIDGE_SERVER: CHANGEME BRIDGE_USER_NAME: CHANGEME BRIDGE_PASSWORD: CHANGEME DEVICESTATUS_ADVANCED: true PUMP_FIELDS: reservoir battery clock PUMP_URGENT_BATT_P: 26 PUMP_WARN_BATT_P: 51 SHOW_FORECAST: openaps AUTH_DEFAULT_ROLES: denied
  • Heroku Ending Free Tier
    9 projects | /r/programming | 25 Aug 2022
    Any free alternatives? Lots of diabetics like myself use the Heroku free plan to run Nightscout.
  • Heroku's Next Chapter
    12 projects | news.ycombinator.com | 25 Aug 2022
    There are 66K thousand forks of https://github.com/nightscout/cgm-remote-monitor and I suspect the vast majority are using the free heroku version, so I would guess there are going to be quite a few unhappy diabetics!
  • Error when deploying heroku app
    2 projects | /r/mongodb | 19 Feb 2022
    This error is displayed when trying to deploy this app from github - https://github.com/nightscout/cgm-remote-monitor
  • Turn your Freestyle FGM into CGM
    1 project | /r/diabetes_t1 | 1 Sep 2021
    I like to add that this becomes even more powerful in combination with nightscout. https://github.com/nightscout/cgm-remote-monitor
  • Install NightScout inside a VM
    1 project | /r/diabetes | 15 Mar 2021
    Install NightScout on VM: Ubuntu server 20.04 LTS NOTICE: If you do not have your own web page or static IP, you can user no-ip.com to register a web address. PLEASE READ THE INSTRUCTIONS WITH CARE. THERE ARE PLACES IN CONFIGURATION THAT NEED TO BE REPLACED WITH SPECIFIC VALUE. ------------------------------- ------- PREPARING ENV --------- ------------------------------- 1. Download and install mongoDB: sudo apt install mongodb 2. Install Node.js & GIT sudo apt-get install nodejs npm git 3. install nginx sudo apt-get install nginx 4. Install LetsEncrypt sudo apt-get install letsencrypt python3-certbot-nginx ------------------------------- ---- SETUP MONGO DB------------ ------------------------------- 1. enter mongodb: mongo 2. run following commands to create admin user > use admin > db.createUser( { user: "myUserAdmin", pwd: passwordPrompt(), // or cleartext password roles: [ { role: "userAdminAnyDatabase", db: "admin" }, "readWriteAnyDatabase" ] } ) > exit 3. edit mongodb config to enable authentication: sudo nano /etc/mongodb.conf 4. find the auth=true and uncomment it (delete '#'). Save the document 5. restart mongodb service: sudo systemctl restart mongodb ------------------------------- ---- SETUP NIGHTSCOUT --------- ------------------------------- 1. Go to home folder and clone NightScout repository: git clone https://github.com/nightscout/cgm-remote-monitor.git 2. Enter that directory and create a new file. that file will be used as a startup script: cd cgm-remote-monitor vi start.sh 3. Put the following: #!/usr/bin/bash # environment variables export DISPLAY_UNITS="mg/dl" export MONGO_CONNECTION="mongodb://username:password@localhost:27017/Nightscout?authSource=admin" export BASE_URL="https://YOUR.WEBPAGE.URL" export PORT=1234 export API_SECRET="PUT SOME PASSWORD HERE" export PUMP_FIELDS="reservoir battery status" export DEVICESTATUS_ADVANCED=true export ENABLE="careportal iob cob openaps pump bwg rawbg basal" export TIME_FORMAT=24 # start server node server.js 4. Save file. 5. make file executable: chmod a+x start.sh 6. check if it's working: sudo ./start.sh 7. if everything is ok, let's create a service. Create a new file: sudo vi /etc/systemd/system/nightscout.service 8. Paste the following: [Unit] Description=Nightscout Service After=network.target [Service] Type=simple WorkingDirectory=/your/nightscout/path/cgm-remote-monitor ExecStart=/your/nightscout/path/cgm-remote-monitor/start.sh [Install] WantedBy=multi-user.target 9. Save file and reload daemon: sudo systemctl daemon-reload 10. Start the service and enable it sudo systemctl enable nightscout.service sudo systemctl start nightscout.service ------------------------------- ------- SETUP NGINX ----------- ------------------------------- NGINX will be used as a reverse proxy. 1. stop the nginx service: sudo systemctl stop nginx 2. open /etc/nginx/sites-enabled/default file, delete everything in it and paste the following: sudo vi /etc/nginx/sites-enabled/default server { listen 80; server_name YOUR_WEB_ADDRESS_LIKE_cgm.ddns.net; location / { proxy_pass http://127.0.0.1:1234; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } } 3. save file and start nginx: sudo systemctl start nginx 4. open the following ports on your router: 80 443 ------------------------------- ----- SETUP CERTIFICATES ------ ------------------------------- 1. run certbot to install certificates on your nginx sudo certbot --nginx -d YOUR_WEB_ADDRESS_LIKE_cgm.ddns.net 2. Enter you email address, Agree to Terms and It will ask you if you want to redirect all traffic from HTTP to HTTPS. Select yes (2). This automatically makes some changes to our NGINX default configuration. you can check new configuration by running: cat /etc/nginx/sites-enabled/default 3. it will also automatically install renewal of certificates. ------------------------- --- setup XDRIP------- ------------------------- In your xDrip+ go to Settings --> Cloud Upload-> NightScout Rest API Set following URL: https://API_SECRET_CODE@YOUR_WEB_PAGE/api/v1 enable synchronization. AND THAT'S IT.

What are some alternatives?

When comparing pydexcom and cgm-remote-monitor you can also consider the following projects:

exabgp - The BGP swiss army knife of networking

roadmap - This is the public roadmap for Salesforce Heroku services.

pipx - Install and Run Python Applications in Isolated Environments

flyctl - Command line tools for fly.io services

cgmMonitor - An update to my cgm_monitor

MonitoRSS-Clone - Repo to deploy the news-delivering bot MonitoRSS (formerly known as Discord.RSS)

Dexcom.API - Access to the Dexcom API to build a diabetes app

Dokku - A docker-powered PaaS that helps you build and manage the lifecycle of applications

MMM-SugarValue - Unofficial Magic Mirror module for Dexcom G6

chisel - A fast TCP/UDP tunnel over HTTP

GlucoseViewer - macOS toolbar glucose viewer

create-t3-app - The best way to start a full-stack, typesafe Next.js app