|
1288 | 1288 | "is_local_path": null |
1289 | 1289 | } |
1290 | 1290 | }, |
1291 | | - { |
1292 | | - "purl": "pkg:pypi/tinynetrc@1.3.1", |
1293 | | - "extracted_requirement": "tinynetrc==1.3.1", |
1294 | | - "scope": "install", |
1295 | | - "is_runtime": true, |
1296 | | - "is_optional": false, |
1297 | | - "is_resolved": true, |
1298 | | - "resolved_package": {}, |
1299 | | - "extra_data": { |
1300 | | - "is_editable": false, |
1301 | | - "link": null, |
1302 | | - "hash_options": [], |
1303 | | - "is_constraint": false, |
1304 | | - "is_archive": null, |
1305 | | - "is_wheel": false, |
1306 | | - "is_url": null, |
1307 | | - "is_vcs_url": null, |
1308 | | - "is_name_at_url": false, |
1309 | | - "is_local_path": null |
1310 | | - } |
1311 | | - }, |
1312 | 1291 | { |
1313 | 1292 | "purl": "pkg:pypi/toml@0.10.2", |
1314 | 1293 | "extracted_requirement": "toml==0.10.2", |
|
9211 | 9190 | "datasource_id": null, |
9212 | 9191 | "purl": "pkg:pypi/text-unidecode@1.3" |
9213 | 9192 | }, |
9214 | | - { |
9215 | | - "type": "pypi", |
9216 | | - "namespace": null, |
9217 | | - "name": "tinynetrc", |
9218 | | - "version": "1.3.1", |
9219 | | - "qualifiers": {}, |
9220 | | - "subpath": null, |
9221 | | - "primary_language": "Python", |
9222 | | - "description": "Read and write .netrc files.\n*********\ntinynetrc\n*********\n\n.. image:: https://badgen.net/pypi/v/tinynetrc\n :alt: pypi badge\n :target: https://pypi.org/project/tinynetrc/\n\n.. image:: https://badgen.net/travis/sloria/tinynetrc/master\n :alt: travis-ci status\n :target: https://travis-ci.org/sloria/tinynetrc\n\nRead and write .netrc files in Python.\n\n\n``tinynetrc`` uses the `netrc <https://docs.python.org/3/library/netrc.html>`_\nmodule from the standard library under the hood and adds a few\nimprovements:\n\n* Adds write functionality.\n* Fixes a std lib `bug <https://bugs.python.org/issue30806>`_ with\n formatting a .netrc file.*\n* Parses .netrc into dictionary values rather than tuples.\n\n\\*This bug is fixed in newer versions of Python.\n\nGet it now\n==========\n::\n\n pip install tinynetrc\n\n\n``tinynetrc`` supports Python >= 2.7 or >= 3.5.\n\nUsage\n=====\n\n.. code-block:: python\n\n from tinynetrc import Netrc\n\n netrc = Netrc() # parse ~/.netrc\n # Get credentials\n netrc['api.heroku.com']['login']\n netrc['api.heroku.com']['password']\n\n # Modify an existing entry\n netrc['api.heroku.com']['password'] = 'newpassword'\n netrc.save() # writes to ~/.netrc\n\n # Add a new entry\n netrc['surge.surge.sh'] = {\n 'login': 'sloria1@gmail.com',\n 'password': 'secret'\n }\n netrc.save()\n\n # Removing an new entry\n del netrc['surge.surge.sh']\n netrc.save()\n\n\nYou can also use ``Netrc`` as a context manager, which will automatically save\n``~/.netrc``.\n\n.. code-block:: python\n\n from tinynetrc import Netrc\n with Netrc() as netrc:\n netrc['api.heroku.com']['password'] = 'newpassword'\n assert netrc.is_dirty is True\n # saved!\n\nLicense\n=======\n\nMIT licensed. See the bundled `LICENSE <https://github.com/sloria/tinynetrc/blob/master/LICENSE>`_ file for more details.", |
9223 | | - "release_date": "2021-08-15T18:24:11", |
9224 | | - "parties": [ |
9225 | | - { |
9226 | | - "type": "person", |
9227 | | - "role": "author", |
9228 | | - "name": "Steven Loria", |
9229 | | - "email": "sloria1@gmail.com", |
9230 | | - "url": null |
9231 | | - } |
9232 | | - ], |
9233 | | - "keywords": [ |
9234 | | - "netrc posix", |
9235 | | - "Intended Audience :: Developers", |
9236 | | - "Programming Language :: Python :: 2", |
9237 | | - "Programming Language :: Python :: 2.7", |
9238 | | - "Programming Language :: Python :: 3", |
9239 | | - "Programming Language :: Python :: 3.5", |
9240 | | - "Programming Language :: Python :: 3.6", |
9241 | | - "Programming Language :: Python :: 3.7", |
9242 | | - "Programming Language :: Python :: Implementation :: CPython" |
9243 | | - ], |
9244 | | - "homepage_url": "https://github.com/sloria/tinynetrc", |
9245 | | - "download_url": "https://files.pythonhosted.org/packages/eb/0b/633691d7cea5129afa622869485d1985b038df1d3597a35848731d106762/tinynetrc-1.3.1-py2.py3-none-any.whl", |
9246 | | - "size": 3949, |
9247 | | - "sha1": null, |
9248 | | - "md5": "28d05be7ca8510cc65ae358f64bf33fc", |
9249 | | - "sha256": "46c7820e5f49c9434d2c4cd74de8a06edbbd45e63a8a2980a90b8a43db8facf7", |
9250 | | - "sha512": null, |
9251 | | - "bug_tracking_url": null, |
9252 | | - "code_view_url": null, |
9253 | | - "vcs_url": null, |
9254 | | - "copyright": null, |
9255 | | - "license_expression": null, |
9256 | | - "declared_license": { |
9257 | | - "license": "MIT", |
9258 | | - "classifiers": [ |
9259 | | - "License :: OSI Approved :: MIT License" |
9260 | | - ] |
9261 | | - }, |
9262 | | - "notice_text": null, |
9263 | | - "source_packages": [], |
9264 | | - "file_references": [], |
9265 | | - "extra_data": {}, |
9266 | | - "dependencies": [], |
9267 | | - "repository_homepage_url": null, |
9268 | | - "repository_download_url": null, |
9269 | | - "api_data_url": "https://pypi.org/pypi/tinynetrc/1.3.1/json", |
9270 | | - "datasource_id": null, |
9271 | | - "purl": "pkg:pypi/tinynetrc@1.3.1" |
9272 | | - }, |
9273 | | - { |
9274 | | - "type": "pypi", |
9275 | | - "namespace": null, |
9276 | | - "name": "tinynetrc", |
9277 | | - "version": "1.3.1", |
9278 | | - "qualifiers": {}, |
9279 | | - "subpath": null, |
9280 | | - "primary_language": "Python", |
9281 | | - "description": "Read and write .netrc files.\n*********\ntinynetrc\n*********\n\n.. image:: https://badgen.net/pypi/v/tinynetrc\n :alt: pypi badge\n :target: https://pypi.org/project/tinynetrc/\n\n.. image:: https://badgen.net/travis/sloria/tinynetrc/master\n :alt: travis-ci status\n :target: https://travis-ci.org/sloria/tinynetrc\n\nRead and write .netrc files in Python.\n\n\n``tinynetrc`` uses the `netrc <https://docs.python.org/3/library/netrc.html>`_\nmodule from the standard library under the hood and adds a few\nimprovements:\n\n* Adds write functionality.\n* Fixes a std lib `bug <https://bugs.python.org/issue30806>`_ with\n formatting a .netrc file.*\n* Parses .netrc into dictionary values rather than tuples.\n\n\\*This bug is fixed in newer versions of Python.\n\nGet it now\n==========\n::\n\n pip install tinynetrc\n\n\n``tinynetrc`` supports Python >= 2.7 or >= 3.5.\n\nUsage\n=====\n\n.. code-block:: python\n\n from tinynetrc import Netrc\n\n netrc = Netrc() # parse ~/.netrc\n # Get credentials\n netrc['api.heroku.com']['login']\n netrc['api.heroku.com']['password']\n\n # Modify an existing entry\n netrc['api.heroku.com']['password'] = 'newpassword'\n netrc.save() # writes to ~/.netrc\n\n # Add a new entry\n netrc['surge.surge.sh'] = {\n 'login': 'sloria1@gmail.com',\n 'password': 'secret'\n }\n netrc.save()\n\n # Removing an new entry\n del netrc['surge.surge.sh']\n netrc.save()\n\n\nYou can also use ``Netrc`` as a context manager, which will automatically save\n``~/.netrc``.\n\n.. code-block:: python\n\n from tinynetrc import Netrc\n with Netrc() as netrc:\n netrc['api.heroku.com']['password'] = 'newpassword'\n assert netrc.is_dirty is True\n # saved!\n\nLicense\n=======\n\nMIT licensed. See the bundled `LICENSE <https://github.com/sloria/tinynetrc/blob/master/LICENSE>`_ file for more details.", |
9282 | | - "release_date": "2021-08-15T18:24:13", |
9283 | | - "parties": [ |
9284 | | - { |
9285 | | - "type": "person", |
9286 | | - "role": "author", |
9287 | | - "name": "Steven Loria", |
9288 | | - "email": "sloria1@gmail.com", |
9289 | | - "url": null |
9290 | | - } |
9291 | | - ], |
9292 | | - "keywords": [ |
9293 | | - "netrc posix", |
9294 | | - "Intended Audience :: Developers", |
9295 | | - "Programming Language :: Python :: 2", |
9296 | | - "Programming Language :: Python :: 2.7", |
9297 | | - "Programming Language :: Python :: 3", |
9298 | | - "Programming Language :: Python :: 3.5", |
9299 | | - "Programming Language :: Python :: 3.6", |
9300 | | - "Programming Language :: Python :: 3.7", |
9301 | | - "Programming Language :: Python :: Implementation :: CPython" |
9302 | | - ], |
9303 | | - "homepage_url": "https://github.com/sloria/tinynetrc", |
9304 | | - "download_url": "https://files.pythonhosted.org/packages/87/8f/6df2414a8f38b08836726986437f7612983f25c6dc3c55c66f4850a3d795/tinynetrc-1.3.1.tar.gz", |
9305 | | - "size": 5484, |
9306 | | - "sha1": null, |
9307 | | - "md5": "b21d4536898ac3a106c5dfc156823d05", |
9308 | | - "sha256": "2b9a256d2e630643b8f0985f5e826ccf0bf3716e07e596a4f67feab363d254df", |
9309 | | - "sha512": null, |
9310 | | - "bug_tracking_url": null, |
9311 | | - "code_view_url": null, |
9312 | | - "vcs_url": null, |
9313 | | - "copyright": null, |
9314 | | - "license_expression": null, |
9315 | | - "declared_license": { |
9316 | | - "license": "MIT", |
9317 | | - "classifiers": [ |
9318 | | - "License :: OSI Approved :: MIT License" |
9319 | | - ] |
9320 | | - }, |
9321 | | - "notice_text": null, |
9322 | | - "source_packages": [], |
9323 | | - "file_references": [], |
9324 | | - "extra_data": {}, |
9325 | | - "dependencies": [], |
9326 | | - "repository_homepage_url": null, |
9327 | | - "repository_download_url": null, |
9328 | | - "api_data_url": "https://pypi.org/pypi/tinynetrc/1.3.1/json", |
9329 | | - "datasource_id": null, |
9330 | | - "purl": "pkg:pypi/tinynetrc@1.3.1" |
9331 | | - }, |
9332 | 9193 | { |
9333 | 9194 | "type": "pypi", |
9334 | 9195 | "namespace": null, |
|
11089 | 10950 | "installed_version": "0.8.1", |
11090 | 10951 | "dependencies": [] |
11091 | 10952 | }, |
11092 | | - { |
11093 | | - "key": "tinynetrc", |
11094 | | - "package_name": "tinynetrc", |
11095 | | - "installed_version": "1.3.1", |
11096 | | - "dependencies": [] |
11097 | | - }, |
11098 | 10953 | { |
11099 | 10954 | "key": "twine", |
11100 | 10955 | "package_name": "twine", |
|
0 commit comments