Skip to content

Commit c2710d2

Browse files
committed
puncia[0.32]
1 parent 813d20f commit c2710d2

File tree

1 file changed

+23
-24
lines changed

1 file changed

+23
-24
lines changed

README.md

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -105,30 +105,29 @@ Puncia utilizes three of our intelligent APIs to gather the results - <br>
105105

106106
10. (FREEMIUM) External Import
107107

108-
```python
109-
import puncia
110-
import asyncio
111-
112-
async def main():
113-
# Without API Key
114-
print(await puncia.query_api("exploit", "CVE-2021-3450"))
115-
print(await puncia.query_api("subdomain", "arpsyndicate.io"))
116-
print(await puncia.query_api("chat", "write a xss fuzzer in python"))
117-
118-
# With API Key
119-
await puncia.store_key("ARPS-xxxxxxxxxx")
120-
api_key = await puncia.read_key()
121-
print(await puncia.query_api("subdomain", "arpsyndicate.io", apikey=api_key))
122-
print(await puncia.query_api("exploit", "CVE-2021-3450", apikey=api_key))
123-
print(await puncia.query_api("chat", "write a xss fuzzer in python", apikey=api_key))
124-
print(await puncia.query_api("summarize", "https://www.osintteam.com/combating-the-darkest-depths-of-cyber-intelligence-the-pall-mall-process/", apikey=api_key))
125-
print(await puncia.query_api("advisory", "CVE-2025-31324", apikey=api_key))
126-
print(await puncia.query_api("advisory", "CVE-2025-31324|FRENCH", apikey=api_key))
127-
128-
# Run the main async function
129-
asyncio.run(main())
130-
131-
```
108+
```python
109+
import puncia
110+
import asyncio
111+
112+
async def main():
113+
# Without API Key
114+
print(await puncia.query_api("exploit", "CVE-2021-3450"))
115+
print(await puncia.query_api("subdomain", "arpsyndicate.io"))
116+
print(await puncia.query_api("chat", "write a xss fuzzer in python"))
117+
118+
# With API Key
119+
await puncia.store_key("ARPS-xxxxxxxxxx")
120+
api_key = await puncia.read_key()
121+
print(await puncia.query_api("subdomain", "arpsyndicate.io", apikey=api_key))
122+
print(await puncia.query_api("exploit", "CVE-2021-3450", apikey=api_key))
123+
print(await puncia.query_api("chat", "write a xss fuzzer in python", apikey=api_key))
124+
print(await puncia.query_api("summarize", "https://www.osintteam.com/combating-the-darkest-depths-of-cyber-intelligence-the-pall-mall-process/", apikey=api_key))
125+
print(await puncia.query_api("advisory", "CVE-2025-31324", apikey=api_key))
126+
print(await puncia.query_api("advisory", "CVE-2025-31324|FRENCH", apikey=api_key))
127+
128+
# Run the main async function
129+
asyncio.run(main())
130+
```
132131

133132
<br>
134133

0 commit comments

Comments
 (0)