Licensing-API: an API to create, manage and check keys for your projects

Licensing-API is an API to create, manage and check keys for your projects. Preview Features Web Interface Create/Delete/Activate/Deactivate Keys over WI or API Login Signup Password Fernet Encryption Automatic Key Counter What’s not covered? Anti-Bruteforce-Defence Sql-Injection (not-tested) Api-Limit I’m just a junior backend dev, and wasn’t able to cover these protections,because of missing Knowledge and this Project was made in 5 days, and I want to go on. Open a terminal Clone Repo cd (your folder) git clone https://github.com/screamz2k/License-API Run […]

Read more

A Python API For Questionnaire

Окружение проекта: python 3.8 Django 2.2.10 djangorestframework Склонируйте репозиторий с помощью git: git clone https://github.com/PontificSalivan/ApiForQuestionnaire Перейдите в директорию проекта: Запустите команду docker: или sudo docker-compose build Создайте миграции приложения для базы данных: docker-compose run web python manage.py migrate или sudo docker-compose run web python manage.py migrate Создайте суперпользователя:

Read more

A PG3D API Made with Python

PG3D Python API A Pixel Gun 3D Python API (Public Ver) How To Use? Examples pbn.isBanned(192819483) -> True pbn.freeCurrencyTypeRotation() -> [‘GemsCurrency’, ‘GemsCurrency’, ‘Coins’, ‘GemsCurrency’, ‘GemsCurrency’, ‘Coins’, ‘GemsCurrency’, ‘GemsCurrency’, ‘Coins’, ‘GemsCurrency’, ‘GemsCurrency’, ‘Coins’] | OS: test GitHub View Github    

Read more

Find out what commission you paid to the broker, how much money you earned with Ting

Сколько всего было внесено денег на счет Комиссию брокера Сумму денег на счету на данный момент Итоговый заработок Это скрипт для тех,кто столкнулся с проблемой подсчета уплаченой комиссии и подсчетом общей прибыли В личном кабинете Тинькофф банка получите токен Скачайте файл с кодом, замените YOUR TOKEN на ваш токен Запустите скрипт и получите данные GitHub View Github    

Read more

API to establish connection between server and client

API to establish connection between server and client, socket.socket() creates a socket object that supports the context manager type, so you can use it in a with statement. There’s no need to call s.close(), bind() is used to associate the socket with a specific network interface and port number, listen() enables a server to accept() connections, the client is pretty simple. It creates a socket object, connects to the server and calls s.sendall() to send its message, Lastly, it calls […]

Read more

Construindo API’s robustas utilizando Python

Neste tutorial vamos aprender a construir API’s utilizando Python e FastAPI, integrá-las a serviços externos e também a como torná-las robustas. Discutiremos a importância de uma boa documentação e testes. Abordaremos conceitos como integração com serviços externos, integração contínua e testes automatizados. Analisaremos cenários onde precisaremos de uma melhor performance e algumas técnicas para alcançar este objetivo como chamadas a funções assíncronas. Vamos tentar nos preparar para situações ruins que possam acontecer e garantir que nosso sistema será resiliente. O […]

Read more

An API which would colorize a black and white image

Image Colorization API Machine Learning Model used- https://github.com/richzhang/colorization/tree/caffe Paper – Steps to run the api locally- Clone the repository Run pip install -r requirements.txt After successful installation run uvicorn main:app –reload to start the server Go to 127.0.0.1:8000 to check endpoints and 127.0.0.1:8000/docs#/ to test the endpoints GitHub View Github    

Read more

API to run FAIR evaluations of online resources (Findable, Accessible, Interoperable, Reusable)

An API to run evaluations to assess the FAIRness of a resource. Using FastAPI and MongoDB Requirements Docker Docker Compose Poetry if you need to install new Python packages. Node.js (with npm) if you need to do frontend development Edit the assessments Most of the Python code for the API is in https://github.com/MaastrichtU-IDS/fair-enough/tree/main/backend/app All assessments used to run evaluations are python scripts defined in the same folder: https://github.com/MaastrichtU-IDS/fair-enough/tree/main/backend/app/assessments Backend local development Start the stack for development locally with Docker Compose: […]

Read more
1 2 3 4