Giter Site home page Giter Site logo

vkauth's Introduction

VKAuth

Authorization on VK for humans

VKAuth is a lightweight flexible module for you to easily get an access_token for your application, which uses VK API. This module is written in python 3.5.

Usage

  1. import the module into your project
  2. Create new class instance with appropriate parameters. Call auth() method to start connection and get access_token and user_id. That's it!

Class parameters:

  1. Required
  • permissions: list - permissions your app wants to get
  • app_id: string - id of your app
  • api_v: string - VK API version
  1. Optional
  • email: string - email to log in with | default: None
  • pswd: string - password for account with email | default: None
  • two_factor_auth: bool - whether to use two-factor authentication or not | default: False
  • security_code: string - code to log in with in case of two-factor auth. | default: None
  • auto_access: bool - whether to allow to grant access to permissions automatically (needed only once) | default: True
vk = VKAuth(['photos'], '123123', '5.52')
vk.auth()

access_token = vk.get_token()
user_id = vk.get_user_id()

# your code goes here

Features

  • Ease of use
  • Works great with two-factor authentication: set two_factor_auth=True and provide the security_code at initialization time or enter when prompted
  • Provide email and passwords at initialization time or be prompted to enter them
  • Exception handling and responsiveness

Dependencies

If you find bugs or have suggestions about improving the module, don't hesitate to contact me.

vkauth's People

Contributors

goodmove avatar okthought avatar

Watchers

James Cloos 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.