Coder Social home page Coder Social logo

preston's Introduction

Preston

CI codecov Python version Code style: black License

Preston is a Python library for accessing EVE Online's ESI API.

Quick links

Installation

From pip:

pip install preston

Initialization

from preston import Preston

preston = Preston()

There are values that you can pass to __init__ as kwargs; those are detailed in the docstring for the class.

Usage

There are 3 main things that Preston does:

  1. Unauthenticated calls to ESI
  2. User authentication
  3. Authenticated calls to ESI for that user

For #1, all you need to do is initialize a Preston object and make the call:

preston = Preston(
    user_agent='some_user_agent'
)

data = preston.get_op('get_characters_character_id', character_id=91316135)
# ...

You should always include a good user_agent.

Additionally, a post_op method exists, that takes a dictionary (instead of **kwargs) and another parameter; the former is used like above, to satisfy the URL parameters, and the latter is sent to the ESI endpoint as the payloadd.

For #2, there are 2 methods that you'll need, get_authorize_url and authenticate, and several __init__ kwargs.

preston = Preston(
    user_agent='some_user_agent',
    client_id='something',
    client_secret='something',
    callback_url='something',
    scope='maybe_something',
)

You can find the last 4 values in your application on the EVE Dev site.

When you have a Preston instance constructed like this, you can make the call to get_authorize_url:

preston.get_authorize_url()
# https://login.eveonline.com/oauth/...

This is the URL that your user needs to visit and complete the flow. They'll be redirected to your app's callback URL, so you have to be monitoring that.

When you get their callback, take the code paramter from the URL and pass it to authenticate:

auth = preston.authenticate('their_code_here')

Note the return variable and it's reassignment: this method returns a new instance, with the corresponding variables and headers setup for authenticated ESI calls.

Finally for #3, having followed the steps above, you just make calls like previously, but you can do so to the authenticated-only endpoints. Make sure that if you're calling an endpoint that requires a specific scope, your app on EVE Devs has that scoped added and you've supplied it to the Preston initialization.

Resuming authentication

If your app uses scopes, it'll receive a refresh_token alongside the access_token. The access token, per usual, only lasts 20 minutes before it expires. In this situation, the refresh token can be used to get a new access token. If your Preston instance has a refresh token, this will be done automatically when the access token expires.

You can also get this refresh token from the Preston instance with token = preston.refresh_token. This can be then stored somewhere (securely) and used again later by passing the token to Preston's constructor:

preston = Preston(
    user_agent='some_user_agent',
    client_id='something',
    client_secret='something',
    callback_url='something',
    scope='maybe_something',
    refresh_token='your_token_here'
)

Preston will take the refresh token and attempt to get a new access token from it.

On that note, you can also pass the access_token to a new Preston instance, but there's less of a use case for that, as either you have an app with scopes, yielding a refresh token, or an authentication-only app where you only use the access token to verify identity and some basic information before moving on.

Developing

Building

Requirements

  • Git
  • Poetry
  • Python 3.8+

Steps

git clone https://github.com/Celeo/preston
cd preston
poetry install

Running tests

No coverage poetry run pytest
Coverage printout poetry run pytest --cov=preston
Coverage report poetry run pytest --cov=preston --cov-report=html

License

Licensed under MIT (LICENSE).

Contributing

PRs are welcome. Please follow PEP8 (I'm lenient on E501) and use Google-style docstrings.

preston's People

Contributors

celeo avatar dependabot[bot] avatar billypoke avatar welstiel avatar sergey-koumirov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.