All Projects → Esri → Arcrest

Esri / Arcrest

Licence: apache-2.0
python package for REST API (AGS, AGOL, webmap JSON, etc..)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Arcrest

Bmw Yolov4 Inference Api Cpu
This is a repository for an nocode object detection inference API using the Yolov4 and Yolov3 Opencv.
Stars: ✭ 180 (-6.74%)
Mutual labels:  rest-api
Piladb
Lightweight RESTful database engine based on stack data structures
Stars: ✭ 184 (-4.66%)
Mutual labels:  rest-api
Drf Yasg
Automated generation of real Swagger/OpenAPI 2.0 schemas from Django REST Framework code.
Stars: ✭ 2,523 (+1207.25%)
Mutual labels:  rest-api
Wp Nuxt
The module adds WP-API to your nuxt application.
Stars: ✭ 179 (-7.25%)
Mutual labels:  rest-api
Apicheck
The DevSecOps toolset for REST APIs
Stars: ✭ 184 (-4.66%)
Mutual labels:  rest-api
Autoserver
Create a full-featured REST/GraphQL API from a configuration file
Stars: ✭ 188 (-2.59%)
Mutual labels:  rest-api
Paypal Php Sdk
PHP SDK for PayPal RESTful APIs
Stars: ✭ 2,100 (+988.08%)
Mutual labels:  rest-api
Node Rem
Node REM - NodeJS Rest Express MongoDB and more: typescript, passport, JWT, socket.io, HTTPS, HTTP2, async/await, nodemailer, templates, pagination, docker, etc. Live Demo: https://node-rem-ngduc.vercel.app
Stars: ✭ 192 (-0.52%)
Mutual labels:  rest-api
Mcloud
基于Spring Cloud,实现微服务中常用的基础模块,包括 OAuth2 认证服务,统一注册中心,系统监控中心, 统一配置中心,API网关以及熔断器
Stars: ✭ 185 (-4.15%)
Mutual labels:  rest-api
Api
API that uncovers the technologies used on websites and generates thumbnail from screenshot of website
Stars: ✭ 189 (-2.07%)
Mutual labels:  rest-api
Udata
Customizable and skinnable social platform dedicated to open data.
Stars: ✭ 181 (-6.22%)
Mutual labels:  portal
Lumen Microservice
Lumen on Docker - Skeleton project with Nginx, MySQL & PHP 7 | Aws ECS, Google Kubernates, Azure Container Engine
Stars: ✭ 183 (-5.18%)
Mutual labels:  rest-api
Blynk Server
Blynk is an Internet of Things Platform aimed to simplify building mobile and web applications for the Internet of Things. Easily connect 400+ hardware models like Arduino, ESP8266, ESP32, Raspberry Pi and similar MCUs and drag-n-drop IOT mobile apps for iOS and Android in 5 minutes
Stars: ✭ 8 (-95.85%)
Mutual labels:  rest-api
Storefront Api
Storefront GraphQL API Gateway. Modular architecture. ElasticSearch included. Works great with Magento1, Magento2, Spree, OpenCart, Pimcore and custom backends
Stars: ✭ 180 (-6.74%)
Mutual labels:  rest-api
Rql
Resource Query Language for REST
Stars: ✭ 190 (-1.55%)
Mutual labels:  rest-api
Proteus
Lean, mean, and incredibly fast JVM framework for web and microservice development.
Stars: ✭ 178 (-7.77%)
Mutual labels:  rest-api
Swagger Codegen
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition.
Stars: ✭ 13,859 (+7080.83%)
Mutual labels:  rest-api
Metarest
Scala macros to generate RESTful Models
Stars: ✭ 193 (+0%)
Mutual labels:  rest-api
Frappe
Low code web framework for real world applications, in Python and Javascript
Stars: ✭ 3,349 (+1635.23%)
Mutual labels:  rest-api
Tipe
🎉 Next Generation API-first CMS for developers. Generate an API-first CMS from a GraphQL schema with offline prototyping and an inline editor
Stars: ✭ 2,157 (+1017.62%)
Mutual labels:  rest-api

This repository is no longer being maintained. Please use the ArcGIS Python API.

Site: https://github.com/Esri/arcgis-python-api

ArcREST Version 3.5.x

A latest release(v3.5.9) of ArcREST can be downloaded here: https://github.com/Esri/ArcREST/releases/tag/3.5.9

A set of python tools to assist working with ArcGIS REST API for ArcGIS Server (AGS), ArcGIS Online (AGOL), and ArcGIS WebMap JSON.

This is not a full implementation of the Esri REST API, but we would like to make it, so help out! Please feel free to contribute.

Features

  • Add, Delete, Update and Query Feature Services
  • Upload attachments to feature services
  • Assists in managing and publishing content
  • Allows users to control, migrate and update online content
  • Manage users on Portal, ArcGIS Server, and ArcGIS Online sites
  • Plus additional information not even listed here!

Documentation

The API reference is hosted here. The Esri portal API reference is hosted here

General Help

New to Github? Get started here.

Requirements

Recommended Installation

  • ArcPy (optional)
  • ArcGIS Desktop 10.2, 10.3, 10.4, 10.5 (optional)
    • If ArcPy is not installed, there will be limited functionality.

Installation

Download from PyPi using pip

pip install arcrest_package

Download a geoprocessing package to install ArcREST!

Download the GeoProcessing Package here: https://github.com/Esri/ArcREST/blob/master/ArcGIS%20Desktop%20Installer/installing_arcrest.gpk
* Note: ArcMap/Catalog is required to use the gpk format.
* Note: this tools can be used to update ArcREST as well
1. Open the GPK in the ArcGIS Desktop Product of your choosing.
2. Run the tool by double clicking on the tool icon.
3. Test the import
  • Note: If you have not done so, you may need to add your python install path and scripts folder to your environment variables. In your system PATH environment variable, add both the path to Python and the Python Scripts folder. ex: C:\Python27\ArcGIS10.3;C:\Python27\ArcGIS10.3\Scripts
  1. Install requirements
  2. run the setup.py. This should copy it to your python's site-package folder.
pip install -r requirements.txt
python setup.py install

Getting Started

Fetch your folders:

import arcrest
from arcresthelper import securityhandlerhelper

config = {'username': 'myusername', 'password': 'myp4ssword'}
token = securityhandlerhelper.securityhandlerhelper(config)
admin = arcrest.manageorg.Administration(securityHandler=token.securityhandler)
content = admin.content
userInfo = content.users.user()
userInfo.folders

Get item metadata:

item = admin.content.getItem(itemId=itemId)
item.title
 u'Streets'

Issues

Find a bug or want to request a new feature? Please let us know by submitting an issue.

Contributing

Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.

PyPi

Please see our PyPi page.

To build the wheel - python setup_wheel.py bdist_wheel

Licensing

Copyright 2016 Esri

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

A copy of the license is available in the repository's LICENSE file.

[](Esri Tags: AGS AGOL ArcGIS Server ArcGIS Online Utilities Telecommunications ArcGISSolutions) [](Esri Language: Python)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].