{"id":34758091,"url":"https://github.com/sourcepirate/tailow","last_synced_at":"2026-05-25T11:32:02.797Z","repository":{"id":57473220,"uuid":"137095285","full_name":"sourcepirate/tailow","owner":"sourcepirate","description":"A Asyncio wrapper around motor","archived":false,"fork":false,"pushed_at":"2019-08-01T11:10:45.000Z","size":34,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-08T21:49:58.370Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://tailow.readthedocs.io/en/latest/","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/sourcepirate.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}},"created_at":"2018-06-12T15:54:32.000Z","updated_at":"2019-08-01T11:10:47.000Z","dependencies_parsed_at":"2022-09-26T17:40:50.004Z","dependency_job_id":null,"html_url":"https://github.com/sourcepirate/tailow","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sourcepirate/tailow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Ftailow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Ftailow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Ftailow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Ftailow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sourcepirate","download_url":"https://codeload.github.com/sourcepirate/tailow/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Ftailow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33473700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-25T06:32:55.349Z","status":"ssl_error","status_checked_at":"2026-05-25T06:32:35.322Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-12-25T05:48:03.163Z","updated_at":"2026-05-25T11:32:02.790Z","avatar_url":"https://github.com/sourcepirate.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Tailow\n[![Build Status](https://travis-ci.org/sourcepirate/tailow.svg?branch=master)](https://travis-ci.org/sourcepirate/tailow)\n[![Documentation Status](https://readthedocs.org/projects/tailow/badge/?version=latest)](https://tailow.readthedocs.io/en/latest/?badge=latest)\n[![PyPI version](https://badge.fury.io/py/tailow.svg)](https://badge.fury.io/py/tailow)\n\nA ORM wrapper around motor\n\n## Usage\n\n```python\nimport asyncio\nfrom tailow.fields import *\nfrom pymongo import ASCENDING\nfrom tailow.document import Document\n\nclass Address(Document):\n\n    address = StringField(required=True)\n\n\nclass Student(Document):\n\n    name = StringField(required=True)\n    age = IntegerField(required=True)\n    std = IntegerField(required=True)\n    address = ReferenceField(Address)\n\n    class Meta:\n        name = \"students\"\n        indexes = [(age, ASCENDING)]\n\n\nasync def get_all_students():\n    values = await Student.objects.filter(name=\"sathya\").limit(10).skip(2).find()\n    print(values)\n\nevloop = asyncio.get_event_loop()\nevloop.run_until_complete(get_all_students())\n\n```\n\n## Provides\n\n* Querying via Q objects.\n* Special Operators.\n* Index Support.\n\n## License\nMIT.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcepirate%2Ftailow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsourcepirate%2Ftailow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcepirate%2Ftailow/lists"}