All Projects → jplattel → Pymoves

jplattel / Pymoves

PyMoves

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pymoves

Requester
Powerful, modern HTTP/REST client built on top of the Requests library
Stars: ✭ 273 (+396.36%)
Mutual labels:  api, requests
Php Curl Class
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs
Stars: ✭ 2,903 (+5178.18%)
Mutual labels:  api, requests
Rmapy
A unofficial python module for interacting with the Remarkable Cloud
Stars: ✭ 58 (+5.45%)
Mutual labels:  api, requests
Opensourcetest
OpenSourceTest由自动化测试-夜行者社区维护,提供的是更多地灵活性和可配置性
Stars: ✭ 37 (-32.73%)
Mutual labels:  api, requests
Lofocats ui
LofoCats UI is a simple web application consuming the LofoCats API, built with Ruby on Rails 🐱
Stars: ✭ 54 (-1.82%)
Mutual labels:  api
Modio Unity
Unity Plugin for integrating mod.io - a modding API for game developers
Stars: ✭ 53 (-3.64%)
Mutual labels:  api
Ebook Building An Api Backend With Microprofile
Building an API Backend with MicroProfile
Stars: ✭ 53 (-3.64%)
Mutual labels:  api
Trueopenvr Core
Core, docs
Stars: ✭ 52 (-5.45%)
Mutual labels:  api
Jsonapi
[Bolt Extension] JSON API for Bolt CMS
Stars: ✭ 55 (+0%)
Mutual labels:  api
Serie Api Rest Node
Código da série de API REST com NodeJS no Youtube
Stars: ✭ 55 (+0%)
Mutual labels:  api
Simple Salesforce
A very simple Salesforce.com REST API client for Python
Stars: ✭ 1,072 (+1849.09%)
Mutual labels:  api
Cakephp Api
API Plugin for CakePHP
Stars: ✭ 53 (-3.64%)
Mutual labels:  api
Easyjson
Provides an unified JSON access API, you can adapter any JSON library to Gson, Jackson, FastJson with easyjson。 提供了一个JSON门面库,就像slf4j一样。easyjson本身不做json的操作,完全依赖于底层实现库。可以直接使用Easyjson的API,底层的JSON库随时可切换。也可以使用其中某个json的API,然后通过easyjson适配给其他的json库
Stars: ✭ 54 (-1.82%)
Mutual labels:  api
Json Api Dart
JSON:API client for Dart/Flutter
Stars: ✭ 53 (-3.64%)
Mutual labels:  api
Dsc Mercado Livre
Biblioteca de integração com o Mercado Livre
Stars: ✭ 55 (+0%)
Mutual labels:  api
Rest Layer
REST Layer, Go (golang) REST API framework
Stars: ✭ 1,068 (+1841.82%)
Mutual labels:  api
Ynab Sdk Ruby
YNAB API Ruby Library
Stars: ✭ 54 (-1.82%)
Mutual labels:  api
Githubapi
Swift implementation of Github REST API v3
Stars: ✭ 55 (+0%)
Mutual labels:  api
Lara Vue Auth
A repo for laravel vue authentication tutorial.
Stars: ✭ 54 (-1.82%)
Mutual labels:  api
Gopay Php Api
GoPay's PHP SDK for Payments REST API
Stars: ✭ 53 (-3.64%)
Mutual labels:  api

PyMoves, a python library for the Moves App API

Dependencies

The only dependency of this library is Requests.

Example Usage

from moves import Moves
m = Moves()

Get a request token URL:

request_url = m.request_url()

Open the Moves app and enter the PIN, then you will be redirected the url specified in for the app. The next step is to use the code to get and access token:

access_token = m.auth(code)

If you have an access token you can make requests like:

m.get_profile(access_token)

This will fetch all user info. Other requests are also build in, but beware of the range requests as they have a limit of 7 days.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].