Ordinary Hobbit

Results 24 comments of Ordinary Hobbit

Please find code snippet below. Im using aioaws 0.11 ```python import asyncio from aioaws.s3 import S3Client, S3Config from httpx import AsyncClient async def s3_demo(client: AsyncClient): s3 = S3Client(client, S3Config( '',...

I can do ```s3.list()``` for both region.host.net/bucket or bucket.region.host.net and get: ``` [S3File(key='test.txt', last_modified=datetime.datetime(2021, 10, 25, 12, 5, 32, 928000, tzinfo=datetime.timezone.utc), size=282, e_tag='9e36cc3537ee9ee1e3b10fa4e761045b', storage_class='STANDARD'),] ``` so my assumption is that...

@agronholm i tested it carefully and 0 is mon and 6 is sun > this is how it is working now > so docs string should follow > value of...

@agronholm still if I setting day_of_week='0', call_validation (trigger: cron[day_of_week='0', hour='13', minute='2'], next run at: 2022-03-21 13:02:00 UTC) >> it mean that 0 is mon and 6 is sat right ?

correct a here src/apscheduler/triggers/cron/expressions.py ```python WEEKDAYS = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'] def get_weekday_index(weekday: str) -> int: try: return WEEKDAYS.index(weekday.lower()) except ValueError: raise ValueError(f'Invalid weekday name {weekday!r}') from...

if you add this as bug I can add next PR

@agronholm i think this PR is already doing fix https://github.com/agronholm/apscheduler/pull/381/files so maybe for now just update docs string to don't allow documentation confuse ppl

ok thx will do this - just want to be sure that im not making duplicates