Darren Weber

Results 64 issues of Darren Weber

It could help to somehow expose aiohttp client tracing - https://docs.aiohttp.org/en/stable/client_advanced.html#client-tracing

Would it be possible to add a development option to the package so that it can provide pytest fixtures to downstream projects? Something like `aiobotocore[dev]` might provide pytest fixture methods?...

enhancement
pr-available

fiona should be able to read a GeoJSONSeq file with only one line (one feature). ``` $ cat tmp.geojsons {"type": "Feature", "id": "669", "geometry": {"type": "Point", "coordinates": [170.50251, -45.874003]}, "properties":...

Obscure error when writing GeoJSONSeq to AWS S3: ``` csv_gdf.to_file(s3uri, driver="GeoJSONSeq") File "/opt/conda/envs/project/lib/python3.7/site-packages/geopandas/geodataframe.py", line 746, in to_file _to_file(self, filename, driver, schema, index, **kwargs) File "/opt/conda/envs/project/lib/python3.7/site-packages/geopandas/io/file.py", line 257, in _to_file colxn.writerecords(df.iterfeatures())...

See - https://pydantic-docs.helpmanual.io/usage/schema/ - https://github.com/samuelcolvin/pydantic/issues/643 - https://github.com/koxudaxi/datamodel-code-generator This a different feature request for better typing support in botocore (and hence, boto3). A related issue that was auto-closed was at https://github.com/boto/botocore/issues/1940

feature-request
needs-review
p2

Is there any example of using this in unit tests with a moto mock_s3 context or a moto server endpoint?

Fix #1244 ``` $ git grep 'PerThreadRegistry' lib/active_fedora/runtime_registry.rb: extend ActiveSupport::PerThreadRegistry lib/active_fedora/scoping.rb: extend ActiveSupport::PerThreadRegistry ``` - [ ] lib/active_fedora/runtime_registry.rb - attempted to use `thread_mattr_accessor`, but I don't fully understand it and...

AF uses `active_support/per_thread_registry` in a couple places. The docs on that at http://api.rubyonrails.org/classes/ActiveSupport/PerThreadRegistry.html have a note: - “NOTE: This approach has been deprecated for end-user code in favor of thread_mattr_accessor...

Taking the liberty to evaluate this branch, to clarify some questions in #35 and #53 This is not a proposal to merge, it's just a PR to see what needs...

Example query: ```python import requests from owslib.swe.observation.sos200 import SOSGetObservationResponse from owslib.etree import etree query = { 'format': 'waterml,2.0', 'parameterCd': '00010', 'sites': '01115183,01115184,01115170', 'siteStatus': 'active', 'startDT': '2018-01-01T00:00:00+00:00', 'endDT': '2018-01-02T00:00:00+00:00' } response...