Skip to main content

No project description provided

Project description

4WritersAPI

Описание

4WritersAPI — это API для взаимодействия с сайтом 4writers.net. Этот инструмент позволяет автоматизировать работу с сайтом, включая авторизацию и получение доступных заказов.


Функционал

  1. Авторизация

    • Выполняется с использованием логина и пароля.
    • Сохраняет сессию для выполнения последующих запросов.
  2. Получение заказов

    • API парсит доступные заказы с сайта и возвращает их в структурированном виде.
    • Поддерживаемая информация:
      • ID заказа.
      • Название.
      • Тема.
      • Дедлайн.
      • Время до выполнения.
      • Тип работы.
      • Уровень академической сложности.
      • Стиль оформления.
      • Язык.
      • Количество страниц.
      • Количество источников.
      • Оплата (зарплата, бонус, общая сумма).

Установка

  1. Убедитесь, что у вас установлен Python 3.8 или выше.
  2. Склонируйте репозиторий:
    git clone https://github.com/your-repo/4writersAPI.git
    cd 4writersAPI
    

Установите зависимости:

pip install -r requirements.txt

Настройка

Создайте файл .env в корне проекта и добавьте ваши учетные данные:

LOGIN=your_login
PASSWORD=your_password

Использование

Пример использования API для авторизации и получения заказов:

import asyncio
from src.api.api import API
from envparse import env

# Загрузка данных из .env файла
env.read_envfile(".env")
LOGIN = env.str("LOGIN")
PASSWORD = env.str("PASSWORD")

# Инициализация API
api = API(login=LOGIN, password=PASSWORD)

async def main():
    # Авторизация
    await api.login()
    
    # Получение заказов
    orders = await api.get_orders()
    
    if not orders:
        print("No orders found.")
    else:
        for order in orders:
            print("=" * 40)
            print(f"Order ID: {order.order_id}")
            print(f"Title: {order.title}")
            print(f"Subject: {order.subject}")
            print(f"Deadline: {order.deadline}")
            print(f"Remaining: {order.remaining}")
            print(f"Order Type: {order.order_type}")
            print(f"Academic Level: {order.academic_level}")
            print(f"Style: {order.style}")
            print(f"Language: {order.language}")
            print(f"Pages: {order.pages}")
            print(f"Sources: {order.sources}")
            print(f"Salary: ${order.salary:.2f}")
            print(f"Bonus: ${order.bonus:.2f}")
            print(f"Total: ${order.total:.2f}")
            print("=" * 40)

asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fourwritersapi-0.4.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fourwritersapi-0.4.0-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file fourwritersapi-0.4.0.tar.gz.

File metadata

  • Download URL: fourwritersapi-0.4.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.4

File hashes

Hashes for fourwritersapi-0.4.0.tar.gz
Algorithm Hash digest
SHA256 befa31f3251b8a809b67b467ff0ab1391a6631fb892d5c75cc4b9ec933cc428e
MD5 99d8686f0c901143b9de536789b8a1be
BLAKE2b-256 7d35b4d6dce947973429c9154d4e1a4cf299ebb6b458dc9ffffa203a178ac623

See more details on using hashes here.

File details

Details for the file fourwritersapi-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: fourwritersapi-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.4

File hashes

Hashes for fourwritersapi-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 781e6d6ef82d368f5c8bf50549a1184c79b148ae31847c6dc0c025fa3a714ae8
MD5 f542ffd61a1693bd5bf51f99e09e95e5
BLAKE2b-256 04fdff2d7396b1d9ff4c35e7cdd80b51ecc523b79e76cd920b0483757573a7d0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page