Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Get your API key here .
make sure this is installed on your system
virtualenv is great. We can use it to sandbox versions and keep installs contained, so we can avoid global version conflicts.
Install virtualenv
pip install virtualenv
Create python3 virtualenv named 'venv'
virtualenv -p python3 venv
Activate virtualenv
source venv/bin/activate
do this every time to enter into virtualenv called '(venv)' <= as shown in terminal prompt
Install targomo_python
pip install targomo_python
this installs targomo_python and dependencies in our virtualenv
Test the install
python -m targomo_python.cli -h
this shows the cli usage and help
When you are done using the virtualenv, shut it down
deactivate
prompt drops '(venv)' tag, virtualenv is no longer active
usage: python -m targomo_python.cli [-h] [--time TIME] [--date DATE]
[--polygonSerializer POLYGONSERIALIZER]
[--buffer BUFFER] [--minHoleSize MINHOLESIZE]
[--simplify SIMPLIFY] [--srid SRID]
[--quadrantSegments QUADRANTSEGMENTS]
[--frameDuration FRAMEDURATION]
[--reverse REVERSE] [--bikeSpeed BIKESPEED]
[--bikeUphill BIKEUPHILL]
[--bikeDownhill BIKEDOWNHILL]
[--walkSpeed WALKSPEED] [--walkUphill WALKUPHILL]
[--walkDownhill WALKDOWNHILL] --travelTimes
TRAVELTIMES [TRAVELTIMES ...] --serviceUrl
SERVICEURL --serviceKey SERVICEKEY --travelType
TRAVELTYPE --source SOURCE --outputDir OUTPUTDIR
--outputFilename OUTPUTFILENAME
Query the Targomo Polygon service using python
optional arguments:
-h, --help show this help message and exit
--time TIME The time in seconds of the day: 1.30 p.m. = 13 * 3600
+ 30 * 60 = 48600 (transit only) (default: 43200)
--date DATE The date in the format YYYYMMDD, e.g.: 20160727 for
the 27th of July 2016 (transit only) (default:
20162707)
--polygonSerializer POLYGONSERIALIZER
The serializer for the polygons: json or geojson
(default: geojson)
--buffer BUFFER The buffer (in srid units) that should be generated
around the polygons. (default: None)
--minHoleSize MINHOLESIZE
The area threshold of a hole inside a polygon (in
meters squared). (default: None)
--simplify SIMPLIFY The threshold (in meter) that should be used for
Douglas-Peucker (before buffering, max 500m).
(default: None)
--srid SRID The target SRID (Spatial Reference System Identifier),
all that are supported via PostGIS. (default: None)
--quadrantSegments QUADRANTSEGMENTS
The number of quadrant segments (max 8), see:
http://postgis.net/docs/ST_Buffer.html. (default:
None)
--frameDuration FRAMEDURATION
The window (in seconds) during which connections are
identified. (default: None)
--reverse REVERSE Whether or not to measure from sources (default) or
towards sources. (default: None)
--bikeSpeed BIKESPEED
Bike speed km/h (travelType 'bike' only). (default:
None)
--bikeUphill BIKEUPHILL
Penalty applied to uphill bike travel. (default: None)
--bikeDownhill BIKEDOWNHILL
Penalty applied to downhill bike travel. (default:
None)
--walkSpeed WALKSPEED
Walk speed km/h (travelType 'walk' only). (default:
None)
--walkUphill WALKUPHILL
Penalty applied to uphill walk travel. (default: None)
--walkDownhill WALKDOWNHILL
Penalty applied to downhill bike travel. (default:
None)
required named arguments:
--travelTimes TRAVELTIMES [TRAVELTIMES ...]
The travel time in seconds as a list of integers.
(default: None)
--serviceUrl SERVICEURL
The URL of the Targomo API endpoint. (default: None)
--serviceKey SERVICEKEY
Your personal key for the API. (default: None)
--travelType TRAVELTYPE
The travel type for the request: car, walk, bike or
transit (default: None)
--source SOURCE The source as doubles (lat,lng) separated by ';'.
(default: None)
--outputDir OUTPUTDIR
The path where to write the output files (default:
None)
--outputFilename OUTPUTFILENAME
The the name of the file to write to (default: None)
not all capabilities are available for all plan levels. Refer to the different plans to see the specifics.
python -m targomo_python.cli --travelType walk \
--travelTimes 1800 \
--source="52.52;13.405" \
--outputDir=data/ \
--outputFilename=test.geojson \
--serviceKey='Your key here' \
--serviceUrl=http://api.targomo.com/germany/ \
--srid=4326 \
Example how to use the library from Python code:
#!/usr/bin/env python3
from targomo_python.rest.ServiceExecutor import ServiceExecutor
from targomo_python.util.TravelOptions import TravelOptions
from targomo_python.util.enum.TravelType import TravelType
travelOptions = TravelOptions()
travelOptions.setServiceKey('INSERT_YOUR_API_KEY_HERE')
travelOptions.setTravelType(TravelType.TRANSIT)
travelOptions.setServiceUrl('https://api.targomo.com/westcentraleurope/')
travelOptions.setTravelTime(10 * 3600)
travelOptions.setFrameDuration(3 * 3600)
travelOptions.addSource({"id": "source-1", "lng": 53.5532, "lat": 10.00644})
travelOptions.addTarget({"id": "target-1", "lng": 53.63265, "lat": 10.00667})
response = ServiceExecutor().execute_service(travelOptions, "route")
print(response)
Using unit test and nose, API assumes Python 3.x
nosetests -v
FAQs
A python client library to query the Targomo API
We found that targomo_python demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.