Kankipadu mandal
Kankipadu mandal is one of the 50 mandals in the Krishna district of the Indian state of Andhra Pradesh.
Kankipadu Mandal | |
---|---|
![]() Mandal map of Krishna district showing Kankipadu mandal (in Rose Colour) | |
![]() ![]() Kankipadu Mandal Location in Andhra Pradesh, India | |
Coordinates: 16.4344°N 80.7678°E | |
Country | India |
State | Andhra Pradesh |
District | Krishna |
Headquarters | Kankipadu |
Government | |
• Body | Mandal Parishad |
Time zone | UTC+5:30 (IST) |
PIN | 521 XXX |
Vehicle registration | AP 16 |
Settlements
The following are the settlements and populations as at 2011.[1]
Towns
Nuber | Town | State | Population |
---|---|---|---|
1 | Kankipadu (census town) | Andhra Pradesh | 14,616 |
Villages
Number | Villages | Population | |
---|---|---|---|
1 | Chalivendrapalem | 1,043 | |
2 | Davuluru | 1,490 | |
3 | Edupugallu | 9,263 | |
4 | Godavarru | 3,457 | |
5 | Jagannadhapuram | 606 | |
6 | Kandalampadu | 296 | |
7 | Kolavennu | 5,076 | |
8 | Konathanapadu | 1,681 | |
9 | Kunderu | 3,065 | |
10 | Madduru | 3,019 | |
11 | Manthena | 2,347 | |
12 | Maredumaka | 997 | |
13 | Neppalle | 1,949 | |
14 | Prodduturu | 2,441 | |
15 | Punadipadu | 7,235 | |
16 | Tenneru | 3,646 | |
17 | Uppaluru | 5,105 | |
18 | Velpuru | 2,230 |
gollark: Thus, praise ~~Rust~~ ~~Ferris~~ Nim?
gollark: It compiles in reasonable time *and* makes a 600KB binary in debug mode which is much nicer than equivalent Rust.
gollark: I only need something like two routes so a full web framework is overkill.
gollark: ```nimimport optionsimport asyncdispatchimport httpximport tiny_sqliteimport macrosimport karax/[karaxdsl, vdom]import ./dbmacro includeFile(x: string): string = newStrLitNode(readFile(x.strVal))const css = includeFile("./src/style.css")let database = openDatabase("./monitoring.sqlite3")migrate(database)var threadDB {.threadvar.}: Option[DbConn]proc openDB(): DbConn = if isNone threadDB: threadDB = some openDatabase("./monitoring.sqlite3") get threadDBproc mainPage(): string = let vnode = buildHtml(html()): head: style: text css text "Bee deployed" $vnodeproc onRequest(req: Request) {.async.} = if req.httpMethod == some(HttpGet): case req.path.get() of "/": req.send(body=mainPage(), code=Http200, headers="Content-Type: text/html") else: req.send(Http404) else: req.send(Http404)echo "Starting up"run(onRequest, initSettings(Port(7800), "", 0))```This is what I have so far.
gollark: One per thread is likely sort of better ish slightly anyway.
See also
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.