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.5.2.tar.gz (6.6 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.5.2-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for fourwritersapi-0.5.2.tar.gz
Algorithm Hash digest
SHA256 3d23298a88d650aef98385ed4b6bc26b6787497d78c497e978069d0f19787ad3
MD5 7e78c94f7d0a7510079300cc1db827cb
BLAKE2b-256 c54d12a1e1b94e13699e76be13e52500f359a12c852dc5d488c033f68db898ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fourwritersapi-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 9.1 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.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d44c2ecc5fb7efb05fd206f5e83557c5e81040fc9f44c76af329fefd8651e647
MD5 4b7e18f246abd9fe3c9e6cd4b3ce84bd
BLAKE2b-256 140c51a236ea4a64c6541c04966d5edc103e3b89a045645ead32bdbd5dbe24b2

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