An extremely basic API client for the Wyscout API for Python

wyscoutapi is an extremely basic API client for the Wyscout API (v2 & v3). Usage Install with pip install wyscoutapi. To connect to the Wyscout v3 api: import wyscoutapi client = wyscoutapi.WyscoutAPI( username=’myusername’, password=’mypassword’, ) client.player(329061) To use the v2 legacy API, or alter the rate-limit(defaults to 12 requests per second): import wyscoutapi client = wyscoutapi.WyscoutAPI( username=’myusername’, password=’mypassword’,

Read more

A EddieHub API python package

A EddieHub API python package. Made with Python3 (C) @FayasNoushad Copyright permission under MIT License License -> https://github.com/FayasNoushad/EddieHub/blob/main/LICENSE Installation pip install EddieHub Note If user not joined on EddieHub Community please join first via EddieHub Community Support. Don’t forget after joining to make it public. Click here and change visibility. Add your data on EddieHubCommunity/Linkfree Usage **About EddieHub:**For json result about EddieHub import eddiehub print(eddiehub.eddiehub()) **About Member:**For json result about member of EddieHub import eddiehub print(eddiehub.member(“FayasNoushad”)) GitHub – FayasNoushad/EddieHub: A […]

Read more

Deploy a STAC API and a dynamic mosaic tiler API using AWS CDK

Earth Observation API Deploy a STAC API and a dynamic mosaic tiler API using AWS CDK. Source Code: https://github.com/developmentseed/eoAPI Deployment The stack is deployed by the AWS CDK utility. Under the hood, CDK will create the deployment packages required for AWS Lambda, upload it to AWS, and handle the creation of the Lambda and API Gateway resources. Install CDK and connect to your AWS account. This step is only necessary once per AWS account.

Read more

The Hypothesis client is a browser-based annotator that is a client for h’s API

h is the web app that serves most of the https://hypothes.is/ website, including the web annotations API at https://hypothes.is/api/. The Hypothesis client is a browser-based annotator that is a client for h’s API. Development See the Contributor’s guide for instructions on setting up a development environment and contributing to h. Community Join us on Slack (request an invite or log in once you’ve created an account) or in #hypothes.is on freenode for discussion. If you’d like to contribute to the […]

Read more

An unofficial API of 1cak.com

1cak – is Indonesian web that provide lot of fun. Endpoint Lol -> 10 Recent stored posts on databaseExample: https://onecak.azurewebsites.net/?lol Shuffle -> Select random posts from databaseExample: https://onecak.herokuapp.com/?shuffle=5 Info This app is subject of experiment, you may found some weird thing or even useless code.If so, please ignore or do PR.Thanks. GitHub https://github.com/dickymuliafiqri/onecak    

Read more

Python SDK for the Buycoins API

Buycoins Python Library This library provides easy access to the Buycoins API using the Python programming language. It provides all the feature of the API so that you don’t need to interact with the API directly. This library can be used with Python 3.6+ Installation You can install this package using pip: pip install –upgrade buycoins Introduction Primer The library is structured around the concept of a type, so everything is a type. All date quantities are specified as timestamps. […]

Read more

Python module to access the OpenCage geocoding API

OpenCage Geocoding Module for Python A Python module to access the OpenCage Geocoder. Usage Supports Python 3.6 or newer. Use the older opencage 1.x releases if you need Python 2.7 support. Install the module: pip install opencage Load the module: from opencage.geocoder import OpenCageGeocode Create an instance of the geocoder module, passing a valid OpenCage Data Geocoder API keyas a parameter to the geocoder modules’s constructor: key = ‘your-api-key-here’ geocoder = OpenCageGeocode(key) Pass a string containing the query or address […]

Read more

A simple model based API maker written in Python

Fast DRF Fast DRF is a small library for making API faster with Django and Django REST Framework. It’s easy and configurable. Features Runtime API creation without writing View, Serializer, Url, etc API versioning by default. Control fields on each versions An enhanced filtering support align with Django query filter. Customizable API URL and API Prefix. Options for Overriding Viewset, Serializer, Queryset Query optimization enabled for API with Django’s prefetch_related and select_related 8 Full control over project during making automated […]

Read more

Async API for controlling Hue Lights

Hue API Async API for controlling Hue Lights Installation This is an async client to interact with the Hue Bridge API. The minimum Python version required to run this is 3.8 Install the package using pip: pip install hue-api Usage Follow this link to create a Hue API user if not already known (API reference) Using the CLI hue –help # Get the version of hue-api installed hue version # To find your Hue Bridge IP address go to discovery.meethue.com, […]

Read more
1 2 3 4