{"id":22677799,"url":"https://github.com/qewertyy/lexicaapi","last_synced_at":"2026-04-01T20:12:23.974Z","repository":{"id":183364001,"uuid":"670013338","full_name":"Qewertyy/LexicaAPI","owner":"Qewertyy","description":"Python Wrapper for LexicaAPI https://api.qewertyy.dev/docs , for Queries/Support reach out at https://telegram.me/LexicaAPI","archived":false,"fork":false,"pushed_at":"2024-11-05T11:19:00.000Z","size":3086,"stargazers_count":15,"open_issues_count":1,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-17T23:41:42.910Z","etag":null,"topics":["ai","api","api-rest","gpt","gpt3-turbo","image-search","instagram-downloader","latent-diffusion","reverse-image-search","stable-diffusion","state-of-art","text-to-image"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/lexica-api/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Qewertyy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-24T05:28:53.000Z","updated_at":"2025-04-09T10:26:08.000Z","dependencies_parsed_at":"2023-07-24T06:39:18.120Z","dependency_job_id":"4c161096-7f92-469c-899e-e9e4d23aa4fa","html_url":"https://github.com/Qewertyy/LexicaAPI","commit_stats":null,"previous_names":["qewertyy/open-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Qewertyy/LexicaAPI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qewertyy%2FLexicaAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qewertyy%2FLexicaAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qewertyy%2FLexicaAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qewertyy%2FLexicaAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Qewertyy","download_url":"https://codeload.github.com/Qewertyy/LexicaAPI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qewertyy%2FLexicaAPI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271424925,"owners_count":24757366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","api","api-rest","gpt","gpt3-turbo","image-search","instagram-downloader","latent-diffusion","reverse-image-search","stable-diffusion","state-of-art","text-to-image"],"created_at":"2024-12-09T18:01:54.900Z","updated_at":"2025-10-29T12:22:56.690Z","avatar_url":"https://github.com/Qewertyy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Here are some projects which utilizes the LexicaAPI.\n\n### AverageAI\n- **Name:** [AverageAI](https://ai.qewertyy.dev)\n- **Description:** Image Generations and LLMs.\n\n### AverageImages\n- **Name:** [AverageImages](https://images.qewertyy.dev)\n- **Description:** Search Images on google and bing.\n\n### Upscale\n- **Name:** [Upscale](https://upscale.qewertyy.dev)\n- **Description:** Upscale Images.\n\n### AverageNews\n- **Name:** [AverageNews](https://news.qewertyy.dev)\n- **Description:** News App.\n\n### Social-DL\n- **Name:** [Social-DL](https://social-dl.vercel.app)\n- **Description:** Download Videos/Images from social media.\n\n### TelegramBots\n[Miko](https://github.com/Awesome-Tofu/miko-bot), [AntiNSFWBot](https://telegram.me/ProtectYourGroupsRobot), [Sung](https://github.com/Dhruv-Tara/Sung), [GameInfoBot](https://github.com/barryspacezero/Telegram-GameInfoBot), [YaeMiko](https://github.com/Infamous-Hydra/YaeMiko), [FilterBot](https://github.com/Codeflix-Bots/AutoFilter), [News](https://github.com/SOMEH1NG/TechNewsDigest) [etc..](https://github.com/search?q=https%3A%2F%2Fapi.qewertyy.dev\u0026type=code)\n## Usages\nLLM's\n```python\nfrom lexica import Client, languageModels\n\ndef main(prompt: str) -\u003e dict:\n    client = Client()\n    response = client.palm(prompt,languageModels.gemini)\n    return response\n\nif __name__ == \"__main__\":\n    print(main(\"hello world\"))\n```\n\nUpscale an image.\n```python\nfrom lexica import Client\n\ndef main(image: bytes) -\u003e bytes:\n    client = Client()\n    imageBytes = client.upscale(image)\n    with open('upscaled.png', 'wb') as f:\n        f.write(imageBytes)\n\nif __name__ == \"__main__\":\n    image = open('examples/images/image.png', 'rb').read()\n    main(image)\n```\n\nAnti-NSFW\n```python\nfrom lexica import Client\n\ndef main(image_url: str) -\u003e dict:\n    client = Client()\n    response = client.AntiNsfw(image_url)\n    if response['content']['sfw'] == True:\n        return \"This image is safe for work.\"\n    else:\n        return \"This image is not safe for work.\"\n\nif __name__ == \"__main__\":\n    print(main(\"https://graph.org/file/13e95c6cc932530823391.png\"))\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqewertyy%2Flexicaapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqewertyy%2Flexicaapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqewertyy%2Flexicaapi/lists"}