Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

serdesripy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serdesripy

  • 0.1.2
  • PyPI
  • Socket score

Maintainers
1

serdesripy is a lightweight wrapper around serde_esri which is a Rust library that can serialize and deserialize Esri JSON objects.

This python library is a proof of concept package illustrating how we can call serde_esri to process JSON and return a PyArrow object.

Install from PyPI

import requests
import serdesripy

# make a simple request for US Counties boundaries
counties = requests.get("https://services.arcgis.com/P3ePLMYs2RVChkJx/ArcGIS/rest/services/USA_Counties_Generalized_Boundaries/FeatureServer/0/query?where=1%3D1&outFields=*&returnGeometry=true&resultRecordCount=10&f=json")

# pass in raw json and process the result
featureset = serdesripy.process_featureset(counties.text)
print(featureset)

# convert to pandas 
featureset.to_pandas()

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