New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

python-arq

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-arq

Asynchronous Python Wrapper For A.R.Q API.

  • 6.0.7
  • PyPI
  • Socket score

Maintainers
1

Python_ARQ

Python wrapper for the A.R.Q. API.

Python GitHub

Requirements

  • Python 3.8 or newer.
  • API URL and KEY, from here.

Installation

$ pip install python-arq

Usage

For Example, to search for a youtube video, you can do this

from asyncio import run
from aiohttp import ClientSession
from Python_ARQ import ARQ


async def main():
    session = ClientSession()
    arq = ARQ(api_url, api_key, session)
    results = await arq.youtube("Never gonna give you up")
    videos = results.result[0]
    print(videos)
    await session.close()


run(main())

Documentation

There is no documentation as of now, however, you can take help from the docstrings this way:

from Python_ARQ import ARQ

print(help(ARQ.deezer))

Features as of now [List of APIs]

  1. Lyrics
  2. Google Translate
  3. Youtube
  4. Container code execution via piston
  5. Reddit
  6. Torrent
  7. Wallpapers
  8. Urban Dictionary
  9. Luna AI Chatbot
  10. Image Search
  11. Wikipedia
  12. NSFW Image Classification
  13. Natural Language Processing [Spam Prediction]
  14. Proxy Scraper
  15. The Movie Database [TMDB]
  16. Quotly [TELEGRAM]
  17. Jiosaavn
  18. Pypi Package Search
  19. Image Search
  20. Autocorrect (spell checker)
  21. ASQ: Question-Answering Algorithm
  22. ARQ Storage, Unlimited file storage (100MB/file)

Note

  1. I'll add more features soon.
  2. If you're stuck somewhere, Pathetic Programmers are there to help.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc