New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

octopype

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

octopype

GitHub API Wrapper written in Python.

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

Octopype

What is Octopype?

Octopype is a Wrapper for the GitHub API written in Python using the requests library.
The focus is on making it simple for the user and filling every niche with the features, that the GitHub API offers.

Disclaimer

Octopype is still in Early Development and it does not have many features yet!

Installing

pip install octopype

Basic tutorials

1. Getting your Github bio.

import octopype

github = octopype.OctoPype("INSERT TOKEN HERE")
print("My GitHub Bio is: " + github.account.info().bio)

2. Getting the name of a repository owner

import octopype

github = octopype.OctoPype("INSERT TOKEN HERE")
print("The owner of Octopype's repository is: " + github.repository.getrepository("BLUEAMETHYST-Studios", "octopype").owner.name)

3. Updating your display name

import octopype

github = octopype.OctoPype("INSERT TOKEN HERE")
github.account.update.display_name("OctoPype") # Will set your display name to 'OctoPype'

License

Octopype by BLUEAMETHYST-Studios is licensed under the GNU GENERAL PUBLIC LICENSE Version 3.
To view the full license, click here.

Keywords

FAQs


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc