Metadata-Version: 2.1
Name: mtaa
Version: 1.3
Summary: A package consisting of all Tanzania locations from region to streets in a easy accessible way
Home-page: https://github.com/Kalebu/mtaa
Author: Jordan Kalebu
Author-email: isaackeinstein@gmail.com
License: MIT
Download-URL: https://github.com/Kalebu/mtaa/archive/1.3.tar.gz
Description: # [mtaa](https://pypi.org/project/mtaa)
        
        A package consisting of all Tanzania locations from region to streets in a easy accessible way made by [kalebu](https://github.com/kalebu)
        
        ## How to use (Usage) 
        
        The library is very straight forward, at the very top of the library is country which is tanzania and at the very bottoms are places in a given street, here is a sample;
        
        ```python
        >>> from mtaa import tanzania
        >>> tanzania
        ['Shinyanga', 'Mara', 'Dar-es-salaam', 'Kilimanjaro', 'Kagera', 'Tanga', 'Mwanza', 'Tabora', 'Kigoma', 'Pwani', 'Ruvuma', 'Mtwara', 'Morogoro', 'Rukwa', 'Katavi', 'Simiyu', 'Geita', 'Arusha', 'Iringa', 'Mbeya', 'Njombe', 'Manyara', 'Lindi', 'Singida', 'Songwe', 'Dodoma']
        
        >>> tanzania.Mbeya.districts
        ['Mbeya cbd', 'Mbeya', 'Rungwe', 'Mbarali', 'Kyela', 'Chunya]
         
         
        >>> tanzania.Mbeya.districts.Rungwe.wards
        ['ward_post_code', 'Bulyaga', 'Bagamoyo', 'Makandana', 'Msasani', 'Kawetele', 'Itagata', 'Ibigi', 'Kyimo', 'Suma', 'Masoko', 'Mpuguso', 'Malindo', 'Lufingo', 'Kiwira', 'Nkunga', 'Ikuti', 'Kisondela', 'Ilima', 'Bujela', 'Masukulu', 'Kisiba', 'Kabula', 'Lupata', 'Kambasegela', 'Kisegese', 'Itete', 'Lufilyo', 'Lwangwa', 'Mpombo', 'Isange', 'Kandete', 'Luteba', 'Isongole', 'Kinyala', 'Matwebe', 'Masebe', 'Swaya', 'Iponjola', 'Lupepo', 'Ndanto', 'Ntaba', 'Mpata']
        
        ```
        
        ## Fetching the whole tree
        
        Lets you want to extract no just names in a ward but the whole ward and its deeper roots, to do this use the tree method at any given instance with exception of places in streets which are just list.
        
        Here an example (Some places in Tanzania)
        
        ```python
        >>> home = tanzania.Mbeya.districts.Rungwe.wards.Kiwira.tree()
        >>> print(home)
        {'ward_post_code': '53515', 'streets': {'Mpandapanda': ['Ipoma', 'Kiwira kati', 'Mpandapanda', 'Ilongoboto', 'Isange'], 'Kikota': ['Lukwego', 'Lubwe', "Kang'eng'e", 'Ilamba', 'Kikota', 'Ipande'], 'Ibula': ['Kibumbe', 'Ibula', 'Kanyegele', 'Sanu - salala kalongo', 'Katela'], 'Ilundo': ['Bujinga', 'Ibagha a', 'Buswema', 'Ibagha b', 'Kanyambala', 'Lusungo'], 'Ilolo': ['Ibigi', 'Ilolo', 'Itekele', 'Masebe', 'Masugwa', 'Kisungu']}}
        
        ```
        
        ## From other languages ?
        
        Incase you're from other languages than Python you might wanna take a look at an [MtaaAPI](https://github.com/HackEAC/mtaaAPI) developed by [HackEAC](https://github.com/HackEAC). 
        
        ## Bug bounty?
        
        If you encounter **issue** with the usage of the package, feel free raise an **issue** so as 
        we can fix it as soon as possible(ASAP) or just reach me directly through my [email](isaackeinstein@gmail.com)
        
        ## Pull Requests
        
        If you have something to add I welcome pull requests on improvement , you're helpful contribution will be merged as soon as possible
        
        ## Credits
        
        All the credits to;
        -[kalebu](github.com/kalebu)
        -[HackEAC](https://github.com/HackEAC/tanzania-locations-db)
        
        ## Disclaimer
        
        All the location I used to build this repository, I got from an public repository titled [tanzania-locations-db](https://github.com/HackEAC/tanzania-locations-db), I'm not responsible for any kind of misinformation in it, I tried to locate my home with it found its pretty accurate, so use it to your own risk
        
        
        Visit [website](https://kalebu.github.io)
        
Keywords: mtaa,python-tanzania,tanzania locations,mtaa python,mtaa package,mtaa python package,all tanzania location,mtaa github,python mtaa
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
