Content deleted Content added
→Plan for Future Edits: Reply |
→selim: new section |
||
Line 89:
: Hi {{ping|MadHanSolo}}. Please feel free to add if you think that makes sense. However, keep in mind that Wikipedia is not a [[WP:NOTHOWTO|Howto]] or a set or tutorials so if the code examples become too large, they are likely to get deleted. --[[User:McSly|McSly]] ([[User talk:McSly|talk]]) 18:34, 26 March 2025 (UTC)
:Hi @[[User:MadHanSolo|MadHanSolo]], I can work towards adding in a brief section of performance optimization taking into account the advice from @[[User:McSly|McSly]] about examples. I was briefly going to cover Just-In-Time Compilation, Static Compilation, Concurrency and Parallelism, and Efficient Data Structures. [[User:Chbeast|Chbeast]] ([[User talk:Chbeast|talk]]) 20:15, 29 March 2025 (UTC)
== selim ==
import requests
# API bağlantısını yapalım (örnek bir URL ve anahtar)
API_URL = "https://api.tondemarket.com" # API URL'sini buraya ekleyin
API_KEY = "your_api_key_here"
def get_market_data():
headers = {'Authorization': f'Bearer {API_KEY}'}
response = requests.get(f'{API_URL}/market_data', headers=headers)
return response.json()
data = get_market_data()
print(data) [[Special:Contributions/88.230.160.83|88.230.160.83]] ([[User talk:88.230.160.83|talk]]) 09:51, 2 April 2025 (UTC)
|