[READ-ONLY] Mirror of https://github.com/shuuji3/mydns-jp-ping. Tiny script to ping ip address to mydns.jp
mydns-jp
0

Configure Feed

Select the types of activity you want to include in your feed.

Add python-dotenv package

+12 -2
+1 -1
.env.sample
··· 1 1 MYDNS_ID = 2 - MYDNS_PASSWORD = 2 + MYDNS_PASSWORD =
+10 -1
poetry.lock
··· 24 24 25 25 [[package]] 26 26 category = "main" 27 + description = "Add .env support to your django/flask apps in development and deployments" 28 + name = "python-dotenv" 29 + optional = false 30 + python-versions = "*" 31 + version = "0.10.3" 32 + 33 + [[package]] 34 + category = "main" 27 35 description = "Python HTTP for Humans." 28 36 name = "requests" 29 37 optional = false ··· 45 53 version = "1.25.3" 46 54 47 55 [metadata] 48 - content-hash = "167785429fb499c6cd42bc0ecc3a911bd415f8c1c939a959eef78580a230ce8b" 56 + content-hash = "f821c28585185d8373973bbb82c31524cd0dc9f47c89bb75dbd8e542157659e0" 49 57 python-versions = "^3.7" 50 58 51 59 [metadata.hashes] 52 60 certifi = ["046832c04d4e752f37383b628bc601a7ea7211496b4638f6514d0e5b9acc4939", "945e3ba63a0b9f577b1395204e13c3a231f9bc0223888be653286534e5873695"] 53 61 chardet = ["84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae", "fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691"] 54 62 idna = ["c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407", "ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c"] 63 + python-dotenv = ["debd928b49dbc2bf68040566f55cdb3252458036464806f4094487244e2a4093", "f157d71d5fec9d4bd5f51c82746b6344dffa680ee85217c123f4a0c8117c4544"] 55 64 requests = ["11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4", "9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31"] 56 65 urllib3 = ["b246607a25ac80bedac05c6f282e3cdaf3afb65420fd024ac94435cabe6e18d1", "dbe59173209418ae49d485b87d1681aefa36252ee85884c31346debd19463232"]
+1
pyproject.toml
··· 8 8 [tool.poetry.dependencies] 9 9 python = "^3.7" 10 10 requests = "^2.22" 11 + python-dotenv = "^0.10.3" 11 12 12 13 [tool.poetry.dev-dependencies] 13 14