Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 853 Bytes

README.md

File metadata and controls

51 lines (41 loc) · 853 Bytes

geoloc

Use this package to fetch to get current address

TODO

  • Multiple Location Fetcher

    • Using ipaddress
    • Using MapLocation
  • For every user user get users in radius of 10km or certain distance

Data

Current user location

Location(
    city='Kathmandu',
    region='Bagmati Province',
    country='NP',
    latitude='27.7017',
    longitude='85.3206',
    timezone='Asia/Kathmandu'
    )

List of users locations

[
    Location(
        city='Biratnagar',
        region='Province1',
        country='NP',
        latitude='27.5017',
        longitude='85.2206',
        timezone='Asia/Morang'
    ),
    Location(
        city='Kathmandu',
        region='Bagmati Province',
        country='NP',
        latitude='27.7017',
        longitude='85.3206',
        timezone='Asia/Kathmandu'
    )
]