Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Yes, Agha is another GitHub API library for Python 2.x development.
Support basic CRUD operations throw the official REST API v3: http://developer.github.com/v3/
Example:
.. code:: python
from agha import GitHubApi
api = GitHubApi("myuser", "mypass")
# Create a repository
api.create_repo({'name': 'mytestrepo1', 'description': 'Github Test 1', 'auto_init': True}
# Edit the repo description
api.edit_myrepo("mytestrepo1", {'description': 'Another description for my repo'})
# List my repositories
for repo in api.get_myrepos():
print "NAME: %(name)s, DESCRIPTION: %(description)s, URL: %(html_url)s" % repo
# Delete the repo
api.delete_myrepo("mytestrepo1")
print "USER: %(login)s, NAME: %(name)s, EMAIL: %(email)s" % api.get_myprofile()
This source code is available in https://github.com/mrsarm/python-agha
Developed by Mariano Ruiz mrsarm@gmail.com
License: LGPL-3 (C) 2014
FAQs
Agha, Another GitHub API
We found that agha demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.