Skip to main content

A GitHub API. Extracts data from GitHub into json style data.

Project description

⚠️ CAUTION: Note that this is a WIP, and is not yet perfected. There will be errors, and it would be appreciated if you let us know about it. ⚠️

**Version: 1.5.0

Contributors Forks Stargazers Issues License Downloads on PyPI

GitAPI: An API made for GitHub Stats!

Coded in Python3, uploaded to PyPi, and coded by JBYT27

About

About

GitAPI is an API made with python - styled with json - to make the data preferably easier to use. It is made up of posting json requests, and retrieving that data from a function, and transfering that data into an output, in which you can use.

This API is designed to show GitHub stats for certain users, or viewing GitHub itself, in data form.

To learn how to use it, you can read the Usage header below.

Languages used

Languages used to program this package were: Python3

Queries

Not all of the GitHub queries are in here, but if you wish to see all of them, go to this GitHub docs.

Contributers

  • darkdarcool: More professionalized file-ing and helping with more GitHub Queries.
  • Isaiah08-D: Adding comments, and letting us know of bug.
  • jwodder: Finding the solution to the bug.

Usage

Installation

To install and use the package, you must first:

pip install git_api

This will install the package - git_api(GitAPI) - and then you will be able to use it.

To then import it, you must put the following code:

import git_api

OR

import git_api as gitapi

OR

from git_api import *

For more information, go here.

Note that all of these methods work.

Usage

To use this package, first import it as shown above. Then create a python file - name it whatever you want, it doesn't matter.

Once you're done with that, open the file, and add the following example code:

import git_api

git_api.Token() # We'll place the personal access token here later on. For now, it'll be empty.
user_info = git_api.User("Username here").User() # Insert your username in the argument shown here.

print(user_info)

You've done it! But wait - it doesn't work, it only gives an error! The reason for this is that -

NUMBER 1: You need a personal access token which we'll discuss in a moment.

NUMBER 2: You need to have a GitHub username in mind and place it in the assigned space.

Let's start with number 1, creating the token.

1: The Token

To first create a token, you must create or use an existing GitHub account. If you already have a GitHub account, you can move on to the next section. However, if you are creating a new GitHub account, follow the instructions below:

#1: Go to https://github.com and click sign up.

#2: Once you've clicked that, just follow the instructions shown on the page.

#3: Then after that, you can either get used to GitHub and do this later, or do this immediately; Go to this document and read it thoroughly, as it holds the information to creating a personal token. Choose the categories you think will best fit for your project and finish up with the token.

#4: Note that this token should be kept private and not shared. If you are positive that this token will be private, then you can just copy and paste the token into a string (inside parentheses), and insert it into the token argument space. However, if you know that this will be shown to the public, create a .env file, and paste the token inside there. Make sure you make it a variable, for example, like this:

token=blahblahblah

Also note that you can only copy the token once, so check that you actually copied down the token. Go back into your python file and copy/paste down the following code into the assigned space;

os.environ["token"] # Insert your .env variable here

#5: Then you're pretty much done! Your final code example should look something like this:

2: Finale

import git_api

git_api.Token(os.environ["token"])
user_info = git_api.User("JBYT27").User()

print(user_info)

This will print some of the user's information.

Contributing

Contributing will be listed mostly in the Code of Conduct, however for more info, visit the Contributing readme.

License

This package is under the MIT License.

Features:

  • Add basic features for User() class
  • Add advanced features for User() class
  • Add basic functions for GitHub() class
  • Add advanced functions for GitHub() class
  • Add basic functions in package
  • Add documentary for package

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

git_api-1.5.0.tar.gz (6.5 kB view hashes)

Uploaded Source

Built Distribution

git_api-1.5.0-py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page